Skip to content

Commit 137ae7c

Browse files
committed
Version Update: 2.1.1
1 parent 15afaae commit 137ae7c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Core/Shared/EmuSettings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ void EmuSettings::Serialize(Serializer& s)
134134

135135
uint32_t EmuSettings::GetVersion()
136136
{
137-
//Version 2.1.0
137+
//Version 2.1.1
138138
uint16_t major = 2;
139139
uint8_t minor = 1;
140-
uint8_t revision = 0;
140+
uint8_t revision = 1;
141141
return (major << 16) | (minor << 8) | revision;
142142
}
143143

UI/Config/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public partial class Configuration : ReactiveObject
2020
{
2121
private string _fileData = "";
2222

23-
public string Version { get; set; } = "2.1.0";
23+
public string Version { get; set; } = "2.1.1";
2424
public int ConfigUpgrade { get; set; } = 0;
2525

2626
[Reactive] public VideoConfig Video { get; set; } = new();

UI/UI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<AssemblyName>Mesen</AssemblyName>
99
<RootNamespace>Mesen</RootNamespace>
1010
<StartupObject>Mesen.Program</StartupObject>
11-
<Version>2.1.0</Version>
12-
<FileVersion>2.1.0</FileVersion>
11+
<Version>2.1.1</Version>
12+
<FileVersion>2.1.1</FileVersion>
1313
<Copyright>(C) 2014-2025 Sour</Copyright>
1414
</PropertyGroup>
1515
<PropertyGroup>

0 commit comments

Comments
 (0)