gtg icon indicating copy to clipboard operation
gtg copied to clipboard

Getting Things GNOME! trunk

Results 230 gtg issues
Sort by recently updated
recently updated
newest added

I started to look at #1077 and I thought it would be nice to be able to unit test this type of thing. A simple unit test for TaskView would...

maintainability

The website is at https://wiki.gnome.org/Apps/GTG, which now has a banner that the site is planned for retirement: ![image](https://github.com/getting-things-gnome/gtg/assets/4351932/a8f24d89-0ce1-4b7c-bd3d-c0bb60a0cd2e) The [migration guide](https://hedgedoc.gnome.org/wiki-migration-guide#) recommends migrating to https://apps.gnome.org

documentation

Save sort configurations and reload on startup Also remove a duplicated method closes #1020 closes #353

enhancement

When selecting a start date or due date from the date picker, I can't pick a date that has the same day number as today. For example, today is 2024-03-26....

bug
reproducible-in-git

From the Actionable view, create the following task ``` parent - child1 ``` The first problem is that child1 doesn't appear in the Actionable view. Let's go to Open and...

bug
reproducible-in-git
regression

Create a task with the following content: ``` parent @mytag - child ``` `child` become clickable. Click on it. The child task contains ``` child ``` In 0.6, it contains...

bug
reproducible-in-git
regression

I have a task with no due date, but its parent has one. The due date of the parent is used when sorting by due date (makes sense), but is...

bug
reproducible-in-git
regression

Today is 2024-03-26. I have two tasks due 2024-03-25, but they are marked as due today: ![image](https://github.com/getting-things-gnome/gtg/assets/4351932/db239644-af0b-4c0a-9910-e65c7967970d) Note that GTG has stayed open overnight. I only managed to fix it...

bug
reproducible-in-git

Steps: * Create task with the following text: ``` Parent - child ``` * close the task * double-click on the task * the text is now: ``` Parent -...

bug
reproducible-in-git
regression

There are multiple regular expressions in the source code related to tags. Unfortunately, they have a different idea about valid tag names: 1. [GTG/core/tasks.py](https://github.com/getting-things-gnome/gtg/blob/784fa838f4c4e3eb10ad75b01d38a245e4659840/GTG/core/tasks.py#L46): `TAG_REGEX = re.compile(r'^\B\@\w+(\-\w+)*\,*')` 2. [GTG/gtk/editor/taskview.py](https://github.com/getting-things-gnome/gtg/blob/784fa838f4c4e3eb10ad75b01d38a245e4659840/GTG/gtk/editor/taskview.py#L46): `TAG_REGEX...