chore: prepare for v5.0
This commit is contained in:
parent
545b7bc313
commit
7f8d62cc98
|
@ -1461,7 +1461,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemoa"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"html2pango",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lemoa"
|
||||
version = "0.4.0"
|
||||
version = "0.5.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -26,6 +26,19 @@
|
|||
<url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url>
|
||||
<content_rating type="oars-1.0" />
|
||||
<releases>
|
||||
<release version="0.5.0" date="2023-12-14">
|
||||
<description>
|
||||
<ul>
|
||||
<li>feat: add infinite scroll behaviour by @Busyvar</li>
|
||||
<li>feat: implement setting dialog & make infinite scroll an option on it by @Busyvar</li>
|
||||
<li>feat: enable libadwaita by default by @Bnyro</li>
|
||||
<li>feat: dynamic image measures based on screen size by @Bnyro</li>
|
||||
<li>feat: support for reporting comments under posts by @Bnyro</li>
|
||||
<li>feat: support for reporting posts by @Bnyro</li>
|
||||
<li>feat: indicate and mark posts as read/unread by @Bnyro</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="0.4.0" date="2023-08-25">
|
||||
<description>
|
||||
<ul>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue