Remove patches

This commit is contained in:
Simon Bruder 2024-05-09 02:28:56 +02:00
parent c0511109ad
commit 34a77be7d7
Signed by: simon
GPG key ID: 347FF8699CDA0776
2 changed files with 0 additions and 24 deletions

View file

@ -5,7 +5,6 @@ ENV DOTNET_CLI_TELEMETRY_OPTOUT 1
RUN apt-get update \ RUN apt-get update \
&& apt-get -y install jq && apt-get -y install jq
COPY disable-deployed-build.patch /tmp/
ARG CACHEBUST=1 ARG CACHEBUST=1
ENV CACHEBUST=$CACHEBUST ENV CACHEBUST=$CACHEBUST
@ -13,8 +12,6 @@ ENV CACHEBUST=$CACHEBUST
RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \ RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \
&& git clone --depth=1 --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \ && git clone --depth=1 --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \
&& cd osu \ && cd osu \
&& curl https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/games/osu-lazer/bypass-tamper-detection.patch | git apply \
&& git apply /tmp/disable-deployed-build.patch \
&& dotnet publish \ && dotnet publish \
-c Release \ -c Release \
-r linux-x64 \ -r linux-x64 \

View file

@ -1,21 +0,0 @@
diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs
index b1269e9..efeefa6 100644
--- a/osu.Game/OsuGameBase.cs
+++ b/osu.Game/OsuGameBase.cs
@@ -109,15 +109,12 @@ public class OsuGameBase : Framework.Game, ICanAcceptFiles
/// </summary>
public string VersionHash { get; private set; }
- public bool IsDeployedBuild => AssemblyVersion.Major > 0;
+ public bool IsDeployedBuild => false;
public virtual string Version
{
get
{
- if (!IsDeployedBuild)
- return @"local " + (DebugUtils.IsDebugBuild ? @"debug" : @"release");
-
var version = AssemblyVersion;
return $@"{version.Major}.{version.Minor}.{version.Build}";
}