Prepare for v0.2.0

This commit is contained in:
Bnyro 2023-06-30 17:13:08 +02:00
parent 1e4ccacfe8
commit 02a296dcdf
7 changed files with 17 additions and 64 deletions

2
Cargo.lock generated
View File

@ -1299,7 +1299,7 @@ dependencies = [
[[package]] [[package]]
name = "lemoa" name = "lemoa"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"html2pango", "html2pango",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lemoa" name = "lemoa"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -26,6 +26,18 @@
<url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url> <url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url>
<content_rating type="oars-1.0" /> <content_rating type="oars-1.0" />
<releases> <releases>
<release version="0.2.0" date="2023-06-30">
<description>
<ul>
<li>Support for writing private messages</li>
<li>Inbox: support for private messages</li>
<li>Display the publish date for posts, comments and replies</li>
<li>Validate instance urls for more user convenience</li>
<li>List federated instances in instance selector</li>
<li>Remove 'View' buttons in favor of clicking the title</li>
</ul>
</description>
</release>
<release version="0.1.0" date="2023-06-26"> <release version="0.1.0" date="2023-06-26">
<description> <description>
<ul> <ul>

View File

@ -1,59 +0,0 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1687709756,
"narHash": "sha256-Y5wKlQSkgEK2weWdOu4J3riRd+kV/VCgHsqLNTTWQ/0=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "dbabf0ca0c0c4bce6ea5eaf65af5cb694d2082c7",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1687701825,
"narHash": "sha256-aMC9hqsf+4tJL7aJWSdEUurW2TsjxtDcJBwM9Y4FIYM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "07059ee2fa34f1598758839b9af87eae7f7ae6ea",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

View File

@ -12,7 +12,7 @@
packages = rec { packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage { lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa"; pname = "lemoa";
version = "0.1.0"; version = "0.2.0";
src = ./.; src = ./.;
buildInputs = with pkgs; [ buildInputs = with pkgs; [
openssl openssl

View File

@ -1,7 +1,7 @@
project( project(
'lemoa', 'lemoa',
'rust', 'rust',
version: '0.1.0', version: '0.2.0',
meson_version: '>= 0.59', meson_version: '>= 0.59',
license: 'GPL-3.0', license: 'GPL-3.0',
) )

View File

@ -1,4 +1,4 @@
pub const NAME: &str = "lemoa"; pub const NAME: &str = "lemoa";
pub const APP_ID: &str = "io.github.lemmygtk.lemoa"; pub const APP_ID: &str = "io.github.lemmygtk.lemoa";
pub const PKGDATADIR: &str = "/usr/local/share/lemoa"; pub const PKGDATADIR: &str = "/usr/local/share/lemoa";
pub const VERSION: &str = "0.1.0"; pub const VERSION: &str = "0.2.0";