Prepare for v0.3.0

This commit is contained in:
Bnyro 2023-07-13 17:07:16 +02:00
parent b7f8125707
commit beb56f8fb0
6 changed files with 23 additions and 8 deletions

2
Cargo.lock generated
View File

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

View File

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

View File

@ -26,6 +26,24 @@
<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.3.0" date="2023-07-13">
<description>
<ul>
<li>Support for replying to comments</li>
<li>New, more polished app icon</li>
<li>Support for viewing comments by a user</li>
<li>Support for viewing the next pages of a profile</li>
<li>Show communities moderated by a person</li>
<li>Initial support for multiple account profiles</li>
<li>Support for comment nesting with a tree structure</li>
<li>Possibility to search instances in public tab (#16)</li>
<li>Support for bookmarking posts</li>
<li>Support for saving/bookmarking comments</li>
<li>Support for viewing saved posts and comments</li>
<li>Add user agent for http requests</li>
</ul>
</description>
</release>
<release version="0.2.0" date="2023-06-30"> <release version="0.2.0" date="2023-06-30">
<description> <description>
<ul> <ul>

View File

@ -12,7 +12,7 @@
packages = rec { packages = rec {
lemoa = pkgs.rustPlatform.buildRustPackage { lemoa = pkgs.rustPlatform.buildRustPackage {
pname = "lemoa"; pname = "lemoa";
version = "0.2.0"; version = "0.3.0";
src = ./.; src = ./.;
buildInputs = with pkgs; [ buildInputs = with pkgs; [
openssl openssl
@ -27,9 +27,6 @@
]; ];
cargoLock = { cargoLock = {
lockFile = ./Cargo.lock; lockFile = ./Cargo.lock;
outputHashes = {
"lemmy_api_common-0.18.0" = "sha256-l4UNO5Obx73nOiVnl6dc+sw2tekDLn2ixTs1GwqdE8I=";
};
}; };
meta = with pkgs.lib; { meta = with pkgs.lib; {
description = "Native Gtk client for Lemmy"; description = "Native Gtk client for Lemmy";

View File

@ -1,7 +1,7 @@
project( project(
'lemoa', 'lemoa',
'rust', 'rust',
version: '0.2.0', version: '0.3.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.2.0"; pub const VERSION: &str = "0.3.0";