├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── WiiExplorer.sln └── WiiExplorer ├── Class └── AAF.cs ├── CommandLineFunction.cs ├── ExtensionData ├── ASH Encoded File.png ├── Binary AI Action.png ├── Binary AI Speed.png ├── Binary Action Sound.png ├── Binary Animation Table.png ├── Binary Bloom.png ├── Binary Camera Parameter.png ├── Binary Comma Seperated Values.png ├── Binary Controller Speaker Table.png ├── Binary Curve Keyframes.Dark.png ├── Binary Curve Keyframes.Light.png ├── Binary Depth Of Field.png ├── Binary Display List.png ├── Binary File.png ├── Binary Fog.png ├── Binary Font.png ├── Binary Layout.png ├── Binary Light Map.png ├── Binary Light.png ├── Binary Melody Table.png ├── Binary Melody.png ├── Binary Messages.png ├── Binary Mii Material.png ├── Binary Mii Shading.png ├── Binary Model Data.png ├── Binary Model.png ├── Binary Music Sequence.png ├── Binary Palette Keys.png ├── Binary Register Keys.png ├── Binary Remix Sequence.png ├── Binary Revolution Animation Sound Data.png ├── Binary Revolution Bitmap Font.png ├── Binary Revolution Control.png ├── Binary Revolution Effect Textures.png ├── Binary Revolution Effect.png ├── Binary Revolution Font.png ├── Binary Revolution Layout Animation.png ├── Binary Revolution Layout.png ├── Binary Revolution Palette.png ├── Binary Revolution Resources.png ├── Binary Revolution Sequence.png ├── Binary Revolution Sound Archive.png ├── Binary Revolution Texture.png ├── Binary Sound Collection.png ├── Binary Sound Table Names.png ├── Binary Sound Table.png ├── Binary Texture Image Environment.png ├── Binary Texture Image Material.png ├── Binary Texture Image.png ├── Binary Texture Keys.png ├── Binary Texture Pattern.png ├── Binary Visiblilty Animation.png ├── Binary Wave.png ├── Chord Information Table.png ├── Classic Model Data.png ├── Comma Seperated Values.png ├── Controller Speaker Wave.png ├── Data Table.png ├── ExtensionList.txt ├── INTERNAL_FolderClose.png ├── INTERNAL_FolderOpen.png ├── INTERNAL_FormatUnknown.png ├── Instrument Bank.png ├── Inverse Kinematics Parameter.png ├── JParticle Archive.png ├── Joint Photographic Experts Group.png ├── Kart Map.png ├── Kart Minigame.png ├── Kart Rank Time.png ├── Kart Rumble.png ├── Kart WiFi Banner.png ├── Lempel-Ziv Encoded File.png ├── Lempel-Ziv-7 Encoded File.png ├── Message Binary Flows.png ├── Message Binary Table.png ├── Misc Data.png ├── Musical Instrument Digital Interface.png ├── Nintendo GameCube Collision.png ├── Nintendo KCollision.png ├── Plain Text.png ├── Pulse Code Modulation.png ├── Resource Archive.png ├── Revolution Kart Competition.png ├── Revolution Kart Ghost Data.Dark.png ├── Revolution Kart Ghost Data.Light.png ├── SEL.png ├── SMG Binary Camera Animation.png ├── SMG Binary Camera Data.png ├── SMG Collision Codes.png ├── SMG Compressed Binary Music Sequence.png ├── SMG Ghost Data.Dark.png ├── SMG Ghost Data.Light.png ├── SMG Replay Data.png ├── Single JParticle.png ├── Texture Pallete.png ├── TrueType Collection.png ├── Wave System.png └── Yaz0 Encoded File.png ├── Program.cs ├── ProgramUpdateHandler.cs ├── Properties └── launchSettings.json ├── Settings.cs ├── UI ├── DarkModeForms │ ├── ColorComboBox.cs │ ├── ColorNumericUpDown.cs │ ├── ColorTextBox.cs │ ├── DarkModeColor.cs │ └── ToolStripColorComboBox.cs ├── FilePropertyRARCForm.Designer.cs ├── FilePropertyRARCForm.cs ├── FilePropertyRARCForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NewArchiveForm.Designer.cs ├── NewArchiveForm.cs ├── NewArchiveForm.resx ├── RenameForm.Designer.cs ├── RenameForm.cs └── RenameForm.resx ├── UpdateAlert.txt ├── Utility.cs ├── WiiExplorer.csproj └── WiiExplorer.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/README.md -------------------------------------------------------------------------------- /WiiExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer.sln -------------------------------------------------------------------------------- /WiiExplorer/Class/AAF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/Class/AAF.cs -------------------------------------------------------------------------------- /WiiExplorer/CommandLineFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/CommandLineFunction.cs -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/ASH Encoded File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/ASH Encoded File.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary AI Action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary AI Action.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary AI Speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary AI Speed.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Action Sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Action Sound.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Animation Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Animation Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Bloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Bloom.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Camera Parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Camera Parameter.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Comma Seperated Values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Comma Seperated Values.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Controller Speaker Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Controller Speaker Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Curve Keyframes.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Curve Keyframes.Dark.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Curve Keyframes.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Curve Keyframes.Light.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Depth Of Field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Depth Of Field.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Display List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Display List.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary File.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Fog.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Font.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Layout.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Light Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Light Map.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Light.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Melody Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Melody Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Melody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Melody.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Messages.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Mii Material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Mii Material.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Mii Shading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Mii Shading.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Model Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Model Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Model.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Music Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Music Sequence.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Palette Keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Palette Keys.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Register Keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Register Keys.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Remix Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Remix Sequence.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Animation Sound Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Animation Sound Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Bitmap Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Bitmap Font.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Control.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Effect Textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Effect Textures.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Effect.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Font.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Layout Animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Layout Animation.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Layout.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Palette.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Resources.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Sequence.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Sound Archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Sound Archive.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Revolution Texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Revolution Texture.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Sound Collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Sound Collection.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Sound Table Names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Sound Table Names.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Sound Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Sound Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Texture Image Environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Texture Image Environment.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Texture Image Material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Texture Image Material.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Texture Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Texture Image.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Texture Keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Texture Keys.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Texture Pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Texture Pattern.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Visiblilty Animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Visiblilty Animation.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Binary Wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Binary Wave.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Chord Information Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Chord Information Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Classic Model Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Classic Model Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Comma Seperated Values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Comma Seperated Values.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Controller Speaker Wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Controller Speaker Wave.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Data Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Data Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/ExtensionList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/ExtensionList.txt -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/INTERNAL_FolderClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/INTERNAL_FolderClose.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/INTERNAL_FolderOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/INTERNAL_FolderOpen.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/INTERNAL_FormatUnknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/INTERNAL_FormatUnknown.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Instrument Bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Instrument Bank.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Inverse Kinematics Parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Inverse Kinematics Parameter.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/JParticle Archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/JParticle Archive.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Joint Photographic Experts Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Joint Photographic Experts Group.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Kart Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Kart Map.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Kart Minigame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Kart Minigame.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Kart Rank Time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Kart Rank Time.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Kart Rumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Kart Rumble.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Kart WiFi Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Kart WiFi Banner.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Lempel-Ziv Encoded File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Lempel-Ziv Encoded File.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Lempel-Ziv-7 Encoded File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Lempel-Ziv-7 Encoded File.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Message Binary Flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Message Binary Flows.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Message Binary Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Message Binary Table.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Misc Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Misc Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Musical Instrument Digital Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Musical Instrument Digital Interface.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Nintendo GameCube Collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Nintendo GameCube Collision.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Nintendo KCollision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Nintendo KCollision.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Plain Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Plain Text.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Pulse Code Modulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Pulse Code Modulation.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Resource Archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Resource Archive.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Revolution Kart Competition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Revolution Kart Competition.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Revolution Kart Ghost Data.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Revolution Kart Ghost Data.Dark.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Revolution Kart Ghost Data.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Revolution Kart Ghost Data.Light.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SEL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SEL.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Binary Camera Animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Binary Camera Animation.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Binary Camera Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Binary Camera Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Collision Codes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Collision Codes.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Compressed Binary Music Sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Compressed Binary Music Sequence.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Ghost Data.Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Ghost Data.Dark.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Ghost Data.Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Ghost Data.Light.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/SMG Replay Data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/SMG Replay Data.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Single JParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Single JParticle.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Texture Pallete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Texture Pallete.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/TrueType Collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/TrueType Collection.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Wave System.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Wave System.png -------------------------------------------------------------------------------- /WiiExplorer/ExtensionData/Yaz0 Encoded File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ExtensionData/Yaz0 Encoded File.png -------------------------------------------------------------------------------- /WiiExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/Program.cs -------------------------------------------------------------------------------- /WiiExplorer/ProgramUpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/ProgramUpdateHandler.cs -------------------------------------------------------------------------------- /WiiExplorer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/Properties/launchSettings.json -------------------------------------------------------------------------------- /WiiExplorer/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/Settings.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/DarkModeForms/ColorComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/DarkModeForms/ColorComboBox.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/DarkModeForms/ColorNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/DarkModeForms/ColorNumericUpDown.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/DarkModeForms/ColorTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/DarkModeForms/ColorTextBox.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/DarkModeForms/DarkModeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/DarkModeForms/DarkModeColor.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/DarkModeForms/ToolStripColorComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/DarkModeForms/ToolStripColorComboBox.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/FilePropertyRARCForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/FilePropertyRARCForm.Designer.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/FilePropertyRARCForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/FilePropertyRARCForm.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/FilePropertyRARCForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/FilePropertyRARCForm.resx -------------------------------------------------------------------------------- /WiiExplorer/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/MainForm.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/MainForm.resx -------------------------------------------------------------------------------- /WiiExplorer/UI/NewArchiveForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/NewArchiveForm.Designer.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/NewArchiveForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/NewArchiveForm.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/NewArchiveForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/NewArchiveForm.resx -------------------------------------------------------------------------------- /WiiExplorer/UI/RenameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/RenameForm.Designer.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/RenameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/RenameForm.cs -------------------------------------------------------------------------------- /WiiExplorer/UI/RenameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/UI/RenameForm.resx -------------------------------------------------------------------------------- /WiiExplorer/UpdateAlert.txt: -------------------------------------------------------------------------------- 1 | 1.6.0.0 2 | 3 | #Required 4 | #Notes 5 | - Update to .NET 8.0 -------------------------------------------------------------------------------- /WiiExplorer/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/Utility.cs -------------------------------------------------------------------------------- /WiiExplorer/WiiExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/WiiExplorer.csproj -------------------------------------------------------------------------------- /WiiExplorer/WiiExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperHackio/WiiExplorer/HEAD/WiiExplorer/WiiExplorer.ico --------------------------------------------------------------------------------