* Thu Oct 02 2025 Brian Read <brianr@koozali.org> 11.0.0-3.sme

- Fix typo in event template [SME: 13208]
- Correct check on debug config for showing route [SME: 13208]
This commit is contained in:
2025-10-02 09:10:31 +01:00
parent 4bce7467f6
commit b936943a8f
3 changed files with 10 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/sh #!/bin/sh
if (systemctl list-unit-files |grep smanager) then if (systemctl list-unit-files |grep smanager) then
echo "Restarting smanager" echo "Restarting smanager"
/sbin/e-smith/signal-event manager2-refresh; /sbin/e-smith/signal-event smanager-refresh;
systemctl restart smanager systemctl restart smanager
else else
echo "Smanager not loaded" echo "smanager not loaded"
fi fi

View File

@@ -3,7 +3,7 @@
% content_for 'module' => begin % content_for 'module' => begin
<div id="module" class="module vacation-panel"> <div id="module" class="module vacation-panel">
% if (config->{debug} == 0) { % if (config->{debug} == 1) {
<p> <p>
%= dumper $c->current_route %= dumper $c->current_route
</p> </p>

View File

@@ -4,7 +4,7 @@
%define name smeserver-vacation %define name smeserver-vacation
%define version 11.0.0 %define version 11.0.0
%define release 2 %define release 3
Summary: SME Server enhancement to enable vacation messages for users. Summary: SME Server enhancement to enable vacation messages for users.
Name: %{name} Name: %{name}
Version: %{version} Version: %{version}
@@ -30,6 +30,10 @@ Optionally provides a user-manager panel where users can
enable vacation for themselves and to modify their own message enable vacation for themselves and to modify their own message
%changelog %changelog
* Thu Oct 02 2025 Brian Read <brianr@koozali.org> 11.0.0-3.sme
- Fix typo in event template [SME: 13208]
- Correct check on debug config for showing route [SME: 13208]
* Wed Oct 01 2025 Brian Read <brianr@koozali.org> 11.0.0-2.sme * Wed Oct 01 2025 Brian Read <brianr@koozali.org> 11.0.0-2.sme
- Restore missing lex file [SME: 13208] - Restore missing lex file [SME: 13208]
- Make front end work for user panel as well as admin panel [SME: 13208] - Make front end work for user panel as well as admin panel [SME: 13208]