Prepare for v0.2.0
This commit is contained in:
parent
1e4ccacfe8
commit
02a296dcdf
|
@ -1299,7 +1299,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemoa"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"html2pango",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lemoa"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -26,6 +26,18 @@
|
|||
<url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url>
|
||||
<content_rating type="oars-1.0" />
|
||||
<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">
|
||||
<description>
|
||||
<ul>
|
||||
|
|
59
flake.lock
59
flake.lock
|
@ -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
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
packages = rec {
|
||||
lemoa = pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "lemoa";
|
||||
version = "0.1.0";
|
||||
version = "0.2.0";
|
||||
src = ./.;
|
||||
buildInputs = with pkgs; [
|
||||
openssl
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
project(
|
||||
'lemoa',
|
||||
'rust',
|
||||
version: '0.1.0',
|
||||
version: '0.2.0',
|
||||
meson_version: '>= 0.59',
|
||||
license: 'GPL-3.0',
|
||||
)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pub const NAME: &str = "lemoa";
|
||||
pub const APP_ID: &str = "io.github.lemmygtk.lemoa";
|
||||
pub const PKGDATADIR: &str = "/usr/local/share/lemoa";
|
||||
pub const VERSION: &str = "0.1.0";
|
||||
pub const VERSION: &str = "0.2.0";
|
||||
|
|
Loading…
Reference in New Issue