Compare commits

..

2 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
3 changed files with 33 additions and 15 deletions

View File

@@ -5,10 +5,22 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Issues with index page for unauthenticated users, refs NOISSUE. [Simon
Diesenreiter]
0.6.2 (2025-07-20)
------------------
Fix Fix
~~~ ~~~
- Build issues, refs NOISSUE. [Simon Diesenreiter] - Build issues, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.6.1 (2025-07-20) 0.6.1 (2025-07-20)
------------------ ------------------

View File

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

View File

@@ -1 +1 @@
0.6.2 0.6.3