FinanceBuddy: per-column net total in the header (v0.4)

This commit is contained in:
2026-07-07 17:05:03 -03:00
parent 6c23c4aeb2
commit 6328f3632f
4 changed files with 76 additions and 4 deletions

View File

@@ -33,6 +33,9 @@ class Plugin extends Base
// "private" is the normal board, "public" is the read-only board shared by token.
$this->template->hook->attach('template:board:private:task:after-title', 'financeBuddy:board/task_money');
$this->template->hook->attach('template:board:public:task:after-title', 'financeBuddy:board/task_money');
// Per-column net total (credits - debits) in the column header.
$this->template->hook->attach('template:board:column:header', 'financeBuddy:board/column_total');
}
public function getHelpers()
@@ -59,7 +62,7 @@ class Plugin extends Base
public function getPluginVersion()
{
return '0.3.1';
return '0.4.0';
}
public function getPluginHomepage()