From d1178bc4639c9a07eb78ebee935a12e4227da78a Mon Sep 17 00:00:00 2001 From: Ruben Carlo Benante Date: Wed, 8 Jul 2026 09:13:07 -0300 Subject: [PATCH] fix stuck enhance-recurrence toggle + clarify label (v1.4.1) --- Controller/ConfigController.php | 2 ++ Plugin.php | 2 +- Template/config/show.php | 2 +- VERSION | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Controller/ConfigController.php b/Controller/ConfigController.php index a07811d..58c77f5 100644 --- a/Controller/ConfigController.php +++ b/Controller/ConfigController.php @@ -31,12 +31,14 @@ class ConfigController extends BaseController $alwaysCommentIcon = isset($values['organon_tweaks_always_comment_icon']) ? 1 : 0; $keepScroll = isset($values['organon_tweaks_keep_scroll']) ? 1 : 0; $quickClickOnly = isset($values['organon_tweaks_quick_click_only']) ? 1 : 0; + $enhanceRecurrence = isset($values['organon_tweaks_enhance_recurrence']) ? 1 : 0; $emphasizeDueDateDefault = isset($values['organon_tweaks_emphasize_duedate_default']) ? 1 : 0; if ($this->configModel->save(array( 'organon_tweaks_always_comment_icon' => $alwaysCommentIcon, 'organon_tweaks_keep_scroll' => $keepScroll, 'organon_tweaks_quick_click_only' => $quickClickOnly, + 'organon_tweaks_enhance_recurrence' => $enhanceRecurrence, 'organon_tweaks_emphasize_duedate_default' => $emphasizeDueDateDefault, ))) { $this->flash->success(t('Settings saved successfully.')); diff --git a/Plugin.php b/Plugin.php index 2bfbe29..0807b65 100644 --- a/Plugin.php +++ b/Plugin.php @@ -83,7 +83,7 @@ class Plugin extends Base public function getPluginVersion() { - return '1.4.0'; + return '1.4.1'; } public function getPluginHomepage() diff --git a/Template/config/show.php b/Template/config/show.php index 6d8f1d6..70f011f 100644 --- a/Template/config/show.php +++ b/Template/config/show.php @@ -27,7 +27,7 @@
- form->checkbox('organon_tweaks_enhance_recurrence', t('Enhance the recurrence dialog'), 1, isset($values['organon_tweaks_enhance_recurrence']) && $values['organon_tweaks_enhance_recurrence'] == 1) ?> + form->checkbox('organon_tweaks_enhance_recurrence', t('Enhance the native recurrence dialog'), 1, isset($values['organon_tweaks_enhance_recurrence']) && $values['organon_tweaks_enhance_recurrence'] == 1) ?>

diff --git a/VERSION b/VERSION index 36d103a..cd4ed7f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -OrganonTweaks v1.4 +OrganonTweaks v1.4.1