Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
WiiVC Injector
Commits
f6d4c700
Unverified
Commit
f6d4c700
authored
Nov 15, 2021
by
piratesephiroth
Committed by
GitHub
Nov 15, 2021
Browse files
Merge pull request #5 from brandonrdnt/file-folder-select-improvements
File and folder browser dialog improvements
parents
3a037918
678a92b8
Changes
10
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
f6d4c700
TeconMoon's WiiVC Injector/bin/*
TeconMoon's WiiVC Injector/obj/*
.vs/*
\ No newline at end of file
.vs/*
/packages
TeconMoon's WiiVC Injector/App.config
View file @
f6d4c700
<?
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
=
"TeconMoon_s_WiiVC_Injector.Properties.Settings"
type
=
"System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
allowExeDefinition
=
"MachineToLocalUser"
requirePermission
=
"false"
/>
</
sectionGroup
>
</
configSections
>
<
startup
>
<
supportedRuntime
version
=
"v4.0"
sku
=
".NETFramework,Version=v4.6.1"
/>
</
startup
>
<
userSettings
>
<
TeconMoon_s_WiiVC_Injector
.
Properties
.
Settings
>
<
setting
name
=
"OutputPath"
serializeAs
=
"String"
>
<
value
/>
</
setting
>
<
setting
name
=
"GameFilePath"
serializeAs
=
"String"
>
<
value
/>
</
setting
>
</
TeconMoon_s_WiiVC_Injector
.
Properties
.
Settings
>
</
userSettings
>
</
configuration
>
TeconMoon's WiiVC Injector/Form1.Designer.cs
View file @
f6d4c700
...
...
@@ -128,7 +128,6 @@
this
.
OpenLogo
=
new
System
.
Windows
.
Forms
.
OpenFileDialog
();
this
.
OpenBootSound
=
new
System
.
Windows
.
Forms
.
OpenFileDialog
();
this
.
OpenMainDol
=
new
System
.
Windows
.
Forms
.
OpenFileDialog
();
this
.
OutputFolderSelect
=
new
System
.
Windows
.
Forms
.
FolderBrowserDialog
();
this
.
OpenGC2
=
new
System
.
Windows
.
Forms
.
OpenFileDialog
();
this
.
MainTableLayout
.
SuspendLayout
();
this
.
MainTabs
.
SuspendLayout
();
...
...
@@ -1290,7 +1289,6 @@
//
// WiiVC_Injector
//
string
versionNumber
=
System
.
Reflection
.
Assembly
.
GetExecutingAssembly
().
GetName
().
Version
.
ToString
();
this
.
AutoScaleDimensions
=
new
System
.
Drawing
.
SizeF
(
6F
,
13F
);
this
.
AutoScaleMode
=
System
.
Windows
.
Forms
.
AutoScaleMode
.
Font
;
this
.
ClientSize
=
new
System
.
Drawing
.
Size
(
485
,
427
);
...
...
@@ -1300,7 +1298,7 @@
this
.
Margin
=
new
System
.
Windows
.
Forms
.
Padding
(
4
);
this
.
MaximizeBox
=
false
;
this
.
Name
=
"WiiVC_Injector"
;
this
.
Text
=
$
"TeconMoon\'s WiiVC Injector - [
{
versionNumber
}
]"
;
this
.
Text
=
"TeconMoon\'s WiiVC Injector - [{
0
}]"
;
this
.
MainTableLayout
.
ResumeLayout
(
false
);
this
.
MainTableLayout
.
PerformLayout
();
this
.
MainTabs
.
ResumeLayout
(
false
);
...
...
@@ -1416,7 +1414,6 @@
private
System
.
Windows
.
Forms
.
ProgressBar
BuildProgress
;
private
System
.
Windows
.
Forms
.
Label
BuildStatus
;
private
System
.
Windows
.
Forms
.
Label
AdvanceCheck
;
private
System
.
Windows
.
Forms
.
FolderBrowserDialog
OutputFolderSelect
;
private
System
.
Windows
.
Forms
.
Button
SDCardStuff
;
private
System
.
Windows
.
Forms
.
Label
GC2SourceDirectory
;
private
System
.
Windows
.
Forms
.
Button
GC2SourceButton
;
...
...
TeconMoon's WiiVC Injector/Form1.cs
View file @
f6d4c700
...
...
@@ -16,7 +16,7 @@ using System.IO.Compression;
using
System.Diagnostics
;
using
Microsoft.VisualBasic.FileIO
;
using
System.Runtime.InteropServices
;
using
Microsoft.WindowsAPICodePack.Dialogs
;
namespace
TeconMoon_s_WiiVC_Injector
{
...
...
@@ -25,6 +25,7 @@ namespace TeconMoon_s_WiiVC_Injector
public
WiiVC_Injector
()
{
InitializeComponent
();
this
.
Text
=
string
.
Format
(
this
.
Text
,
System
.
Reflection
.
Assembly
.
GetExecutingAssembly
().
GetName
().
Version
.
ToString
());
//Check for if .Net v3.5 component is installed
CheckForNet35
();
//Delete Temporary Root Folder if it exists
...
...
@@ -116,6 +117,7 @@ namespace TeconMoon_s_WiiVC_Injector
string
TempLogoPath
=
Path
.
GetTempPath
()
+
"WiiVCInjector\\SOURCETEMP\\bootLogoTex.png"
;
string
TempSoundPath
=
Path
.
GetTempPath
()
+
"WiiVCInjector\\SOURCETEMP\\bootSound.wav"
;
string
OGfilepath
;
string
selectedOutputPath
;
//call options
public
void
LaunchProgram
()
...
...
@@ -1688,8 +1690,16 @@ namespace TeconMoon_s_WiiVC_Injector
}
}
}
var
outputFolderSelect
=
new
CommonOpenFileDialog
(
"Specify your output folder"
)
{
InitialDirectory
=
Properties
.
Settings
.
Default
.
OutputPath
,
IsFolderPicker
=
true
,
EnsurePathExists
=
true
};
//Specify Path Variables to be called later
if
(
O
utputFolderSelect
.
ShowDialog
()
==
DialogResult
.
Cancel
)
if
(
o
utputFolderSelect
.
ShowDialog
()
==
CommonFile
DialogResult
.
Cancel
)
{
MessageBox
.
Show
(
"Output folder selection has been cancelled, conversion will not continue."
,
"Cancelled"
...
...
@@ -1701,6 +1711,9 @@ namespace TeconMoon_s_WiiVC_Injector
goto
BuildProcessFin
;
}
BuildProgress
.
Value
=
2
;
selectedOutputPath
=
outputFolderSelect
.
FileName
;
Properties
.
Settings
.
Default
.
OutputPath
=
selectedOutputPath
;
Properties
.
Settings
.
Default
.
Save
();
//////////////////////////
//Download base files with JNUSTool, store them for future use
...
...
@@ -2184,7 +2197,7 @@ namespace TeconMoon_s_WiiVC_Injector
BuildStatus
.
Text
=
"Encrypting contents into installable WUP Package..."
;
BuildStatus
.
Refresh
();
Directory
.
SetCurrentDirectory
(
TempRootPath
);
string
outputPath
=
OutputFolderSelect
.
Selected
Path
+
"\\WUP-N-"
+
TitleIDText
+
"_"
+
PackedTitleIDLine
.
Text
;
string
outputPath
=
selectedOutput
Path
+
"\\WUP-N-"
+
TitleIDText
+
"_"
+
PackedTitleIDLine
.
Text
;
LauncherExeFile
=
TempToolsPath
+
"JAR\\NUSPacker.exe"
;
LauncherExeArgs
=
"-in BUILDDIR -out \""
+
outputPath
+
"\" -encryptKeyWith "
+
WiiUCommonKey
.
Text
;
LaunchProgram
();
...
...
TeconMoon's WiiVC Injector/Form1.resx
View file @
f6d4c700
...
...
@@ -126,39 +126,6 @@
<metadata
name=
"MainTabs.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SDCardStuff.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GCRetail.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"WiiNAND.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"WiiHomebrew.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"WiiRetail.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"MainTabs.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SourceFilesTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SourceFilesTab2.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"MetaTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"AdvancedTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BuildTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SourceFilesTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -207,51 +174,6 @@
<metadata
name=
"GameSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"RepoDownload.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"TitleIDLabel.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GameNameLabel.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"ITIDText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"IGNText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BannerPreviewText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BannerPreviewBox.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"IconPreviewText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"IconPreviewBox.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BannerSourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BannerSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"IconSourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"IconSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GameSourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GameSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SourceFilesTab2.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -300,51 +222,6 @@
<metadata
name=
"BootSoundPreviewButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GC2SourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GC2SourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"ToggleBootSoundLoop.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BootSoundPreviewText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"LogoPreviewText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"LogoPreviewBox.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"DrcPreviewText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"DrcPreviewBox.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BootSoundDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BootSoundButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"LogoSourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"LogoSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"DrcSourceDirectory.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"DrcSourceButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BootSoundPreviewButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"MetaTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -357,39 +234,6 @@
<metadata
name=
"AdvancedLabel5.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GamePadEmuLayout.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GamePadModeText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"PackedTitleIDLine.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"PackedTitleIDText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"EnablePackedLine2.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"PackedTitleLine2.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"PackedTitleLine1.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"PackedTitleText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"LRPatch.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"TutorialLink.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"AdvancedLabel5.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<data
name=
"AdvancedLabel5.Text"
xml:space=
"preserve"
>
<value>
*Wii Remote Emulation modes don't support infrared pointing or motion detection.
...
...
@@ -417,24 +261,6 @@
<metadata
name=
"VerWiiMote.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"ForceCC.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"NoGamePadEmu.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"CCEmu.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"ForceNoCC.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"HorWiiMote.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"VerWiiMote.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"GamePadModeText.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -471,18 +297,6 @@
<metadata
name=
"AncastKey.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SaveAncastKeyButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"sign_c2w_patcher_link.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"AdvancedLabel2.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"AncastKey.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BuildTab.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -528,48 +342,6 @@
<metadata
name=
"WiiUCommonKey.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"AdvanceCheck.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BuildStatus.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"BuildProgress.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SaveTitleKeyButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SaveCommonKeyButton.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"TheBigOneTM.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"KeysCheck.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"MetaCheck.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SourceCheck.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"RequirementsLabel.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"TitleKey.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"RHFKeyLabel.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"CommonLabel.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"WiiUCommonKey.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
<metadata
name=
"SDCardStuff.Locked"
type=
"System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
>
<value>
True
</value>
</metadata>
...
...
@@ -615,9 +387,6 @@
<metadata
name=
"OpenMainDol.TrayLocation"
type=
"System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
>
<value>
17, 56
</value>
</metadata>
<metadata
name=
"OutputFolderSelect.TrayLocation"
type=
"System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
>
<value>
145, 56
</value>
</metadata>
<metadata
name=
"OpenGC2.TrayLocation"
type=
"System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
>
<value>
302, 56
</value>
</metadata>
...
...
TeconMoon's WiiVC Injector/Properties/AssemblyInfo.cs
View file @
f6d4c700
...
...
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"3.0.1
2
.0"
)]
[
assembly
:
AssemblyFileVersion
(
"3.0.1
2
.0"
)]
[
assembly
:
AssemblyVersion
(
"3.0.1
3
.0"
)]
[
assembly
:
AssemblyFileVersion
(
"3.0.1
3
.0"
)]
TeconMoon's WiiVC Injector/Properties/Settings.Designer.cs
View file @
f6d4c700
...
...
@@ -12,7 +12,7 @@ namespace TeconMoon_s_WiiVC_Injector.Properties {
[
global
::
System
.
Runtime
.
CompilerServices
.
CompilerGeneratedAttribute
()]
[
global
::
System
.
CodeDom
.
Compiler
.
GeneratedCodeAttribute
(
"Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator"
,
"1
5.3
.0.0"
)]
[
global
::
System
.
CodeDom
.
Compiler
.
GeneratedCodeAttribute
(
"Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator"
,
"1
6.10
.0.0"
)]
internal
sealed
partial
class
Settings
:
global
::
System
.
Configuration
.
ApplicationSettingsBase
{
private
static
Settings
defaultInstance
=
((
Settings
)(
global
::
System
.
Configuration
.
ApplicationSettingsBase
.
Synchronized
(
new
Settings
())));
...
...
@@ -22,5 +22,29 @@ namespace TeconMoon_s_WiiVC_Injector.Properties {
return
defaultInstance
;
}
}
[
global
::
System
.
Configuration
.
UserScopedSettingAttribute
()]
[
global
::
System
.
Diagnostics
.
DebuggerNonUserCodeAttribute
()]
[
global
::
System
.
Configuration
.
DefaultSettingValueAttribute
(
""
)]
public
string
OutputPath
{
get
{
return
((
string
)(
this
[
"OutputPath"
]));
}
set
{
this
[
"OutputPath"
]
=
value
;
}
}
[
global
::
System
.
Configuration
.
UserScopedSettingAttribute
()]
[
global
::
System
.
Diagnostics
.
DebuggerNonUserCodeAttribute
()]
[
global
::
System
.
Configuration
.
DefaultSettingValueAttribute
(
""
)]
public
string
GameFilePath
{
get
{
return
((
string
)(
this
[
"GameFilePath"
]));
}
set
{
this
[
"GameFilePath"
]
=
value
;
}
}
}
}
TeconMoon's WiiVC Injector/Properties/Settings.settings
View file @
f6d4c700
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile
xmlns=
"http://schemas.microsoft.com/VisualStudio/2004/01/settings"
CurrentProfile=
"(Default)"
>
<Profiles>
<Profile
Name=
"(Default)"
/>
</Profiles>
<Settings
/>
</SettingsFile>
<SettingsFile
xmlns=
"http://schemas.microsoft.com/VisualStudio/2004/01/settings"
CurrentProfile=
"(Default)"
GeneratedClassNamespace=
"TeconMoon_s_WiiVC_Injector.Properties"
GeneratedClassName=
"Settings"
>
<Profiles
/>
<Settings>
<Setting
Name=
"OutputPath"
Type=
"System.String"
Scope=
"User"
>
<Value
Profile=
"(Default)"
/>
</Setting>
<Setting
Name=
"GameFilePath"
Type=
"System.String"
Scope=
"User"
>
<Value
Profile=
"(Default)"
/>
</Setting>
</Settings>
</SettingsFile>
\ No newline at end of file
TeconMoon's WiiVC Injector/TeconMoon's WiiVC Injector.csproj
View file @
f6d4c700
...
...
@@ -68,6 +68,15 @@
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"Microsoft.VisualBasic"
/>
<Reference
Include=
"Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Microsoft.WindowsAPICodePack-Core.1.1.0.2\lib\Microsoft.WindowsAPICodePack.dll
</HintPath>
</Reference>
<Reference
Include=
"Microsoft.WindowsAPICodePack.Shell, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib\Microsoft.WindowsAPICodePack.Shell.dll
</HintPath>
</Reference>
<Reference
Include=
"Microsoft.WindowsAPICodePack.ShellExtensions, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL"
>
<HintPath>
..\packages\Microsoft.WindowsAPICodePack-Shell.1.1.0.0\lib\Microsoft.WindowsAPICodePack.ShellExtensions.dll
</HintPath>
</Reference>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Core"
/>
<Reference
Include=
"System.IO.Compression"
/>
...
...
@@ -113,6 +122,7 @@
<DependentUpon>
Resources.resx
</DependentUpon>
<DesignTime>
True
</DesignTime>
</Compile>
<None
Include=
"packages.config"
/>
<None
Include=
"Properties\Settings.settings"
>
<Generator>
SettingsSingleFileGenerator
</Generator>
<LastGenOutput>
Settings.Designer.cs
</LastGenOutput>
...
...
TeconMoon's WiiVC Injector/packages.config
0 → 100644
View file @
f6d4c700
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
packages
>
<
package
id
=
"Microsoft.WindowsAPICodePack-Core"
version
=
"1.1.0.2"
targetFramework
=
"net461"
/>
<
package
id
=
"Microsoft.WindowsAPICodePack-Shell"
version
=
"1.1.0.0"
targetFramework
=
"net461"
/>
</
packages
>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment