Compare commits

..

No commits in common. "28616252aacc2c59966c17cce5c6fb00054c13a3" and "9598965a4a097dfab0977bb14e54684a3e4aea54" have entirely different histories.

3 changed files with 1 additions and 16 deletions

View File

@ -5,21 +5,10 @@ Changelog
(unreleased)
------------
Fix
~~~
- More debug outputs refs NOISSUE. [Simon Diesenreiter]
0.1.10 (2025-04-15)
-------------------
Fix
~~~
- Release version jumbled up refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.9 (2025-04-15)
------------------

View File

@ -9,7 +9,6 @@ SignalIntegration.Instance = new SignalIntegration(AppConfiguration.Instance.Sig
var builder = WebApplication.CreateBuilder(args);
Console.WriteLine("Setting up user check timer");
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
userCheckTimer.OnOccurence += async (s, ea) =>
{
@ -45,7 +44,6 @@ userCheckTimer.OnOccurence += async (s, ea) =>
};
userCheckTimer.Start();
Console.WriteLine("Setting up user intro timer");
var userIntroTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
userIntroTimer.OnOccurence += async (s, ea) =>
{
@ -67,8 +65,6 @@ userIntroTimer.OnOccurence += async (s, ea) =>
};
userIntroTimer.Start();
Console.WriteLine("Setting up pick of the day timer");
var pickOfTheDayTimer = new CronTimer("0 8 * * *", "Europe/Vienna", includingSeconds: false);
pickOfTheDayTimer.OnOccurence += async (s, ea) =>
{

View File

@ -1 +1 @@
0.1.11
0.1.10