Server V.1.2.5 202507291800
調整Room 不要押值 調整關台不顯示下首歌字樣 調整闗台QRCode不顯示
This commit is contained in:
parent
952471fcf0
commit
75090d0c07
@ -92,9 +92,14 @@ namespace DBObj
|
||||
|
||||
public static void UpdateNextSongLabel()
|
||||
{
|
||||
VideoPlayerForm.overlayForm.UpdateTopLeftLabel(
|
||||
(not_played.Count > 0) ? not_played[0].next_song_text() : "目前沒有下一首,請踴躍點歌!!!"
|
||||
);
|
||||
if (Program.room.IsClose()) {
|
||||
VideoPlayerForm.overlayForm.UpdateTopLeftLabel(" ");
|
||||
} else {
|
||||
VideoPlayerForm.overlayForm.UpdateTopLeftLabel(
|
||||
(not_played.Count > 0) ? not_played[0].next_song_text() : "目前沒有下一首,請踴躍點歌!!!"
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
public static void clearSong()
|
||||
{
|
||||
|
@ -84,9 +84,11 @@ namespace OverlayFormObj
|
||||
Console.WriteLine("Failed to load QR code image after multiple attempts.");
|
||||
return;
|
||||
}
|
||||
|
||||
showQRCode = true;
|
||||
qrCodeTimer.Start();
|
||||
if (Program.room.IsOpen()) {
|
||||
showQRCode = true;
|
||||
qrCodeTimer.Start();
|
||||
}
|
||||
|
||||
Invalidate(); // Trigger a repaint to show the QR code
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
@ -17,7 +17,7 @@ namespace DualScreenDemo
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Console.WriteLine("Server V.1.2.4 202507281600");
|
||||
Console.WriteLine("Server V.1.2.5 202507291800");
|
||||
if (Utils.Env.GetBool("IsCursor", true)) Cursor.Hide();
|
||||
AppDomain.CurrentDomain.ProcessExit += (s, e) => Cursor.Show();
|
||||
//Console.WriteLine("正在與中控取得聯繫...");
|
||||
|
Loading…
x
Reference in New Issue
Block a user