Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ Queue lets you:

- Group tasks into custom, color-coded lists
- Mark tasks as completed or important, and reorder them by dragging
- Add an optional description to any task
- Write rich task descriptions with headings, text styles, colors and lists
- See the date when each task was completed
- Filter by status and search within a group

It is also built to keep your data yours:

- Back up and restore everything as a single JSON file
- Fully translated into English, Spanish, French, German, Italian, Portuguese,
Simplified Chinese, and Japanese, with light and dark styles
Simplified Chinese, Japanese, Polish, Russian, Korean, Norwegian, Swedish,
Hindi, and Greek, with light and dark styles

## Made for GNOME

Expand Down
Binary file modified data/icons/hicolor/128x128/apps/io.github.dprietob.queue.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/icons/hicolor/256x256/apps/io.github.dprietob.queue.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/icons/hicolor/512x512/apps/io.github.dprietob.queue.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/icons/hicolor/64x64/apps/io.github.dprietob.queue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 20 additions & 5 deletions data/io.github.dprietob.queue.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@
</p>
<p translatable="yes">Features:</p>
<ul>
<li translatable="yes">Organize tasks into custom, color-coded groups</li>
<li translatable="yes">Mark tasks as completed or important</li>
<li translatable="yes">Add optional descriptions and reorder by dragging</li>
<li translatable="yes">Export and restore all your data as JSON</li>
<li translatable="yes">Light and dark styles, available in several languages</li>
<li translatable="yes">Organize tasks into custom, color-coded groups.</li>
<li translatable="yes">Mark tasks as completed or important.</li>
<li translatable="yes">Write rich task descriptions with headings, text styles, colors and lists.</li>
<li translatable="yes">See the date when each task was completed.</li>
<li translatable="yes">Reorder groups and tasks with drag and drop.</li>
<li translatable="yes">Export and restore all your data as JSON.</li>
<li translatable="yes">Light and dark styles, available in several languages.</li>
</ul>
</description>

Expand Down Expand Up @@ -57,6 +59,19 @@
</branding>

<releases>
<release version="1.1.0" date="2026-06-29" type="stable">
<description>
<p translatable="yes">This release brings rich text descriptions and several refinements:</p>
<ul>
<li translatable="yes">Format task descriptions with headings, bold, italic, underline, strikethrough, text color and lists.</li>
<li translatable="yes">See the completion date of finished tasks.</li>
<li translatable="yes">Edit and delete tasks and groups from a per-item menu.</li>
<li translatable="yes">The task list now uses the full width of the window.</li>
<li translatable="yes">Task descriptions can now hold much longer text.</li>
<li translatable="yes">Added Polish, Russian, Korean, Norwegian, Swedish, Hindi and Greek translations.</li>
</ul>
</description>
</release>
<release version="1.0.0" date="2026-04-12" type="stable">
<description>
<p translatable="yes">Initial release.</p>
Expand Down
1 change: 1 addition & 0 deletions data/resources.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<file alias="group-row.ui" preprocess="xml-stripblanks">src/modules/Groups/ui/group-row.ui</file>
<file alias="task-list-panel.ui" preprocess="xml-stripblanks">src/modules/Tasks/ui/task-list-panel.ui</file>
<file alias="task-row.ui" preprocess="xml-stripblanks">src/modules/Tasks/ui/task-row.ui</file>
<file alias="description-editor.ui" preprocess="xml-stripblanks">src/modules/Tasks/ui/description-editor.ui</file>
</gresource>
<gresource prefix="/io/github/dprietob/queue/icons/scalable/apps">
<file alias="io.github.dprietob.queue.svg" preprocess="xml-stripblanks">data/icons/hicolor/scalable/apps/io.github.dprietob.queue.svg</file>
Expand Down
5 changes: 4 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'queue',
['vala', 'c'],
version: '1.0.0',
version: '1.1.0',
meson_version: '>= 0.62.0',
default_options: ['warning_level=2'],
)
Expand Down Expand Up @@ -32,6 +32,7 @@ queue_sources = files(
'src/database/Database.vala',
'src/database/migrations/001_create_groups_table.vala',
'src/database/migrations/002_create_tasks_table.vala',
'src/database/migrations/003_add_completed_at_to_tasks.vala',
'src/modules/Groups/models/Group.vala',
'src/modules/Groups/validators/GroupStoreValidator.vala',
'src/modules/Groups/actions/ListGroupsAction.vala',
Expand All @@ -51,6 +52,8 @@ queue_sources = files(
'src/modules/Tasks/actions/DeleteTaskAction.vala',
'src/modules/Tasks/actions/ReorderTasksAction.vala',
'src/modules/Tasks/controllers/TaskListController.vala',
'src/modules/Tasks/ui/TaskDescriptionMarkup.vala',
'src/modules/Tasks/ui/DescriptionEditor.vala',
'src/modules/Tasks/ui/TaskRow.vala',
'src/modules/Tasks/ui/TaskListPanel.vala',
'src/modules/Backup/services/BackupSerializer.vala',
Expand Down
7 changes: 7 additions & 0 deletions po/LINGUAS
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
de
el
es
fr
hi
it
ja
ko
nb
pl
pt
ru
sv
zh_CN
1 change: 1 addition & 0 deletions po/POTFILES
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ src/modules/Tasks/ui/TaskListPanel.vala
src/modules/Tasks/ui/task-list-panel.ui
src/modules/Backup/services/BackupSerializer.vala
src/modules/Tasks/ui/task-row.ui
src/modules/Tasks/ui/description-editor.ui
data/io.github.dprietob.queue.desktop.in
data/io.github.dprietob.queue.metainfo.xml.in
Loading
Loading