Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ShinRyuModManager-CE/ShinRyuModManager-CE.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>

<!-- Versioning -->
<AssemblyVersion>1.4.6</AssemblyVersion>
<AssemblyVersion>1.4.7</AssemblyVersion>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<AssemblyTitle>ShinRyuModManager-CE</AssemblyTitle>
<Company>SRMM Studio</Company>
Expand Down
7 changes: 6 additions & 1 deletion ShinRyuModManager-CE/UserInterface/Assets/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
> ### **%{color:gold} Version 1.4.6 %** ###
> ### **%{color:gold} Version 1.4.7 %** ###
* Fixed launching Kiwami 3 from in app

---

> ### **%{color:orange} Version 1.4.6 %** ###
* Implemented changes from SRMM 4.8.0

---
Expand Down
4 changes: 2 additions & 2 deletions Utils/GamePath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ public static string GetGameFriendlyName(Game game) {
Game.YakuzaKiwami2 => "Yakuza Kiwami 2",
Game.YakuzaKiwami2_R => "Yakuza Kiwami 2 Remastered",
Game.Yakuza3 => "Yakuza 3 Remastered",
Game.YakuzaKiwami3 => "Yakuza Kiwami 3",
Game.Yakuza4 => "Yakuza 4 Remastered",
Game.Yakuza5 => "Yakuza 5 Remastered",
Game.Yakuza6 => "Yakuza 6",
Expand All @@ -244,7 +245,6 @@ public static string GetGameFriendlyName(Game game) {
Game.VFREVOBETA => "Virtua Fighter 5 R.E.V.O. Beta",
Game.VFREVO => "Virtua Fighter 5 R.E.V.O.",
Game.StrangerThanHeaven => "Stranger Than Heaven",
Game.YakuzaKiwami3 => "Yakuza Kiwami 3",
_ => "<unknown>"
};
}
Expand All @@ -258,6 +258,7 @@ public static string GetGameFriendlyName(Game game) {
Game.YakuzaKiwami2 => 927380,
Game.YakuzaKiwami2_R => 3717340,
Game.Yakuza3 => 1088710,
Game.YakuzaKiwami3 => 3937550,
Game.Yakuza4 => 1105500,
Game.Yakuza5 => 1105510,
Game.Yakuza6 => 1388590,
Expand All @@ -270,7 +271,6 @@ public static string GetGameFriendlyName(Game game) {
Game.VFREVOBETA => 3283250,
Game.VFREVO => 3112260,
Game.StrangerThanHeaven => null,
Game.YakuzaKiwami3 => null,
_ => null
};
}
Expand Down