Skip to content

Commit

Permalink
Merge branch 'experiment/self-bootstrap-wasdk'
Browse files Browse the repository at this point in the history
  • Loading branch information
U-C-S committed Nov 9, 2024
2 parents 9fe11d0 + 5aa2ab0 commit 3b26842
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Source/Hurl.BrowserSelector/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -11,6 +11,6 @@
[assembly: AssemblyCulture("")]

[assembly: ComVisible(false)]
[assembly: AssemblyVersion("0.9.0.23")]
[assembly: AssemblyFileVersion("0.9.0.23")]
[assembly: AssemblyVersion("0.9.1.24")]
[assembly: AssemblyFileVersion("0.9.1.24")]
[assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")]
2 changes: 1 addition & 1 deletion Source/Hurl.Library/Constants.cs
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ public class Constants
public const string NAME = "Hurl";
public const string DESCRIPTION = "Hurl - A tool to select the browsers dynamically";
public const string URLAssociations = "HandleURL3721";
public const string VERSION = "0.9.0";
public const string VERSION = "0.9.1";
public const string SOURCE_CODE_LINK= "https://github.com/U-C-S/Hurl";

public static string APP_PARENT_DIR = AppContext.BaseDirectory;
20 changes: 10 additions & 10 deletions Source/Hurl.Settings/Hurl.Settings.csproj
Original file line number Diff line number Diff line change
@@ -2,28 +2,28 @@
<PropertyGroup>
<Title>Hurl Settings</Title>
<AssemblyName>Hurl Settings</AssemblyName>
<Version>0.9.0</Version>
<FileVersion>0.9.0.23</FileVersion>
<Version>0.9.1</Version>
<FileVersion>0.9.1.24</FileVersion>
<ApplicationIcon>internet.ico</ApplicationIcon>
<Copyright>Copyright (c) 2024 Chanakya</Copyright>
<Product>Hurl</Product>
<Company>Chanakya</Company>
<Authors>U-C-S</Authors>
<PackageId>Hurl.Settings</PackageId>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<TargetPlatformMinVersion>10.0.22000.0</TargetPlatformMinVersion>
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
<RootNamespace>Hurl.Settings</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x64;ARM64</Platforms>
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) &gt;= 8">win-x64;win-arm64</RuntimeIdentifiers>
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) &gt;= 8">
win-x64;win-arm64</RuntimeIdentifiers>
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<Nullable>enable</Nullable>
<EnableMsixTooling>true</EnableMsixTooling>
<WindowsSdkPackageVersion>10.0.26100.53</WindowsSdkPackageVersion>
<SupportedOSPlatformVersion>10.0.22621.0</SupportedOSPlatformVersion>
<!-- <IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract> -->
<WindowsSdkPackageVersion>10.0.26100.53</WindowsSdkPackageVersion>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
</PropertyGroup>

<ItemGroup>
@@ -33,7 +33,7 @@
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" Version="8.1.240916" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240802000" GeneratePathProperty="true"/>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.241001000" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.1.6" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
<Manifest Include="$(ApplicationManifest)" />
@@ -64,4 +64,4 @@
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
</PropertyGroup>
</Project>
</Project>
2 changes: 1 addition & 1 deletion Source/Launcher/Cargo.lock

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

4 changes: 2 additions & 2 deletions Source/Launcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "Launcher"
description = "Hurl"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
build = "build.rs"

@@ -23,4 +23,4 @@ lto = true
ProductName = "Hurl"
LegalCopyright = "Copyright © 2024 Chanakya"
OriginalFilename = "Launcher.exe"
FileVersion = "0.9.0.23"
FileVersion = "0.9.1.24"
2 changes: 1 addition & 1 deletion Utils/installer.iss
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

#define MyAppName "Hurl"
#define NameSmall "hurl"
#define MyAppVersion "0.9.0.23"
#define MyAppVersion "0.9.1.24"
#define MyAppPublisher "U-C-S"
#define MyAppURL "https://github.com/U-C-S/Hurl"
#define ExeLauncher "Launcher.exe"

0 comments on commit 3b26842

Please sign in to comment.