diff --git a/Cargo.lock b/Cargo.lock
index 806ef17..4684540 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1461,7 +1461,7 @@ dependencies = [
[[package]]
name = "lemoa"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"chrono",
"html2pango",
diff --git a/Cargo.toml b/Cargo.toml
index aa4bf0a..c25571a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lemoa"
-version = "0.4.0"
+version = "0.5.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 9b309ce..e8759d3 100644
--- a/data/io.github.lemmygtk.lemoa.metainfo.xml.in
+++ b/data/io.github.lemmygtk.lemoa.metainfo.xml.in
@@ -26,6 +26,19 @@
https://github.com/lemmygtk/lemoa/issues
+
+
+
+ - feat: add infinite scroll behaviour by @Busyvar
+ - feat: implement setting dialog & make infinite scroll an option on it by @Busyvar
+ - feat: enable libadwaita by default by @Bnyro
+ - feat: dynamic image measures based on screen size by @Bnyro
+ - feat: support for reporting comments under posts by @Bnyro
+ - feat: support for reporting posts by @Bnyro
+ - feat: indicate and mark posts as read/unread by @Bnyro
+
+
+
diff --git a/flake.nix b/flake.nix
index f2c522e..60e4d05 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,7 +12,7 @@
packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa";
- version = "0.4.0";
+ version = "0.5.0";
src = ./.;
buildInputs = with pkgs; [
openssl
diff --git a/meson.build b/meson.build
index ce51162..109c58d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'lemoa',
'rust',
- version: '0.4.0',
+ version: '0.5.0',
meson_version: '>= 0.59',
license: 'GPL-3.0',
)
@@ -16,6 +16,7 @@ version = meson.project_version()
dependency('glib-2.0', version: '>= 2.70')
dependency('gio-2.0', version: '>= 2.70')
dependency('gtk4', version: '>= 4.10.0')
+dependency('libadwaita-1', version: '>= 1.2.0')
glib_compile_resources = find_program('glib-compile-resources', required: true)
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
diff --git a/src/config.rs b/src/config.rs
index 683f6c0..e900542 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -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.3.0";
+pub const PKGDATADIR: &str = "/usr/share/lemoa";
+pub const VERSION: &str = "0.5.0";