Skip to content

Commit

Permalink
..................
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Oct 8, 2022
1 parent e9c1662 commit f45f50e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 34 deletions.
60 changes: 30 additions & 30 deletions MediaNavIGO/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions MediaNavIGO/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ private string GetRealName(string fullpath)
{
if (p > 0)
{
real = real.Replace(i, null);
//real = real.Replace(i, null);
}
}
}
Expand All @@ -485,7 +485,14 @@ private string GetRealName(string fullpath)
real = real.Replace("_", null);
break;
}
real = real.Replace("Extended.", "_Ext.");
if (real.Contains("ext."))
{
if (!real.Contains("_"))
{
real = real.Replace("ext.", "_ext.");
}
}
real = real.Replace("Extended.", "_ext.");
real = real.Replace("Fast.", "Fastest.");
real = real.Replace("Short.", "Shortest.");
real = real.Replace("Economical.", "Economic.");
Expand Down
4 changes: 2 additions & 2 deletions MediaNavIGO/MediaNavIGO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<Version>1.0.0.3</Version>
<Copyright>Copyright © 2016-2021</Copyright>
<Version>1.0.0.4</Version>
<Copyright>Copyright © 2016-2022</Copyright>
<Product>MediaNavIGO</Product>
<Company>RocketBot</Company>
<PackageId>MediaNavIGO</PackageId>
Expand Down

0 comments on commit f45f50e

Please sign in to comment.