Go For It!

时尚的待办事项列表,内置生产力计时器。(A stylish to-do list with built-in productivity timer.)

  • Owner: Manuel-Kehl/Go-For-It
  • Platform: Linux, Mac, Windows
  • License:: GNU General Public License v3.0
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Go For It!是一个简单而时尚的生产力应用程序,具有待办事项列表,与计时器合并,让你的注意力集中在当前的任务上。

应用程序的工作流程在以下视频中描述:


存储和同步

待办事项列表以Todo.txt格式存储。 这简化了与移动设备的同步,并且可以使用其他前端编辑任务,例如我的Todo.txt Kupfer插件

如果您已经使用过Todo.txt,请小心事实,Go For It! 自动将完成的任务归档到完成列表!

Overview

Name With OwnerManuel-Kehl/Go-For-It
Primary LanguageVala
Program languageCMake (Language Count: 3)
PlatformLinux, Mac, Windows
License:GNU General Public License v3.0
Release Count31
Last Release Name1.9.2 (Posted on )
First Release Namerelease_v1.0 (Posted on 2014-12-26 17:48:00)
Created At2014-12-16 12:49:10
Pushed At2021-11-07 15:28:31
Last Commit At2021-10-07 15:52:31
Stargazers Count516
Watchers Count26
Fork Count51
Commits Count1.4k
Has Issues Enabled
Issues Count117
Issue Open Count20
Pull Requests Count29
Pull Requests Open Count1
Pull Requests Close Count4
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

Go For It!

Translation status

Information for End Users

Go For It! is a simple and stylish productivity app, featuring a to-do list, merged with a timer that keeps your focus on the current task. More information for end users can be found here.

Screenshot

How To

The following video explains the workflow of Go For It!:

Go For It! Promotion Video

Storage and Synchronisation

To-do lists are stored in the Todo.txt format. This simplifies synchronization with mobile devices and makes it possible to edit tasks using other Todo.txt front-ends (e.g. the official apps for Android or iOS or the alternative Android client Simpletask).
A comprehensive tutorial about setting up Go For It! with Simpletask can be found here.

If you already use Todo.txt, beware of the fact, that Go For It! automatically archives completed tasks to the done list!

Download and Installation

GNU/Linux Packages

elementary OS

Get it on AppCenter

Ubuntu

I maintain a Launchpad PPA which can be used to acquire .deb packages. On Ubuntu (+ derivates) it is recommended to add the PPA for automatic updates:

sudo add-apt-repository ppa:go-for-it-team/go-for-it-stable && sudo apt-get update
sudo apt-get install go-for-it

For git versions use https://code.launchpad.net/~go-for-it-team/+archive/ubuntu/go-for-it-daily instead.

Arch Linux

Build it with makepkg or use your favorite aur helper.

Flatpak

Flatpak packages support multiple distributions and are sandboxed.

Stable releases are hosted on Flathub:

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub de.manuel_kehl.go-for-it

Windows

Unfortunately, a recent Windows version isn't available. The https://github.com/mank319/Go-For-It/commits/windows-cmake branch may be a good starting point for porting the current version of Go For It! to Windows.

Others

It should be fairly straightforward to compile Go For It! on Unix-like platforms as long as Gtk+3, libnotify and cmake are available.
Should you run into any difficulties feel free to add an issue.

Information For Nerds

Go For It! is free and open source software licensed under the GPLv3. It has been written in Vala making heavy use of the GTK framework.

The user interface is inspired by the design philosophy of elementary OS and Gnome applications, striving for elegant simplicity.

Roadmap

  • "to-do list only" mode
  • Plugin support

Potential Future Features

  • time tracking functionality
    • option to make the timer count up
    • visualization and export of time tracking data
  • mechanics for handling more complex projects
  • support for different synchronization and storage backends

How To Build

To build Go For It! you need to have the following software installed:

valac >= 0.26
cmake >= 2.8.9
intltool
gtk+-3.0 (>= 3.14)
glib-2.0
libnotify

Use the following commands in this order to build Go For It!:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
sudo make install

Use the following commands to update the translation files:

mkdir build
cd build
make pot
make po

Information for maintainers

CONFIGURING.md contains some information about the configuration flags specific to Go For it!.

To the top