Skip to content

Commit

Permalink
Release 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JMoerman committed Jun 27, 2020
1 parent 52d8ac6 commit 4648c3c
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,37 @@
# Change Log

## [1.8.0](https://github.com/JMoerman/Go-For-It/tree/1.8.0) (2020-06-27)
[Full Changelog](https://github.com/JMoerman/Go-For-It/compare/1.7.2...1.8.0)

**Implemented enhancements:**

- Introduces configurable shortcuts.
- A custom drag handle icon is now used instead of the "view-list" icon.
- Introduces an option to log the time spent working on a task (using the timer) to the todo.txt files.
- _Go For It!_ now highlights the task you are currently working on with ⏰.
- Changing the system clock or suspending your system will no longer affect the timer.
- It is now possible to tell _Go For It!_ how long a task should take by adding `duration:Xh-Ym` to the description of a task. (Where X and Y are the number of hours and minutes respectively. For a five minute task one would need to add `duration:5m`.) _Go For It!_ will notify you when you exceed this duration. (Do not forget to enable timer logging so _Go For It!_ will know how much time you have spent working on a task after closing the application!)
- Not every break (or time between breaks) has to be of the same length: You can now use _Go For It!_ as a pomodoro timer or use a custom timer schedule.
- Added an option to add new tasks at the start of each list instead of appending them to the end.
- Added `--list` and `--load <id>` arguments to show the configured lists and load a specified list respectively.
- Experimental: It is now possible to log your activities to a csv file by starting _Go For It!_ with `--logfile <filename>`.
- Many translations were updated.

## [1.7.3](https://github.com/JMoerman/Go-For-It/tree/1.7.3) (2019-08-26)
[Full Changelog](https://github.com/JMoerman/Go-For-It/compare/1.7.2...1.7.3)

This release contains some fixes and translation updates from the development branch.

**Fixed bugs:**

- Work around a ListBox bug which could cause situations where no row is selected even though suitable rows exist.
- Keep the row focussed when the user stops editing a row.

**Implemented enhancements:**

- Escape now cancels the editing of a task.
- The following translations were updated: Turkish, German, Norwegian Bokmål, Japanese, Polish, Telugu.

## [1.7.2](https://github.com/JMoerman/Go-For-It/tree/1.7.2) (2019-04-25)
[Full Changelog](https://github.com/JMoerman/Go-For-It/compare/1.7.1...1.7.2)

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -19,7 +19,7 @@ set (FILE_CONF ${PROJECT_NAME}.conf)
set (EXEC_NAME ${APP_SYSTEM_NAME})
set (APP_NAME "Go For It!")
set (RELEASE_NAME "A stylish to-do list with built-in productivity timer")
set (VERSION "1.7.99")
set (VERSION "1.8.0")
set (VERSION_INFO "Release")
set (ICON_NAME ${APP_SYSTEM_NAME})
set (GETTEXT_PACKAGE ${APP_SYSTEM_NAME})
Expand Down
34 changes: 33 additions & 1 deletion data/go-for-it.appdata.xml.in.in
Expand Up @@ -35,6 +35,38 @@ If you already use Todo.txt, beware of the fact, that Go For It! automatically a
<value key="x-appcenter-color-primary-text">rgb(255, 255, 255)</value>
</custom>
<releases>
<release version="1.8.0" date="2020-06-27">
<description>
<p>Improvements:</p>
<ul>
<li>Introduces configurable shortcuts.</li>
<li>Introduces an option to log the time spent working on a task (using the timer) to the todo.txt files.</li>
<li>A custom drag handle icon is now used instead of the "view-list" icon.</li>
<li>Go For It! now highlights the task you are currently working on with ⏰.</li>
<li>Changing the system clock or suspending your system will no longer affect the timer.</li>
<li>It is now possible to tell Go For It! how long a task should take by adding `duration:Xh-Ym` to the description of a task. (Where X and Y are the number of hours and minutes respectively. For a five minute task one would need to add `duration:5m`.) Go For It! will notify you when you exceed this duration. (Do not forget to enable timer logging so Go For It! will know how much time you have spent working on a task after closing the application!)</li>
<li>Not every break (or time between breaks) has to be of the same length: You can now use Go For It! as a pomodoro timer or use a custom timer schedule.</li>
<li>Added an option to add new tasks at the start of each list instead of appending them to the end.</li>
<li>Added "--list" and "--load &lt;id&gt;" arguments to show the configured lists and load a specified list respectively.</li>
<li>Experimental: It is now possible to log your activities to a csv file by starting Go For It! with "--logfile &lt;filename&gt;".</li>
<li>Many translations were updated.</li>
</ul>
</description>
</release>
<release version="1.7.3" date="2019-08-26">
<description>
<p>Improvements:</p>
<ul>
<li>Escape now cancels the editing of a task.</li>
<li>The following translations were updated: Turkish, German, Norwegian Bokmål, Japanese, Polish, Telugu.</li>
</ul>
<p>Bugfixes:</p>
<ul>
<li>Work around a ListBox bug which could cause situations where no row is selected even though suitable rows exist.</li>
<li>Keep the row focussed when the user stops editing a row.</li>
</ul>
</description>
</release>
<release version="1.7.2" date="2019-04-25">
<description>
<p>Improvements:</p>
Expand Down Expand Up @@ -65,7 +97,7 @@ If you already use Todo.txt, beware of the fact, that Go For It! automatically a
</ul>
<p>Bugfixes:</p>
<ul>
<li><i>Go For It!</i> now properly exports that it uses notifications.</li>
<li>Go For It! now properly exports that it uses notifications.</li>
<li>Non ascii character were not properly parsed when parsing contexts and projects.</li>
</ul>
</description>
Expand Down

0 comments on commit 4648c3c

Please sign in to comment.