├── .editorconfig ├── .gitattributes ├── .gitignore ├── 1080p-example.png ├── APACHE-2-LICENSE.txt ├── AdeptiScanner GI.sln ├── AdeptiScanner GI ├── AdeptiScanner GI.csproj ├── Artifact.cs ├── Character.cs ├── Database.cs ├── DpiIgnoringSlider.Designer.cs ├── DpiIgnoringSlider.cs ├── DpiIgnoringSlider.resx ├── EnkaApi.cs ├── EnkaTab.Designer.cs ├── EnkaTab.cs ├── EnkaTab.resx ├── ExportSettings.Designer.cs ├── ExportSettings.cs ├── ExportSettings.resx ├── FirstStart.Designer.cs ├── FirstStart.cs ├── FirstStart.resx ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── GameVisibilityHandler.cs ├── HotkeyEventArgs.cs ├── ImageProcessing.cs ├── KeyHandler.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ScannerFiles │ ├── ArtifactInfo.json │ ├── ArtifactInfo_readable.json │ └── tessdata │ │ └── genshin.traineddata ├── UpdatePrompt.Designer.cs ├── UpdatePrompt.cs ├── UpdatePrompt.resx ├── Weapon.cs └── app.manifest ├── Capture-example.png ├── Capture-length-example.png ├── NOTICE.txt ├── README.md ├── WeaponDataParser ├── Program.cs ├── ResourcePathsEXAMPLE.json └── WeaponDataParser.csproj └── scroll-example.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/.gitignore -------------------------------------------------------------------------------- /1080p-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/1080p-example.png -------------------------------------------------------------------------------- /APACHE-2-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/APACHE-2-LICENSE.txt -------------------------------------------------------------------------------- /AdeptiScanner GI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI.sln -------------------------------------------------------------------------------- /AdeptiScanner GI/AdeptiScanner GI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/AdeptiScanner GI.csproj -------------------------------------------------------------------------------- /AdeptiScanner GI/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Artifact.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Character.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Database.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/DpiIgnoringSlider.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/DpiIgnoringSlider.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/DpiIgnoringSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/DpiIgnoringSlider.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/DpiIgnoringSlider.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/DpiIgnoringSlider.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/EnkaApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/EnkaApi.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/EnkaTab.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/EnkaTab.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/EnkaTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/EnkaTab.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/EnkaTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/EnkaTab.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/ExportSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ExportSettings.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/ExportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ExportSettings.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/ExportSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ExportSettings.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/FirstStart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/FirstStart.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/FirstStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/FirstStart.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/FirstStart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/FirstStart.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Form1.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Form1.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Form1.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/GameVisibilityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/GameVisibilityHandler.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/HotkeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/HotkeyEventArgs.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/ImageProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ImageProcessing.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/KeyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/KeyHandler.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Program.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Properties/Resources.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Properties/Settings.settings -------------------------------------------------------------------------------- /AdeptiScanner GI/ScannerFiles/ArtifactInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ScannerFiles/ArtifactInfo.json -------------------------------------------------------------------------------- /AdeptiScanner GI/ScannerFiles/ArtifactInfo_readable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ScannerFiles/ArtifactInfo_readable.json -------------------------------------------------------------------------------- /AdeptiScanner GI/ScannerFiles/tessdata/genshin.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/ScannerFiles/tessdata/genshin.traineddata -------------------------------------------------------------------------------- /AdeptiScanner GI/UpdatePrompt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/UpdatePrompt.Designer.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/UpdatePrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/UpdatePrompt.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/UpdatePrompt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/UpdatePrompt.resx -------------------------------------------------------------------------------- /AdeptiScanner GI/Weapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/Weapon.cs -------------------------------------------------------------------------------- /AdeptiScanner GI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/AdeptiScanner GI/app.manifest -------------------------------------------------------------------------------- /Capture-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/Capture-example.png -------------------------------------------------------------------------------- /Capture-length-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/Capture-length-example.png -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/README.md -------------------------------------------------------------------------------- /WeaponDataParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/WeaponDataParser/Program.cs -------------------------------------------------------------------------------- /WeaponDataParser/ResourcePathsEXAMPLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/WeaponDataParser/ResourcePathsEXAMPLE.json -------------------------------------------------------------------------------- /WeaponDataParser/WeaponDataParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/WeaponDataParser/WeaponDataParser.csproj -------------------------------------------------------------------------------- /scroll-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D1firehail/AdeptiScanner-GI/HEAD/scroll-example.png --------------------------------------------------------------------------------