Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazky committed Oct 17, 2022
1 parent cb40a9a commit ccb5e9e
Show file tree
Hide file tree
Showing 2,756 changed files with 2,593,903 additions and 0 deletions.
51 changes: 51 additions & 0 deletions Hakkuraifu-Repacker.sln
@@ -0,0 +1,51 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32819.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "Hakkuraifu-Repacker", "Hakkuraifu-Repacker\Hakkuraifu-Repacker.vbproj", "{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ModerInstaller", "ModernInstaller\ModerInstaller\ModerInstaller.vbproj", "{FABC4222-5F0D-4876-8F06-443E76A4638A}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "SimpleInstaller", "SimpleInstaller\SimpleInstaller.vbproj", "{FE2FD1C9-4678-436B-B478-8413131CEE67}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Debug|x64.ActiveCfg = Debug|x64
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Debug|x64.Build.0 = Debug|x64
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Release|Any CPU.Build.0 = Release|Any CPU
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Release|x64.ActiveCfg = Release|x64
{1220EEBB-6E96-4211-BB0B-A33CBAC8489C}.Release|x64.Build.0 = Release|x64
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Debug|x64.ActiveCfg = Debug|x64
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Debug|x64.Build.0 = Debug|x64
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Release|Any CPU.Build.0 = Release|Any CPU
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Release|x64.ActiveCfg = Release|x64
{FABC4222-5F0D-4876-8F06-443E76A4638A}.Release|x64.Build.0 = Release|x64
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Debug|x64.ActiveCfg = Debug|x64
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Debug|x64.Build.0 = Debug|x64
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Release|Any CPU.Build.0 = Release|Any CPU
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Release|x64.ActiveCfg = Release|x64
{FE2FD1C9-4678-436B-B478-8413131CEE67}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {35F58DE8-5F82-496D-8C28-4E5F19EAE4C6}
EndGlobalSection
EndGlobal
21 changes: 21 additions & 0 deletions Hakkuraifu-Repacker/App.config
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Hakkuraifu_Repacker.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<userSettings>
<Hakkuraifu_Repacker.My.MySettings>
<setting name="Compreesion" serializeAs="String">
<value>ZSTD (Recommended)</value>
</setting>
<setting name="RF" serializeAs="String">
<value />
</setting>
<setting name="DarkMode" serializeAs="String">
<value>False</value>
</setting>
</Hakkuraifu_Repacker.My.MySettings>
</userSettings>
</configuration>
29 changes: 29 additions & 0 deletions Hakkuraifu-Repacker/ApplicationEvents.vb
@@ -0,0 +1,29 @@
Imports Microsoft.VisualBasic.ApplicationServices

Namespace My
' The following events are available for MyApplication:
' Startup: Raised when the application starts, before the startup form is created.
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally.
' UnhandledException: Raised if the application encounters an unhandled exception.
' StartupNextInstance: Raised when launching a single-instance application and the application is already active.
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected.

' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application.

' Example:
' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults
'
' ' Setting the application-wide default Font:
' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular)
'
' ' Setting the HighDpiMode for the Application:
' e.HighDpiMode = HighDpiMode.PerMonitorV2
'
' ' If a splash dialog is used, this sets the minimum display time:
' e.MinimumSplashScreenDisplayTime = 4000
' End Sub

Partial Friend Class MyApplication

End Class
End Namespace

0 comments on commit ccb5e9e

Please sign in to comment.