Skip to content

Commit

Permalink
Update build files
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Jul 22, 2024
1 parent e4fa06f commit bb7dbf0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ To translate UniGetUI to other languages or to update an old translation, please
| <img src='https://flagcdn.com/tr.svg' width=20> &nbsp; Turkish - Türkçe | 99% | [ahmetozmtn](https://github.com/ahmetozmtn), [dogancanyr](https://github.com/dogancanyr), [gokberkgs](https://github.com/gokberkgs) |
| <img src='https://flagcdn.com/ua.svg' width=20> &nbsp; Ukrainian - Yкраї́нська | 56% | Artem Moldovanenko, Operator404 |
| <img src='https://flagcdn.com/ur.svg' width=20> &nbsp; Urdu - اردو | 71% | [digitio](https://github.com/digitio), [digitpk](https://github.com/digitpk) |
| <img src='https://flagcdn.com/vn.svg' width=20> &nbsp; Vietnamese - Tiếng Việt | 95% | [legendsjoon](https://github.com/legendsjoon), [txavlog](https://github.com/txavlog) |
| <img src='https://flagcdn.com/vn.svg' width=20> &nbsp; Vietnamese - Tiếng Việt | 99% | [legendsjoon](https://github.com/legendsjoon), [txavlog](https://github.com/txavlog) |
| <img src='https://flagcdn.com/cn.svg' width=20> &nbsp; Simplified Chinese (China) | 100% | Aaron Liu, adfnekc, [arthurfsy2](https://github.com/arthurfsy2), [bai0012](https://github.com/bai0012), BUGP Association, ciaran, CnYeSheng, Cololi, [FloatStream](https://github.com/FloatStream), [SpaceTimee](https://github.com/SpaceTimee), Yisme |
| <img src='https://flagcdn.com/tw.svg' width=20> &nbsp; Traditional Chinese (Taiwan) | 95% | Aaron Liu, CnYeSheng, Cololi, [Henryliu880922](https://github.com/Henryliu880922), [yrctw](https://github.com/yrctw) |

Last updated: Mon Jul 22 00:12:24 2024
Last updated: Tue Jul 23 00:39:07 2024
<!-- END Autogenerated translations -->


Expand Down
2 changes: 1 addition & 1 deletion UniGetUI.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppVersion "3.1.1-beta2"
#define MyAppVersion "3.1.1-beta3"
#define MyAppName "UniGetUI (formerly WingetUI)"
#define MyAppPublisher "Martí Climent"
#define MyAppURL "https://github.com/marticliment/UniGetUI"
Expand Down
2 changes: 1 addition & 1 deletion scripts/apply_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def fileReplaceLinesWith(filename: str, list: dict[str, str], encoding="utf-8"):
# Your replacement dictionary here
}, encoding="utf-8-sig")

fileReplaceLinesWith("WingetUI.iss", {
fileReplaceLinesWith("UniGetUI.iss", {
"#define MyAppVersion": f" \"{versionName}\"\n",
"VersionInfoVersion=": f"{versionISS}\n",
}, encoding="utf-8-sig")
Expand Down
2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
[assembly: AssemblyCopyright("2024, Martí Climent")]
[assembly: AssemblyVersion("3.1.1.0")]
[assembly: AssemblyFileVersion("3.1.1.0")]
[assembly: AssemblyInformationalVersion("3.1.1-beta2")]
[assembly: AssemblyInformationalVersion("3.1.1-beta3")]
[assembly: SupportedOSPlatform("windows10.0.19041")]
6 changes: 3 additions & 3 deletions src/UniGetUI.Core.Data/CoreData.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Diagnostics;
using System.Diagnostics;
using System.Net;
using UniGetUI.Core.Logging;

Expand Down Expand Up @@ -34,8 +34,8 @@ private static int GetCodePage()
}
}

public const string VersionName = "3.1.1-beta2"; // Do not modify this line, use file scripts/apply_versions.py
public const double VersionNumber = 3.1092; // Do not modify this line, use file scripts/apply_versions.py
public const string VersionName = "3.1.1-beta3"; // Do not modify this line, use file scripts/apply_versions.py
public const double VersionNumber = 3.1093; // Do not modify this line, use file scripts/apply_versions.py

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

Expand Down
3 changes: 3 additions & 0 deletions src/UniGetUI/UniGetUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@
<ProjectReference Include="..\UniGetUI.PackageEngine.PackageManagerClasses\UniGetUI.PackageEngine.Classes.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="Assets\Symbols\Font\fonts\UniGetUI-Symbols.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\Utilities\delete_winget_databases.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down

0 comments on commit bb7dbf0

Please sign in to comment.