Skip to content

Commit 3374ade

Browse files
committed
Update build number
1 parent 6dab0f0 commit 3374ade

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ To translate UniGetUI to other languages or to update an old translation, please
161161
| <img src='https://flagcdn.com/th.svg' width=20> &nbsp; Thai - ภาษาไทย | 78% | [apaeisara](https://github.com/apaeisara), [dulapahv](https://github.com/dulapahv), [rikoprushka](https://github.com/rikoprushka) |
162162
| <img src='https://flagcdn.com/tr.svg' width=20> &nbsp; Turkish - Türkçe | 100% | [ahmetozmtn](https://github.com/ahmetozmtn), [dogancanyr](https://github.com/dogancanyr), [gokberkgs](https://github.com/gokberkgs) |
163163
| <img src='https://flagcdn.com/ua.svg' width=20> &nbsp; Ukrainian - Українська | 99% | Artem Moldovanenko, Operator404, [Taron-art](https://github.com/Taron-art) |
164-
| <img src='https://flagcdn.com/pk.svg' width=20> &nbsp; Urdu - اردو | 100% | [hamzaharoon1314، @digitpk، @digitio](https://github.com/hamzaharoon1314، @digitpk، @digitio) |
164+
| <img src='https://flagcdn.com/pk.svg' width=20> &nbsp; Urdu - اردو | 100% | [digitio](https://github.com/digitio), [digitpk](https://github.com/digitpk), [hamzaharoon1314](https://github.com/hamzaharoon1314) |
165165
| <img src='https://flagcdn.com/vn.svg' width=20> &nbsp; Vietnamese - Tiếng Việt | 100% | [aethervn2309](https://github.com/aethervn2309), [legendsjoon](https://github.com/legendsjoon), [txavlog](https://github.com/txavlog), [vanlongluuly](https://github.com/vanlongluuly) |
166166
| <img src='https://flagcdn.com/cn.svg' width=20> &nbsp; Simplified Chinese (China) | 100% | Aaron Liu, adfnekc, [Ardenet](https://github.com/Ardenet), [arthurfsy2](https://github.com/arthurfsy2), [bai0012](https://github.com/bai0012), BUGP Association, ciaran, CnYeSheng, Cololi, [dongfengweixiao](https://github.com/dongfengweixiao), [enKl03B](https://github.com/enKl03B), [seanyu0](https://github.com/seanyu0), [Sigechaishijie](https://github.com/Sigechaishijie), [SpaceTimee](https://github.com/SpaceTimee), [xiaopangju](https://github.com/xiaopangju), Yisme |
167167
| <img src='https://flagcdn.com/tw.svg' width=20> &nbsp; Traditional Chinese (Taiwan) | 100% | Aaron Liu, CnYeSheng, Cololi, [enKl03B](https://github.com/enKl03B), [Henryliu880922](https://github.com/Henryliu880922), [StarsShine11904](https://github.com/StarsShine11904), [yrctw](https://github.com/yrctw) |
168168

169-
Last updated: Mon Apr 7 00:14:51 2025
169+
Last updated: Mon Apr 7 17:53:32 2025
170170
<!-- END Autogenerated translations -->
171171

172172

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.1.8"
4+
#define MyAppVersion "3.2.0-beta1"
55
#define MyAppName "UniGetUI"
66
#define MyAppPublisher "Martí Climent"
77
#define MyAppURL "https://github.com/marticliment/UniGetUI"
@@ -14,7 +14,7 @@
1414
[Setup]
1515
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
1616
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
17-
UninstallDisplayName="UniGetUI"
17+
UninstallDisplayName="UniGetUI (PreRelease)"
1818
AppId={{889610CC-4337-4BDB-AC3B-4F21806C0BDE}
1919
AppName={#MyAppName}
2020
AppVersion={#MyAppVersion}
@@ -23,7 +23,7 @@ AppPublisher={#MyAppPublisher}
2323
AppPublisherURL="https://www.marticliment.com/unigetui/"
2424
AppSupportURL={#MyAppURL}
2525
AppUpdatesURL={#MyAppURL}
26-
VersionInfoVersion=3.1.8.0
26+
VersionInfoVersion=3.2.0.0
2727
DefaultDirName="{autopf64}\UniGetUI"
2828
DisableProgramGroupPage=yes
2929
DisableDirPage=no

scripts/BuildNumber

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
84
1+
85

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.1.8.0")]
10-
[assembly: AssemblyFileVersion("3.1.8.0")]
11-
[assembly: AssemblyInformationalVersion("3.1.8")]
9+
[assembly: AssemblyVersion("3.2.0.0")]
10+
[assembly: AssemblyFileVersion("3.2.0.0")]
11+
[assembly: AssemblyInformationalVersion("3.2.0-beta1")]
1212
[assembly: SupportedOSPlatform("windows10.0.19041")]

src/UniGetUI.Core.Data/CoreData.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Diagnostics;
1+
using System.Diagnostics;
22
using System.Text.Json;
33
using System.Text.Json.Serialization.Metadata;
44
using UniGetUI.Core.Logging;
@@ -9,8 +9,8 @@ public static class CoreData
99
{
1010
private static int? __code_page;
1111
public static int CODE_PAGE { get => __code_page ??= GetCodePage(); }
12-
public const string VersionName = "3.1.8"; // Do not modify this line, use file scripts/apply_versions.py
13-
public const int BuildNumber = 84; // Do not modify this line, use file scripts/apply_versions.py
12+
public const string VersionName = "3.2.0-beta1"; // Do not modify this line, use file scripts/apply_versions.py
13+
public const int BuildNumber = 85; // Do not modify this line, use file scripts/apply_versions.py
1414

1515
public const string UserAgentString = $"UniGetUI/{VersionName} (https://marticliment.com/unigetui/; contact@marticliment.com)";
1616

src/UniGetUI.Core.LanguageEngine/Assets/Languages/lang_ca.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"Android Subsystem": "Subsistema Android",
7070
"Another source": "Una altra font",
7171
"Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "Qualsevol icona creada durant una instal·lació o una actualització s'eliminarà automàticament, en comptes de mostrar un diàleg de confirmació el primer cop que es detecti.",
72-
"Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Qualsevol icona creada o modificada fora de l'UniGetUI s'ignorarà. Les podreu afegir mitjançant el botó d'{0}",
72+
"Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Qualsevol icona creada o modificada fora de l'UniGetUI s'ignorarà. Les podreu afegir mitjançant el botó d' {0}",
7373
"Any unsaved changes will be lost": "Es perdrà qualsevol canvi no desat",
7474
"App Name": "Nom de l'app",
7575
"Application theme, startup page, package icons, clear successful installs automatically": "Tema de l'aplicació, pàgina d'inici, icones als paquets, neteja les instal·lacions exitoses automàticament",

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.1.8.0"
5+
version= "3.2.0.0"
66
name="UniGetUI"
77
/>
88

0 commit comments

Comments
 (0)