Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
- Updated screenshots
  • Loading branch information
edfloreshz committed May 18, 2023
1 parent 5352c21 commit 2387f46
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "done"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["Eduardo Flores <[email protected]>"]
license = "MPL 2.0"
Expand Down
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
9 changes: 9 additions & 0 deletions data/dev.edfloreshz.Done.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ https://hughsie.github.io/oars/index.html
-->
<content_rating type="oars-1.0" />
<releases>
<release version="0.1.6" date="2023-05-17">
<description>
<p>Overall improvements</p>
<ul>
<li>Tasks pane now has a title and description.</li>
<li>Add to Today is now enabled.</li>
</ul>
</description>
</release>
<release version="0.1.5" date="2023-05-17">
<description>
<p>Simple by default</p>
Expand Down
Binary file modified data/resources/screenshots/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/dark_details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/task_details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/resources/screenshots/tasks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h2 class="dark:text-white leading tracking-tight text-gray-900 sm:text-2xl mt-4
</a>
<div class="grid place-content-center text-center">
<div class="flex flex-wrap justify-center">
<a href="https://github.com/done-devs/done/releases/download/v0.1.5/dev.edfloreshz.Done.Devel.flatpak"
<a href="https://github.com/done-devs/done/releases/download/v0.1.6/dev.edfloreshz.Done.Devel.flatpak"
class="warning dark:text-black text-xl font-bold mt-6 p-3 m-2 rounded-md">Install Development Version</a>
</div>
<div class="flex flex-wrap justify-center mt-6">
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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'],
Expand Down
8 changes: 4 additions & 4 deletions src/application/info.rs
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit 2387f46

Please sign in to comment.