From 2f1f7183c285b576b984a844fb298536ab50b63c Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 25 Aug 2023 13:04:51 +0200 Subject: [PATCH] chore: prepare for v4.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- data/io.github.lemmygtk.lemoa.metainfo.xml.in | 23 ++++++++++++++++++- flake.nix | 2 +- meson.build | 2 +- 5 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7d248f7..f57a58a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1469,7 +1469,7 @@ dependencies = [ [[package]] name = "lemoa" -version = "0.3.0" +version = "0.4.0" dependencies = [ "chrono", "html2pango", diff --git a/Cargo.toml b/Cargo.toml index d78f802..cf47f84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lemoa" -version = "0.3.0" +version = "0.4.0" edition = "2021" [dependencies] diff --git a/data/io.github.lemmygtk.lemoa.metainfo.xml.in b/data/io.github.lemmygtk.lemoa.metainfo.xml.in index 4f8ddaf..9b309ce 100644 --- a/data/io.github.lemmygtk.lemoa.metainfo.xml.in +++ b/data/io.github.lemmygtk.lemoa.metainfo.xml.in @@ -26,7 +26,28 @@ https://github.com/lemmygtk/lemoa/issues - + + +
    +
  • Show preview of post thumbnail by @Bnyro
  • +
  • feat(posts): option to set the sort order by @Bnyro
  • +
  • feat(community): option to set the sort order of posts by @Bnyro
  • +
  • chore: update dependencies to latest versions by @Bnyro
  • +
  • feat: support for (un)blocking communities by @Bnyro
  • +
  • feat: support for blocking other users by @Bnyro
  • +
  • feat: add a site info dialog by @Bnyro
  • +
  • refactor: simplify the creation of menu actions by @Bnyro
  • +
  • feat: add important site info to its dialog by @Bnyro
  • +
  • feat(profile): show when the user has joined lemmy by @Bnyro
  • +
  • fix(community page): simplify sub, posts and comment count by @Bnyro
  • +
  • feat: search on enter in instance list () by @thebigG
  • +
  • feat: search community on enter by @Bnyro
  • +
  • Minor UI improvements at the instances page by @Bnyro
  • +
  • readme: add installation instructions for void linux by @Bnyro
  • +
+
+
+
  • Support for replying to comments
  • diff --git a/flake.nix b/flake.nix index 68e1614..f2c522e 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ packages = rec { lemoa = pkgs.rustPlatform.buildRustPackage { pname = "lemoa"; - version = "0.3.0"; + version = "0.4.0"; src = ./.; buildInputs = with pkgs; [ openssl diff --git a/meson.build b/meson.build index 5c323b4..ce51162 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'lemoa', 'rust', - version: '0.3.0', + version: '0.4.0', meson_version: '>= 0.59', license: 'GPL-3.0', )