Compare commits

4 Commits

Author SHA1 Message Date
Simon Diesenreiter
2889661f24 release: version 0.1.12 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 1m17s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m37s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Successful in 2m46s
SonarQube Scan / SonarQube Trigger (push) Failing after 4m56s
2025-04-15 13:58:19 +02:00
Simon Diesenreiter
513589a6fc fix: hotfixed CronTab dependencyrefs NOISSUE 2025-04-15 13:58:12 +02:00
Simon Diesenreiter
28616252aa release: version 0.1.11 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Blocked by required conditions
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / Create Release (push) Successful in 8s
Upload Python Package / deploy (push) Successful in 1m54s
2025-04-15 13:07:36 +02:00
Simon Diesenreiter
09acbbefea fix: more debug outputs refs NOISSUE 2025-04-15 13:06:39 +02:00
5 changed files with 30 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
name: Upload Python Package name: Build Docker image
permissions: permissions:
contents: write contents: write

View File

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

View File

@@ -4,8 +4,8 @@
<!--To inherit the global NuGet package sources remove the <clear/> line below --> <!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear /> <clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> <add key="nuget" value="https://api.nuget.org/v3/index.json" />
<!--add key="gitea-projects" value="https://git.disi.dev/api/packages/Projects/nuget/index.json" /> <!--add key="gitea-projects" value="https://git.disi.dev/api/packages/Projects/nuget/index.json" /-->
<add key="gitea-homelab" value="https://git.disi.dev/api/packages/Homelab/nuget/index.json" /> <add key="gitea-homelab" value="https://git.disi.dev/api/packages/Homelab/nuget/index.json" />
<add key="gitea-artifacts" value="https://git.disi.dev/api/packages/Artifacts/nuget/index.json" /--> <!--add key="gitea-artifacts" value="https://git.disi.dev/api/packages/Artifacts/nuget/index.json" /-->
</packageSources> </packageSources>
</configuration> </configuration>

View File

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

View File

@@ -1 +1 @@
0.1.10 0.1.12