Skip to content

Commit eeb9a24

Browse files
committed
Bump version to 4.0.0 across projects
Update project versions from 3.1.0 to 4.0.0 (Version, AssemblyVersion, FileVersion) in multiple csproj files and FastFileLib. Also update visible version strings in ApplicationConstants and UI forms (compiler, converter, extractor) to reflect the new 4.0.0 release.
1 parent 96cc922 commit eeb9a24

10 files changed

Lines changed: 22 additions & 22 deletions

File tree

Call of Duty FastFile Editor/Call of Duty FastFile Editor.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<UseWindowsForms>true</UseWindowsForms>
99
<ImplicitUsings>enable</ImplicitUsings>
1010
<SelfContained>false</SelfContained>
11-
<Version>3.1.0</Version>
12-
<AssemblyVersion>3.1.0</AssemblyVersion>
13-
<FileVersion>3.1.0</FileVersion>
11+
<Version>4.0.0</Version>
12+
<AssemblyVersion>4.0.0</AssemblyVersion>
13+
<FileVersion>4.0.0</FileVersion>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

Call of Duty FastFile Editor/Constants/ApplicationConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public static class ApplicationConstants
44
{
55
public const string ProgramName = "Call of Duty Fast File Editor";
6-
public const string ProgramVersion = "v3.1.0";
6+
public const string ProgramVersion = "v4.0.0";
77
public const string About = $"{ProgramName}\n" +
88
"Version: " + ProgramVersion + "\n\n" +
99
"Developed by primetime43\n\n" +

FastFileCLI/FastFileCLI.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<Nullable>enable</Nullable>
88
<AssemblyName>ffcli</AssemblyName>
99
<RootNamespace>FastFileCLI</RootNamespace>
10-
<Version>3.1.0</Version>
11-
<AssemblyVersion>3.1.0</AssemblyVersion>
12-
<FileVersion>3.1.0</FileVersion>
10+
<Version>4.0.0</Version>
11+
<AssemblyVersion>4.0.0</AssemblyVersion>
12+
<FileVersion>4.0.0</FileVersion>
1313
</PropertyGroup>
1414

1515
<ItemGroup>

FastFileCompilerGUI/FastFileCompilerGUI.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<UseWindowsForms>true</UseWindowsForms>
99
<ImplicitUsings>enable</ImplicitUsings>
1010
<SelfContained>false</SelfContained>
11-
<Version>3.1.0</Version>
12-
<AssemblyVersion>3.1.0</AssemblyVersion>
13-
<FileVersion>3.1.0</FileVersion>
11+
<Version>4.0.0</Version>
12+
<AssemblyVersion>4.0.0</AssemblyVersion>
13+
<FileVersion>4.0.0</FileVersion>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

FastFileCompilerGUI/MainForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FastFileConverterGUI/FastFileConverterGUI.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<ImplicitUsings>enable</ImplicitUsings>
99
<AssemblyName>FastFileConverter</AssemblyName>
1010
<RootNamespace>FastFileConverterGUI</RootNamespace>
11-
<Version>3.1.0</Version>
12-
<AssemblyVersion>3.1.0</AssemblyVersion>
13-
<FileVersion>3.1.0</FileVersion>
11+
<Version>4.0.0</Version>
12+
<AssemblyVersion>4.0.0</AssemblyVersion>
13+
<FileVersion>4.0.0</FileVersion>
1414
</PropertyGroup>
1515

1616
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

FastFileConverterGUI/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public Form1()
3030

3131
private void SetupUI()
3232
{
33-
this.Text = "FastFile Platform Converter v3.1.0";
33+
this.Text = "FastFile Platform Converter v4.0.0";
3434
this.Size = new Size(700, 600);
3535
this.MinimumSize = new Size(600, 500);
3636
this.StartPosition = FormStartPosition.CenterScreen;

FastFileExtractor/FastFileExtractor.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<SelfContained>false</SelfContained>
1010
<AssemblyName>FastFileExtractor</AssemblyName>
1111
<RootNamespace>FastFileExtractor</RootNamespace>
12-
<Version>3.1.0</Version>
13-
<AssemblyVersion>3.1.0</AssemblyVersion>
14-
<FileVersion>3.1.0</FileVersion>
12+
<Version>4.0.0</Version>
13+
<AssemblyVersion>4.0.0</AssemblyVersion>
14+
<FileVersion>4.0.0</FileVersion>
1515
</PropertyGroup>
1616

1717
<ItemGroup>

FastFileExtractor/MainForm.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FastFileLib/FastFileLib.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>3.1.0</Version>
8-
<AssemblyVersion>3.1.0</AssemblyVersion>
9-
<FileVersion>3.1.0</FileVersion>
7+
<Version>4.0.0</Version>
8+
<AssemblyVersion>4.0.0</AssemblyVersion>
9+
<FileVersion>4.0.0</FileVersion>
1010
</PropertyGroup>
1111

1212
</Project>

0 commit comments

Comments
 (0)