├── .gitattributes ├── .gitignore ├── LICENSE ├── NX-GIC.sln ├── NX-GIC ├── About.Designer.cs ├── About.cs ├── About.resx ├── AddResize.Designer.cs ├── AddResize.cs ├── AddResize.resx ├── App.config ├── CSVList.Designer.cs ├── CSVList.cs ├── CSVList.resx ├── GetURL.Designer.cs ├── GetURL.cs ├── GetURL.resx ├── Images │ ├── Default.jpg │ ├── Horizontal.jpg │ └── Vertical.jpg ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── MediaDevices.chm ├── MediaDevicesLicense.txt ├── NX-GIC.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── About.bmp │ ├── About.png │ ├── ZoomIn.png │ ├── ZoomOut.png │ ├── icon-add.png │ ├── icon-all.png │ ├── icon-auto.png │ ├── icon-csv.png │ ├── icon-gallery.png │ ├── icon-scan.png │ ├── icon-transfer.png │ ├── icon.bmp │ ├── image-file.png │ ├── nxtld-icon.jpg │ ├── plus.png │ ├── remove.png │ ├── switch-cartridge-1698286-1456469.ico │ └── vertical-bg.png ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── TitleIDSelect.Designer.cs ├── TitleIDSelect.cs ├── TitleIDSelect.resx ├── Transfer.Designer.cs ├── Transfer.cs ├── Transfer.resx ├── packages.config └── switch-cartridge-1698286-1456469.ico └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/LICENSE -------------------------------------------------------------------------------- /NX-GIC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC.sln -------------------------------------------------------------------------------- /NX-GIC/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/About.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/About.cs -------------------------------------------------------------------------------- /NX-GIC/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/About.resx -------------------------------------------------------------------------------- /NX-GIC/AddResize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/AddResize.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/AddResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/AddResize.cs -------------------------------------------------------------------------------- /NX-GIC/AddResize.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/AddResize.resx -------------------------------------------------------------------------------- /NX-GIC/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/App.config -------------------------------------------------------------------------------- /NX-GIC/CSVList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/CSVList.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/CSVList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/CSVList.cs -------------------------------------------------------------------------------- /NX-GIC/CSVList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/CSVList.resx -------------------------------------------------------------------------------- /NX-GIC/GetURL.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/GetURL.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/GetURL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/GetURL.cs -------------------------------------------------------------------------------- /NX-GIC/GetURL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/GetURL.resx -------------------------------------------------------------------------------- /NX-GIC/Images/Default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Images/Default.jpg -------------------------------------------------------------------------------- /NX-GIC/Images/Horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Images/Horizontal.jpg -------------------------------------------------------------------------------- /NX-GIC/Images/Vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Images/Vertical.jpg -------------------------------------------------------------------------------- /NX-GIC/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Main.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Main.cs -------------------------------------------------------------------------------- /NX-GIC/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Main.resx -------------------------------------------------------------------------------- /NX-GIC/MediaDevices.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/MediaDevices.chm -------------------------------------------------------------------------------- /NX-GIC/MediaDevicesLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/MediaDevicesLicense.txt -------------------------------------------------------------------------------- /NX-GIC/NX-GIC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/NX-GIC.csproj -------------------------------------------------------------------------------- /NX-GIC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Program.cs -------------------------------------------------------------------------------- /NX-GIC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NX-GIC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Properties/Resources.resx -------------------------------------------------------------------------------- /NX-GIC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Properties/Settings.settings -------------------------------------------------------------------------------- /NX-GIC/Resources/About.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/About.bmp -------------------------------------------------------------------------------- /NX-GIC/Resources/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/About.png -------------------------------------------------------------------------------- /NX-GIC/Resources/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/ZoomIn.png -------------------------------------------------------------------------------- /NX-GIC/Resources/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/ZoomOut.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-add.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-all.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-auto.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-csv.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-gallery.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-scan.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon-transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon-transfer.png -------------------------------------------------------------------------------- /NX-GIC/Resources/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/icon.bmp -------------------------------------------------------------------------------- /NX-GIC/Resources/image-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/image-file.png -------------------------------------------------------------------------------- /NX-GIC/Resources/nxtld-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/nxtld-icon.jpg -------------------------------------------------------------------------------- /NX-GIC/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/plus.png -------------------------------------------------------------------------------- /NX-GIC/Resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/remove.png -------------------------------------------------------------------------------- /NX-GIC/Resources/switch-cartridge-1698286-1456469.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/switch-cartridge-1698286-1456469.ico -------------------------------------------------------------------------------- /NX-GIC/Resources/vertical-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Resources/vertical-bg.png -------------------------------------------------------------------------------- /NX-GIC/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Settings.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Settings.cs -------------------------------------------------------------------------------- /NX-GIC/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Settings.resx -------------------------------------------------------------------------------- /NX-GIC/TitleIDSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/TitleIDSelect.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/TitleIDSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/TitleIDSelect.cs -------------------------------------------------------------------------------- /NX-GIC/TitleIDSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/TitleIDSelect.resx -------------------------------------------------------------------------------- /NX-GIC/Transfer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Transfer.Designer.cs -------------------------------------------------------------------------------- /NX-GIC/Transfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Transfer.cs -------------------------------------------------------------------------------- /NX-GIC/Transfer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/Transfer.resx -------------------------------------------------------------------------------- /NX-GIC/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/packages.config -------------------------------------------------------------------------------- /NX-GIC/switch-cartridge-1698286-1456469.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/NX-GIC/switch-cartridge-1698286-1456469.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotshotz79/NX-Game-Icon-Customizer/HEAD/README.md --------------------------------------------------------------------------------