Skip to content

Commit

Permalink
name renamed v2.1
Browse files Browse the repository at this point in the history
download_ps4_game_update    >    ps4_pkg_update
  • Loading branch information
DanielSvoboda committed Jul 12, 2024
1 parent 86068f3 commit 2d85f2e
Show file tree
Hide file tree
Showing 9 changed files with 61 additions and 69 deletions.
4 changes: 2 additions & 2 deletions download ps4 game update console/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ static void Main(string[] args)
private static void ShowHelp()
{
#if WINDOWS
Console.WriteLine("Usage: download_ps4_game_update_console.exe -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>");
Console.WriteLine("Usage: ps4_pkg_update_console.exe -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>");
#else
Console.WriteLine("Usage: ./download_ps4_game_update_console -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>");
Console.WriteLine("Usage: ./ps4_pkg_update_console -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>");
#endif
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>download_ps4_game_update_console</RootNamespace>
<RootNamespace>ps4_pkg_update_console</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>download_ps4_game_update_console</AssemblyName>
<AssemblyName>ps4_pkg_update_console</AssemblyName>
<AssemblyVersion>2.1</AssemblyVersion>
<FileVersion>2.1</FileVersion>
<Version>2.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
Expand Down
4 changes: 2 additions & 2 deletions download ps4 game update/Form1.Designer.cs

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

2 changes: 1 addition & 1 deletion download ps4 game update/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public static byte[] StringToByteArray(string hex)

private void linkLabel_github_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/DanielSvoboda/download_ps4_game_update");
System.Diagnostics.Process.Start("https://github.com/DanielSvoboda/ps4_pkg_update");
}
}
}
8 changes: 4 additions & 4 deletions download ps4 game update/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// As informações gerais sobre um assembly são controladas por
// conjunto de atributos. Altere estes valores de atributo para modificar as informações
// associadas a um assembly.
[assembly: AssemblyTitle("download ps4 game update")]
[assembly: AssemblyTitle("ps4_pkg_update")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("download ps4 game update")]
[assembly: AssemblyProduct("ps4_pkg_update")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand All @@ -32,5 +32,5 @@
// É possível especificar todos os valores ou usar como padrão os Números de Build e da Revisão
// usando o "*" como mostrado abaixo:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
66 changes: 29 additions & 37 deletions download ps4 game update/Properties/Resources.Designer.cs

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

30 changes: 13 additions & 17 deletions download ps4 game update/Properties/Settings.Designer.cs

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

5 changes: 3 additions & 2 deletions download ps4 game update/download ps4 game update.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{ECB0A47A-287B-4178-8088-013420B478B3}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>download_ps4_game_update</RootNamespace>
<AssemblyName>download ps4 game update</AssemblyName>
<RootNamespace>ps4_pkg_update</RootNamespace>
<AssemblyName>ps4_pkg_update</AssemblyName>
<TargetFrameworkVersion>v4.8.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down Expand Up @@ -65,6 +65,7 @@
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
Expand Down
4 changes: 2 additions & 2 deletions download_ps4_game_update.py → ps4_pkg_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def main():

def show_help():
if os.name == 'nt': # Windows
print("Usage: download_ps4_game_update_console.exe -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>")
print("Usage: ps4_pkg_update_console.exe -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>")
else: # Linux
print("Usage: ./download_ps4_game_update_console -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>")
print("Usage: ./ps4_pkg_update_console -key <HMAC_SHA256_Patch_Pkg_URL_Key> -title <TitleId>")

def get_hash(game_id):
byte_key = string_to_byte_array(urlKey)
Expand Down

0 comments on commit 2d85f2e

Please sign in to comment.