diff --git a/CHANGES.md b/CHANGES.md index 9e17cc3b..9aa91b1e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.1.6] - 2023-05-17 +- Tasks pane now has a title and description. +- Add to Today is now enabled. + ## [0.1.5] - 2023-05-17 - Striped down design. - More personalization options. diff --git a/Cargo.lock b/Cargo.lock index 5e642440..f1821eb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -413,7 +413,7 @@ dependencies = [ [[package]] name = "done" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 17c6e24f..aaefa7a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "done" -version = "0.1.5" +version = "0.1.6" edition = "2021" authors = ["Eduardo Flores "] license = "MPL 2.0" diff --git a/PKGBUILD b/PKGBUILD index 4e6cd7b6..8b34aad5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ pkgname=done-git pkgrel=1 -pkgver=0.1.5 +pkgver=0.1.6 pkgdesc="Done is a simple to do app that lets you combine your existing set of task providers into one database, easily." arch=('x86_64') url="https://github.com/edfloreshz/done" diff --git a/data/dev.edfloreshz.Done.metainfo.xml.in.in b/data/dev.edfloreshz.Done.metainfo.xml.in.in index 252ba235..172e72e6 100644 --- a/data/dev.edfloreshz.Done.metainfo.xml.in.in +++ b/data/dev.edfloreshz.Done.metainfo.xml.in.in @@ -43,6 +43,15 @@ https://hughsie.github.io/oars/index.html --> + + +

Overall improvements

+
    +
  • Tasks pane now has a title and description.
  • +
  • Add to Today is now enabled.
  • +
+
+

Simple by default

diff --git a/data/resources/screenshots/about.png b/data/resources/screenshots/about.png index fb73f7c1..b27a0ed5 100644 Binary files a/data/resources/screenshots/about.png and b/data/resources/screenshots/about.png differ diff --git a/data/resources/screenshots/dark.png b/data/resources/screenshots/dark.png index 348fd4df..797d6ce2 100644 Binary files a/data/resources/screenshots/dark.png and b/data/resources/screenshots/dark.png differ diff --git a/data/resources/screenshots/dark_details.png b/data/resources/screenshots/dark_details.png index e9ae84e9..8a49ea0b 100644 Binary files a/data/resources/screenshots/dark_details.png and b/data/resources/screenshots/dark_details.png differ diff --git a/data/resources/screenshots/task_details.png b/data/resources/screenshots/task_details.png index 25178f9f..e7ea1275 100644 Binary files a/data/resources/screenshots/task_details.png and b/data/resources/screenshots/task_details.png differ diff --git a/data/resources/screenshots/tasks.png b/data/resources/screenshots/tasks.png index a3823952..8d0c5e6f 100644 Binary files a/data/resources/screenshots/tasks.png and b/data/resources/screenshots/tasks.png differ diff --git a/docs/index.html b/docs/index.html index 90f162a2..1ed7093f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -101,7 +101,7 @@

diff --git a/meson.build b/meson.build index b230fe7f..28414c08 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('done', 'rust', - version: '0.1.5', + version: '0.1.6', license: ['MPL-2.0'], meson_version: '>= 0.59.0', default_options: [ 'warning_level=2'], diff --git a/src/application/info.rs b/src/application/info.rs index 73c1a4c8..6665ddee 100644 --- a/src/application/info.rs +++ b/src/application/info.rs @@ -1,10 +1,10 @@ pub const APP_ID: &str = "dev.edfloreshz.Done"; pub const GETTEXT_PACKAGE: &str = "done"; -pub const LOCALEDIR: &str = "/app/share/locale"; +pub const LOCALEDIR: &str = "/usr/local/share/locale"; #[allow(dead_code)] -pub const PKGDATADIR: &str = "/app/share/done"; +pub const PKGDATADIR: &str = "/usr/local/share/done"; pub const PROFILE: &str = ""; #[allow(dead_code)] pub const RESOURCES_FILE: &str = - concat!("/app/share/done", "/resources.gresource"); -pub const VERSION: &str = "0.1.5"; + concat!("/usr/local/share/done", "/resources.gresource"); +pub const VERSION: &str = "0.1.6";