Prepare for v0.3.0
This commit is contained in:
parent
b7f8125707
commit
beb56f8fb0
|
@ -1455,7 +1455,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemoa"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"html2pango",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lemoa"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -26,6 +26,24 @@
|
|||
<url type="bugtracker">https://github.com/lemmygtk/lemoa/issues</url>
|
||||
<content_rating type="oars-1.0" />
|
||||
<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">
|
||||
<description>
|
||||
<ul>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
packages = rec {
|
||||
lemoa = pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "lemoa";
|
||||
version = "0.2.0";
|
||||
version = "0.3.0";
|
||||
src = ./.;
|
||||
buildInputs = with pkgs; [
|
||||
openssl
|
||||
|
@ -27,9 +27,6 @@
|
|||
];
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"lemmy_api_common-0.18.0" = "sha256-l4UNO5Obx73nOiVnl6dc+sw2tekDLn2ixTs1GwqdE8I=";
|
||||
};
|
||||
};
|
||||
meta = with pkgs.lib; {
|
||||
description = "Native Gtk client for Lemmy";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
project(
|
||||
'lemoa',
|
||||
'rust',
|
||||
version: '0.2.0',
|
||||
version: '0.3.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.2.0";
|
||||
pub const VERSION: &str = "0.3.0";
|
||||
|
|
Loading…
Reference in New Issue