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

Commit

Permalink
v0.1.7
Browse files Browse the repository at this point in the history
- Tasks can now set reminders by date, time and recurrence.
- Tasks pane now extends to the bottom and aligns with the task entry.
- New smart list to store completed tasks.
- Tasks now disappear when completed and are moved to Completed.
  • Loading branch information
edfloreshz committed May 22, 2023
1 parent e52cc10 commit aa00c7f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [0.1.7] - 2023-05-17
- Tasks can now set reminders by date, time and recurrence.
- Tasks pane now extends to the bottom and aligns with the task entry.
- New smart list to store completed tasks.
- Tasks now disappear when completed and are moved to Completed.

## [0.1.6] - 2023-05-17
- Tasks pane now has a title and description.
- Add to Today is now enabled.
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.6"
version = "0.1.7"
edition = "2021"
authors = ["Eduardo Flores <edfloreshz@gmail.com>"]
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.6
pkgver=0.1.7
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
11 changes: 11 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,17 @@ https://hughsie.github.io/oars/index.html
-->
<content_rating type="oars-1.0" />
<releases>
<release version="0.1.7" date="2023-05-21">
<description>
<p>Reminders!</p>
<ul>
<li>Tasks can now set reminders by date, time and recurrence.</li>
<li>Tasks pane now extends to the bottom and aligns with the task entry.</li>
<li>New smart list to store completed tasks.</li>
<li>Tasks now disappear when they are completed and are moved to Completed.</li>
</ul>
</description>
</release>
<release version="0.1.6" date="2023-05-17">
<description>
<p>Overall improvements</p>
Expand Down
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.6/dev.edfloreshz.Done.Devel.flatpak"
<a href="https://github.com/done-devs/done/releases/download/v0.1.7/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.6',
version: '0.1.7',
license: ['MPL-2.0'],
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2'],
Expand Down
1 change: 1 addition & 0 deletions scripts/flatpak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

rm -rf ../_build/
cd ..
meson build
meson setup _build .
meson dist -C _build/
cd _build/meson-dist/ || exit
Expand Down
2 changes: 1 addition & 1 deletion src/application/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ pub const PROFILE: &str = "";
#[allow(dead_code)]
pub const RESOURCES_FILE: &str =
concat!("/usr/local/share/done", "/resources.gresource");
pub const VERSION: &str = "0.1.6";
pub const VERSION: &str = "0.1.7";

0 comments on commit aa00c7f

Please sign in to comment.