Skip to content

Commit 86b05d6

Browse files
committed
update version number
1 parent 2c2896e commit 86b05d6

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

InstallerExtras/CustomMessages.iss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ Hebrew.ChocoInstall=להתקין את Chocolatey (for the current user only)
122122
Hebrew.PackageBundleName=אוסף חבילות UniGetUI
123123

124124
; Icelandic
125-
Icelandic.InstallType=Uppsetningargerð
126-
Icelandic.ShCuts=Flýtivísar
127-
Icelandic.PortInst=Framkvæma færanlega uppsetningu
128-
Icelandic.RegInst=Framkvæma reglulega uppsetningu
129-
Icelandic.RegStartMmenuIcon=Búa til flýtileið á Start valmyndinni
130-
Icelandic.RegDesktopIcon=Búa til flýtileið á skjáborðinu
131-
Icelandic.ChocoInstall=Setja upp Chocolatey (for the current user only)
132-
Icelandic.PackageBundleName=Safn af UniGetUI pakka
125+
;Icelandic.InstallType=Uppsetningargerð
126+
;Icelandic.ShCuts=Flýtivísar
127+
;Icelandic.PortInst=Framkvæma færanlega uppsetningu
128+
;Icelandic.RegInst=Framkvæma reglulega uppsetningu
129+
;Icelandic.RegStartMmenuIcon=Búa til flýtileið á Start valmyndinni
130+
;Icelandic.RegDesktopIcon=Búa til flýtileið á skjáborðinu
131+
;Icelandic.ChocoInstall=Setja upp Chocolatey (for the current user only)
132+
;Icelandic.PackageBundleName=Safn af UniGetUI pakka
133133

134134
; Italian
135135
Italian.InstallType=Tipo di installazione

UniGetUI.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Script generated by the Inno Setup Script Wizard.
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

4-
#define MyAppVersion "3.3.1"
4+
#define MyAppVersion "3.3.2"
55
#define MyAppName "UniGetUI"
66
#define MyAppPublisher "Martí Climent"
77
#define MyAppURL "https://github.com/marticliment/UniGetUI"
@@ -23,7 +23,7 @@ AppPublisher={#MyAppPublisher}
2323
AppPublisherURL="https://www.marticliment.com/unigetui/"
2424
AppSupportURL={#MyAppURL}
2525
AppUpdatesURL={#MyAppURL}
26-
VersionInfoVersion=3.3.1.0
26+
VersionInfoVersion=3.3.2.0
2727
DefaultDirName="{autopf64}\UniGetUI"
2828
DisableProgramGroupPage=yes
2929
DisableDirPage=no
@@ -71,7 +71,7 @@ Name: "Finnish"; MessagesFile: "compiler:Languages\Finnish.isl"
7171
Name: "French"; MessagesFile: "compiler:Languages\French.isl"
7272
Name: "German"; MessagesFile: "compiler:Languages\German.isl"
7373
Name: "Hebrew"; MessagesFile: "compiler:Languages\Hebrew.isl"
74-
Name: "Icelandic"; MessagesFile: "compiler:Languages\Icelandic.isl"
74+
;Name: "Icelandic"; MessagesFile: "compiler:Languages\Icelandic.isl"
7575
Name: "Italian"; MessagesFile: "compiler:Languages\Italian.isl"
7676
Name: "Japanese"; MessagesFile: "compiler:Languages\Japanese.isl"
7777
Name: "Korean"; MessagesFile: "compiler:Languages\Korean.isl"

scripts/BuildNumber

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
99
1+
100

src/SharedAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[assembly: AssemblyTitle("UniGetUI")]
77
[assembly: AssemblyDefaultAlias("UniGetUI")]
88
[assembly: AssemblyCopyright("2025, Martí Climent")]
9-
[assembly: AssemblyVersion("3.3.1.0")]
10-
[assembly: AssemblyFileVersion("3.3.1.0")]
11-
[assembly: AssemblyInformationalVersion("3.3.1")]
9+
[assembly: AssemblyVersion("3.3.2.0")]
10+
[assembly: AssemblyFileVersion("3.3.2.0")]
11+
[assembly: AssemblyInformationalVersion("3.3.2")]
1212
[assembly: SupportedOSPlatform("windows10.0.19041")]

src/UniGetUI.Core.Data/CoreData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ public static class CoreData
77
{
88
private static int? __code_page;
99
public static int CODE_PAGE { get => __code_page ??= GetCodePage(); }
10-
public const string VersionName = "3.3.1"; // Do not modify this line, use file scripts/apply_versions.py
11-
public const int BuildNumber = 99; // Do not modify this line, use file scripts/apply_versions.py
10+
public const string VersionName = "3.3.2"; // Do not modify this line, use file scripts/apply_versions.py
11+
public const int BuildNumber = 100; // Do not modify this line, use file scripts/apply_versions.py
1212

1313
public const string UserAgentString = $"UniGetUI/{VersionName} (https://marticliment.com/unigetui/; [email protected])";
1414

src/UniGetUI/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
33
<assemblyIdentity
44
type="win32"
5-
version= "3.3.1.0"
5+
version= "3.3.2.0"
66
name="UniGetUI"
77
/>
88

0 commit comments

Comments
 (0)