#2 #6 #7 Added a new sync screen that shows progress during sync
All checks were successful
Build / build (push) Successful in 1m22s

This commit is contained in:
2025-09-19 22:15:37 +02:00
parent 3e4d417b4f
commit 4e6e37775d
17 changed files with 443 additions and 64 deletions

View File

@@ -15,6 +15,7 @@ var use_low_played_mode: bool = false
var winning_score: int = 20
var fullscreen: bool = false
var quick_sync: bool = true
var number_of_tracks_to_preload: int = 1
var play_local: bool = false
var player_array: Array[PlayerObject]
@@ -22,12 +23,16 @@ var song_object_array: Array[SongObject] = []
var latest_played_song: int = 0
var currently_playing_song: int = -1
var edit_players: bool = false
var currently_syncing: bool = false
var version: String = "1.6.0"
var whats_new: String = "Changelog:
1.6.0:
#1: Fixed bug with inspiration list not reloding after sync
#2: New dialog for sync
#6: Now show progress during sync
#7: Blocking all requests to the server during sync
1.5.0: Made big changes to players and the song list and how the local song list works
0.9.0-Beta: Fixed settings and updated the player view
0.8.0-Beta: Fixed reset buttons and some other small things