Compare commits

...

6 Commits

Author SHA1 Message Date
1f4b5ad34e release: version 0.6.3 🚀
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
Build Docker image / Create Release (push) Successful in 42s
Build Docker image / deploy (push) Successful in 1m50s
2025-07-20 03:34:18 +02:00
10cfec30f9 fix: issues with index page for unauthenticated users, refs NOISSUE 2025-07-20 03:34:09 +02:00
d41c4d2b2d release: version 0.6.2 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 1m1s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m28s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Successful in 1m46s
SonarQube Scan / SonarQube Trigger (push) Failing after 5m37s
2025-07-20 03:26:47 +02:00
bc7b16ecb4 fix: build issues, refs NOISSUE 2025-07-20 03:26:17 +02:00
081523b510 release: version 0.6.1 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 1m5s
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m29s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
Build Docker image / deploy (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
2025-07-20 03:24:40 +02:00
856e30aacc fix: remove local debugging configs, refs NOISSUE 2025-07-20 03:24:35 +02:00
5 changed files with 54 additions and 16 deletions

View File

@@ -5,6 +5,37 @@ Changelog
(unreleased)
------------
Fix
~~~
- Issues with index page for unauthenticated users, refs NOISSUE. [Simon
Diesenreiter]
0.6.2 (2025-07-20)
------------------
Fix
~~~
- Build issues, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.1 (2025-07-20)
------------------
Fix
~~~
- Remove local debugging configs, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.0 (2025-07-20)
------------------
Fix
~~~
- Formatting, refs NOISSUE. [Simon Diesenreiter]

View File

@@ -11,8 +11,11 @@
<th>Date</th>
<th>Song</th>
<th>Submitter</th>
@if(@User.Identity.IsAuthenticated)
{
<th>Details</th>
<th></th>
}
</tr>
@foreach(var songSuggestion in Model.SongSuggestions)
{
@@ -26,6 +29,8 @@
<td>@songSuggestion?.Date.ToString("dd. MM. yyyy")</td>
<td><a href="@songSuggestion?.Song.Url" target="_blank">@string.Format("{0} - {1}", songSuggestion?.Song.Name, songSuggestion?.Song.Artist)</a></td>
<td>@displayName</td>
@if(@User.Identity.IsAuthenticated)
{
<td><a href="/SongSubmission/@songSuggestion?.Id">View</a></td>
<td class="=viewLike">
@if(songSuggestion?.Song != null)
@@ -38,6 +43,7 @@
</form>
}
</td>
}
</tr>
}
}

View File

@@ -57,6 +57,7 @@ userCheckTimer.OnOccurence += async (s, ea) =>
LdapUserName = string.Empty,
AssociationInProgress = false,
WasChosenForSuggestionThisRound = false,
LikedSongs = new List<Song>()
};
dci.Users?.Add(newUser);
needsSaving = true;

View File

@@ -77,7 +77,7 @@ public class SpotifyApiClient
public string GetLoginRedirectUri()
{
return "http://127.0.0.1:5000/SpotifyLogin";
return AppConfiguration.Instance.WebUIBaseURL + (AppConfiguration.Instance.WebUIBaseURL.EndsWith("/") ? "SpotifyLogin" : "/SpotifyLogin");
}
private bool IsAuthTokenExpired(User user)

View File

@@ -1 +1 @@
0.6.0
0.6.3