Compare commits

...

4 Commits
0.2.0 ... main

Author SHA1 Message Date
055cf79354 release: version 0.2.2 🚀
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Waiting to run
Build Docker image / Create Release (push) Successful in 18s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m3s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Failing after 2m0s
2025-05-18 11:39:32 +02:00
b4a893d936 fix: also send pick suggestion to the group, refs NOISSUE 2025-05-18 11:39:27 +02:00
31af2e3238 release: version 0.2.1 🚀
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m12s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / Create Release (push) Successful in 14s
Build Docker image / deploy (push) Successful in 1m44s
SonarQube Scan / SonarQube Trigger (push) Failing after 4m49s
2025-05-17 22:32:12 +02:00
4f4cda622f fix: fix Docker build, refs NOISSUE 2025-05-17 22:32:08 +02:00
4 changed files with 24 additions and 3 deletions

View File

@ -4,7 +4,7 @@ WORKDIR /App
# Copy everything # Copy everything
COPY . ./ COPY . ./
RUN apt upgrade && apt install libldap -y RUN apt update && apt install libldap-2.5-0 -y
# Restore as distinct layers # Restore as distinct layers
RUN dotnet restore ./song_of_the_day/song_of_the_day.csproj RUN dotnet restore ./song_of_the_day/song_of_the_day.csproj

View File

@ -4,6 +4,26 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Also send pick suggestion to the group, refs NOISSUE. [Simon
Diesenreiter]
0.2.1 (2025-05-17)
------------------
Fix
~~~
- Fix Docker build, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.2.0 (2025-05-17)
------------------
- Feat: add user management, refs NOISSUE. [Simon Diesenreiter] - Feat: add user management, refs NOISSUE. [Simon Diesenreiter]
- Feat(auth): initial auth added part 2, refs NOISSUE. [Simon - Feat(auth): initial auth added part 2, refs NOISSUE. [Simon
Diesenreiter] Diesenreiter]

View File

@ -98,6 +98,7 @@ pickOfTheDayTimer.OnOccurence += async (s, ea) =>
var luckyUser = await dci.Users.ElementAtAsync((new Random()).Next(await dci.Users.CountAsync())); var luckyUser = await dci.Users.ElementAtAsync((new Random()).Next(await dci.Users.CountAsync()));
var userName = string.IsNullOrEmpty(luckyUser.NickName) ? luckyUser.Name : luckyUser.NickName; var userName = string.IsNullOrEmpty(luckyUser.NickName) ? luckyUser.Name : luckyUser.NickName;
SignalIntegration.Instance.SendMessageToGroupAsync($"Today's chosen person to share a song is: **{userName}**"); SignalIntegration.Instance.SendMessageToGroupAsync($"Today's chosen person to share a song is: **{userName}**");
SignalIntegration.Instance.SendMessageToGroupAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*");
SignalIntegration.Instance.SendMessageToUserAsync($"Congratulations, you have been chosen to share a song today!", luckyUser.SignalMemberId); SignalIntegration.Instance.SendMessageToUserAsync($"Congratulations, you have been chosen to share a song today!", luckyUser.SignalMemberId);
var suggestion = await dci.SuggestionHelpers.ElementAtAsync((new Random()).Next(await dci.SuggestionHelpers.CountAsync())); var suggestion = await dci.SuggestionHelpers.ElementAtAsync((new Random()).Next(await dci.SuggestionHelpers.CountAsync()));
SignalIntegration.Instance.SendMessageToUserAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*", luckyUser.SignalMemberId); SignalIntegration.Instance.SendMessageToUserAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*", luckyUser.SignalMemberId);

View File

@ -1 +1 @@
0.2.0 0.2.2