nixos-config/pkgs/osu-lazer/0001-Disable-deployed-build...

37 lines
1.3 KiB
Diff
Raw Normal View History

2023-01-10 17:22:58 +01:00
From fcf66151219e26ac5ab50aecc37af84a52d949a1 Mon Sep 17 00:00:00 2001
From: Simon Bruder <simon@sbruder.de>
Date: Fri, 9 Apr 2021 12:01:42 +0200
Subject: [PATCH 1/2] Disable deployed build
It shows warnings at startup which prolong the time it takes to start.
---
osu.Game/OsuGameBase.cs | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs
2023-01-10 17:22:58 +01:00
index 36e248c1f2..f6ba27bed5 100644
--- a/osu.Game/OsuGameBase.cs
+++ b/osu.Game/OsuGameBase.cs
2023-01-10 17:22:58 +01:00
@@ -108,7 +108,7 @@ public partial class OsuGameBase : Framework.Game, ICanAcceptFiles, IBeatSyncPro
/// </summary>
public string VersionHash { get; private set; }
- public bool IsDeployedBuild => AssemblyVersion.Major > 0;
+ public bool IsDeployedBuild => false;
2022-07-23 20:38:38 +02:00
internal const string BUILD_SUFFIX = "lazer";
2023-01-10 17:22:58 +01:00
@@ -116,9 +116,6 @@ public virtual string Version
{
get
{
- if (!IsDeployedBuild)
- return @"local " + (DebugUtils.IsDebugBuild ? @"debug" : @"release");
-
var version = AssemblyVersion;
2022-07-23 20:38:38 +02:00
return $@"{version.Major}.{version.Minor}.{version.Build}-{BUILD_SUFFIX}";
}
--
2023-01-10 17:22:58 +01:00
2.38.1