mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-09-19 06:32:14 -07:00
Improve build identification (#927)
* Improve build identification Add versioning on CI build Fix #887 * Fix appveyor * Fix appveyor for real now
This commit is contained in:
@@ -38,8 +38,7 @@ namespace Ryujinx.Ui
|
||||
_discordLogo.Pixbuf = new Gdk.Pixbuf(Assembly.GetExecutingAssembly(), "Ryujinx.Ui.assets.DiscordLogo.png", 30 , 30 );
|
||||
_twitterLogo.Pixbuf = new Gdk.Pixbuf(Assembly.GetExecutingAssembly(), "Ryujinx.Ui.assets.TwitterLogo.png", 30 , 30 );
|
||||
|
||||
// todo: Get version string
|
||||
_versionText.Text = "Unknown Version";
|
||||
_versionText.Text = Program.Version;
|
||||
}
|
||||
|
||||
private static void OpenUrl(string url)
|
||||
|
@@ -295,7 +295,7 @@ namespace Ryujinx.Ui
|
||||
string titleIdSection = string.IsNullOrWhiteSpace(_device.System.TitleIdText) ? string.Empty
|
||||
: " | " + _device.System.TitleIdText.ToUpper();
|
||||
|
||||
_newTitle = $"Ryujinx{titleNameSection}{titleIdSection} | Host FPS: {hostFps:0.0} | Game FPS: {gameFps:0.0} | " +
|
||||
_newTitle = $"Ryujinx {Program.Version}{titleNameSection}{titleIdSection} | Host FPS: {hostFps:0.0} | Game FPS: {gameFps:0.0} | " +
|
||||
$"Game Vsync: {(_device.EnableDeviceVsync ? "On" : "Off")}";
|
||||
|
||||
_titleEvent = true;
|
||||
|
Reference in New Issue
Block a user