custom filter renames for better grouping v1.7.1

This commit is contained in:
2026-07-09 07:54:12 -03:00
parent 4ebebd5ffb
commit 89888235d1
3 changed files with 12 additions and 10 deletions

View File

@@ -33,19 +33,21 @@ class OrganonProjectHelper extends Base
// plugin (fixed, non-translated strings so dedup is stable across locales); a user's own filter
// with a reserved name is absorbed into the canonical form. "Show all tasks" is a REPLACE filter
// (append 0) so it clears; the rest are APPEND (1) so clicks stack (distinct attributes AND).
// Names are prefixed by group so the dropdown -- which core sorts alphabetically by name
// (CustomFilterModel::getAll -> asc(name)) -- clusters them: Board < Month < Recurring.
const GROUP_SHOW_ALL = array(
array('Show all tasks', '', 0),
array('Board: show all tasks', '', 0),
);
const GROUP_MONTH = array(
array('Due this month', 'duemonth:this', 1),
array('Around this month', 'aroundmonth:this', 1),
array('Month: due this month', 'duemonth:this', 1),
array('Month: around this month', 'aroundmonth:this', 1),
);
const GROUP_RECURRING = array(
array('All recurring', 'recurring:anyall', 1),
array('Event recurring', 'recurring:evtall', 1),
array('Calendar recurring', 'recurring:calall', 1),
array('Recurring templates', 'recurring:anyori', 1),
array('Recurring duplicates', 'recurring:anydup', 1),
array('Recurring: all', 'recurring:anyall', 1),
array('Recurring: event', 'recurring:evtall', 1),
array('Recurring: calendar', 'recurring:calall', 1),
array('Recurring: templates', 'recurring:anyori', 1),
array('Recurring: duplicates', 'recurring:anydup', 1),
);
/**

View File

@@ -109,7 +109,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '1.7.0';
return '1.7.1';
}
public function getPluginHomepage()

View File

@@ -1 +1 @@
OrganonTweaks v1.7
OrganonTweaks v1.7.1