Compare commits

..

15 commits

Author SHA1 Message Date
Coxxs
92d8f0eb1c gdb: Show thread names
Reference: d8a37b4b71/libraries/libstratosphere/source/osdbg/impl/osdbg_thread_type.os.horizon.hpp
2025-06-21 12:54:39 +08:00
Coxxs
9552cafaaa gdb: Set correct gThread and cThread when break 2025-06-21 12:54:39 +08:00
Coxxs
066a3c9e56 gdb: Update DebugPc during SVC call and break 2025-06-21 12:54:39 +08:00
Coxxs
eb8b35b170 gdb: Fix crash when gdb client disconnected in some cases 2025-06-21 12:54:39 +08:00
Coxxs
a2b35ecce3 gdb: Add timeout to prevent deadlock in DebugStep
Deadlock can happen when step at some svc instructions.
2025-06-21 12:54:39 +08:00
Coxxs
9c5d81201d gdb: Fix GdbWriteRegister endianness 2025-06-21 12:54:39 +08:00
Coxxs
16ad91d05e gdb: Fix crash on stop emulation if gdb stub is enabled with app running 2025-06-21 12:54:39 +08:00
Coxxs
2a85bfd28a gdb: Remove unused using 2025-06-21 12:54:39 +08:00
Coxxs
b94c083b1a gdb: Add notice when application is suspended on start 2025-06-21 12:54:39 +08:00
Coxxs
fceff066c5 gdb: Wait for the application to start if user connect gdb too early 2025-06-21 12:54:39 +08:00
Coxxs
2cf9c53c05 gdb: Fix crash on exit when not using Debugger 2025-06-21 12:54:39 +08:00
Coxxs
6d583862c1 gdb: Remove redundant log 2025-06-21 12:54:39 +08:00
Coxxs
a553958479 Add GDB Stub
Author: merry, svc64
2025-06-21 12:54:39 +08:00
GreemDev
74a9b94227 UI: Properly space total play time separator when loading bar is shown. 2025-06-20 23:06:16 -05:00
GreemDev
d3208a4c44 UI: Don't show total play time if there is none. 2025-06-20 23:02:39 -05:00
2 changed files with 9 additions and 4 deletions

View file

@ -310,10 +310,15 @@ namespace Ryujinx.Ava.UI.ViewModels
private void TotalTimePlayed_Recalculated(Optional<TimeSpan> ts) private void TotalTimePlayed_Recalculated(Optional<TimeSpan> ts)
{ {
ShowTotalTimePlayed = ts.HasValue;
if (ts.HasValue) if (ts.HasValue)
LocaleManager.Instance.SetDynamicValues(LocaleKeys.GameListLabelTotalTimePlayed, ValueFormatUtils.FormatTimeSpan(ts.Value)); {
var formattedPlayTime = ValueFormatUtils.FormatTimeSpan(ts.Value);
LocaleManager.Instance.SetDynamicValues(LocaleKeys.GameListLabelTotalTimePlayed, formattedPlayTime);
ShowTotalTimePlayed = formattedPlayTime != string.Empty;
return;
}
ShowTotalTimePlayed = ts.HasValue;
} }
public bool ShowTotalTimePlayed public bool ShowTotalTimePlayed
@ -334,7 +339,6 @@ namespace Ryujinx.Ava.UI.ViewModels
_listSelectedApplication = value; _listSelectedApplication = value;
if (_listSelectedApplication != null && ListAppContextMenu == null) if (_listSelectedApplication != null && ListAppContextMenu == null)
ListAppContextMenu = new ApplicationContextMenu(); ListAppContextMenu = new ApplicationContextMenu();
else if (_listSelectedApplication == null && ListAppContextMenu != null) else if (_listSelectedApplication == null && ListAppContextMenu != null)
ListAppContextMenu = null!; ListAppContextMenu = null!;

View file

@ -64,6 +64,7 @@
MinWidth="200" MinWidth="200"
Height="6" Height="6"
VerticalAlignment="Center" VerticalAlignment="Center"
Margin="0, 0, 5, 0"
Foreground="{DynamicResource SystemAccentColorLight2}" Foreground="{DynamicResource SystemAccentColorLight2}"
IsVisible="{Binding StatusBarVisible}" IsVisible="{Binding StatusBarVisible}"
Maximum="{Binding StatusBarProgressMaximum}" Maximum="{Binding StatusBarProgressMaximum}"