3 Commits

Author SHA1 Message Date
Arne Weiss a9d8966e22 Bump version to 0.1.3
Build / build (push) Successful in 12s
Release / release (push) Successful in 11s
2026-06-01 08:32:02 +02:00
Arne Weiss b742a833d1 Fix admin controller l() error and redundant CI runs
Add l() wrapper to AdminSimpleWithdrawalController so PS8 routing does
not throw UndefinedMethodError; restrict build workflow to branch pushes
only so tag pushes no longer trigger a redundant build run.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-01 08:26:10 +02:00
Arne Weiss 8ed50fa8e6 Bump version to 0.1.2
Build / build (push) Successful in 12s
Release / release (push) Successful in 12s
2026-06-01 08:24:40 +02:00
3 changed files with 12 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@ name: Build
on:
push:
branches:
- '**'
pull_request:
jobs:
@@ -60,6 +60,15 @@ class AdminSimpleWithdrawalController extends ModuleAdminController
];
}
protected function l($string, $class = null, $addslashes = false, $htmlentities = true)
{
if ($this->module) {
return $this->module->l($string, 'AdminSimpleWithdrawalController');
}
return $string;
}
public function renderScopeLabel($value, $row)
{
if ($value === 'partial') {
+1 -1
View File
@@ -27,7 +27,7 @@ class Simple_withdrawalbutton extends Module
{
$this->name = 'simple_withdrawalbutton';
$this->tab = 'administration';
$this->version = '0.1.1';
$this->version = '0.1.3';
$this->author = 'Arne Weiss';
$this->need_instance = 0;
$this->bootstrap = true;