From c88e52ab01b94f871bcd55f9e357921adffd6d64 Mon Sep 17 00:00:00 2001 From: Ruben Carlo Benante Date: Sat, 18 Jul 2026 21:49:15 -0300 Subject: [PATCH] Position and bugfixes of the done/due checkbox --- Plugin.php | 2 +- Template/board/done_badge.php | 2 +- Template/layout/done_style.php | 36 +++++++++++++++------------------- Template/task/done_badge.php | 2 +- VERSION | 2 +- 5 files changed, 20 insertions(+), 24 deletions(-) diff --git a/Plugin.php b/Plugin.php index 6c2b9a9..1efbc9d 100644 --- a/Plugin.php +++ b/Plugin.php @@ -172,7 +172,7 @@ class Plugin extends Base public function getPluginVersion() { - return '2.0.0'; + return '2.0.1'; } public function getPluginHomepage() diff --git a/Template/board/done_badge.php b/Template/board/done_badge.php index 17fed4e..652015c 100644 --- a/Template/board/done_badge.php +++ b/Template/board/done_badge.php @@ -12,7 +12,7 @@ $done = $this->OrganonDoneHelper->isDone($task); ?> url->link( - $done ? ' '.t('Done') : ' '.t('Due'), + $done ? ' '.t('Done') : ' '.t('Due'), 'DoneController', 'toggle', array('plugin' => 'OrganonTweaks', 'task_id' => $task['id'], 'project_id' => $task['project_id'], 'from' => 'board'), diff --git a/Template/layout/done_style.php b/Template/layout/done_style.php index e4dc62a..294e1d3 100644 --- a/Template/layout/done_style.php +++ b/Template/layout/done_style.php @@ -1,33 +1,29 @@ diff --git a/Template/task/done_badge.php b/Template/task/done_badge.php index 150d9ef..4c5a8a6 100644 --- a/Template/task/done_badge.php +++ b/Template/task/done_badge.php @@ -12,7 +12,7 @@ $done = $this->OrganonDoneHelper->isDone($task);
  • url->link( - $done ? ' '.t('Done') : ' '.t('Due'), + $done ? ' '.t('Done') : ' '.t('Due'), 'DoneController', 'toggle', array('plugin' => 'OrganonTweaks', 'task_id' => $task['id'], 'project_id' => $task['project_id'], 'from' => 'task'), diff --git a/VERSION b/VERSION index 0d4322f..bfaccca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -OrganonTweaks v2.0.0 +OrganonTweaks v2.0.1