├── .gitignore ├── LICENSE ├── README.md ├── SRTools.sln └── SRTools ├── App.xaml ├── App.xaml.cs ├── Assets ├── BadgeLogo.scale-100.png ├── BadgeLogo.scale-125.png ├── BadgeLogo.scale-150.png ├── BadgeLogo.scale-200.png ├── BadgeLogo.scale-400.png ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LockScreenLogo.scale-200.png ├── Logo.ico ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-lightunplated_targetsize-16.png ├── Square44x44Logo.altform-lightunplated_targetsize-24.png ├── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── Square44x44Logo.altform-lightunplated_targetsize-32.png ├── Square44x44Logo.altform-lightunplated_targetsize-48.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png └── Wide310x150Logo.scale-400.png ├── Depend ├── AppDataController.cs ├── CommonHelpers.cs ├── CreateShortcut.cs ├── DownloadHelpers.cs ├── ExceptionSave.cs ├── ExportSRGF.cs ├── GachaCommon.cs ├── GachaModel.cs ├── GachaRecords.cs ├── GameStartUtil.cs ├── GameUpdate.cs ├── GameUpdateModel.cs ├── GetGiteeLatest.cs ├── GetGithubLatest.cs ├── GetJSGLatest.cs ├── GetNetData.cs ├── GetNotify.cs ├── GetUpdate.cs ├── ImportSRGF.cs ├── InstallFont.cs ├── InstallerHelper.cs ├── Logging.cs ├── MainFrameController.cs ├── NativeMethods.cs ├── OGachaCommon.cs ├── ProcessRun.cs ├── Region.cs ├── SRGFCommon.cs ├── SharedDatas.cs ├── TerminalMode.cs ├── UrlHelper.cs └── WindowHelper.cs ├── Imgs ├── Don_Alipay.png ├── Don_Hand.gif ├── Don_Hand.png ├── Don_Icon.gif ├── Don_Wechat.png ├── FirstRun_Day.png ├── FirstRun_DayNight.png ├── FirstRun_Download.png ├── FirstRun_Next.png ├── FirstRun_Night.png ├── FirstRun_Question.png ├── FirstRun_Recover.png ├── FirstRun_Windows.png ├── JSG_Logo.png ├── Logo.png ├── Logo_2.jpg ├── Logo_Background.png ├── Logo_Gitee.jpg ├── Logo_Github.png └── Logo_JSG-R.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Properties └── launchSettings.json ├── SRTools.csproj ├── Views ├── AboutView.xaml ├── AboutView.xaml.cs ├── DonationView.xaml ├── DonationView.xaml.cs ├── FirstRunViews │ ├── FirstRunAnimation.xaml │ ├── FirstRunAnimation.xaml.cs │ ├── FirstRunExtra.xaml │ ├── FirstRunExtra.xaml.cs │ ├── FirstRunFinish.xaml │ ├── FirstRunFinish.xaml.cs │ ├── FirstRunGetDepend.xaml │ ├── FirstRunGetDepend.xaml.cs │ ├── FirstRunInit.xaml │ ├── FirstRunInit.xaml.cs │ ├── FirstRunSourceSelect.xaml │ ├── FirstRunSourceSelect.xaml.cs │ ├── FirstRunTheme.xaml │ ├── FirstRunTheme.xaml.cs │ └── order.md ├── FlarumView.xaml ├── FlarumView.xaml.cs ├── GachaViews │ ├── ScreenShotGacha.xaml │ ├── ScreenShotGacha.xaml.cs │ ├── TempGachaView.xaml │ └── TempGachaView.xaml.cs ├── MainView.xaml ├── MainView.xaml.cs ├── NotifyViews │ ├── BannerView.xaml │ ├── BannerView.xaml.cs │ ├── NotifyAnnounceView.xaml │ ├── NotifyAnnounceView.xaml.cs │ ├── NotifyMessageView.xaml │ ├── NotifyMessageView.xaml.cs │ ├── NotifyNotificationView.xaml │ └── NotifyNotificationView.xaml.cs ├── SGViews │ ├── AccountView.xaml │ ├── AccountView.xaml.cs │ ├── GraphicSettingView.xaml │ └── GraphicSettingView.xaml.cs ├── StartGameView.xaml ├── StartGameView.xaml.cs └── ToolViews │ ├── AccountStatusView.xaml │ ├── AccountStatusView.xaml.cs │ ├── GachaView.xaml │ └── GachaView.xaml.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/README.md -------------------------------------------------------------------------------- /SRTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools.sln -------------------------------------------------------------------------------- /SRTools/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/App.xaml -------------------------------------------------------------------------------- /SRTools/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/App.xaml.cs -------------------------------------------------------------------------------- /SRTools/Assets/BadgeLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/BadgeLogo.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/BadgeLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/BadgeLogo.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/BadgeLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/BadgeLogo.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/BadgeLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/BadgeLogo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/BadgeLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/BadgeLogo.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Logo.ico -------------------------------------------------------------------------------- /SRTools/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /SRTools/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /SRTools/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /SRTools/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /SRTools/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /SRTools/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /SRTools/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SRTools/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /SRTools/Depend/AppDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/AppDataController.cs -------------------------------------------------------------------------------- /SRTools/Depend/CommonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/CommonHelpers.cs -------------------------------------------------------------------------------- /SRTools/Depend/CreateShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/CreateShortcut.cs -------------------------------------------------------------------------------- /SRTools/Depend/DownloadHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/DownloadHelpers.cs -------------------------------------------------------------------------------- /SRTools/Depend/ExceptionSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/ExceptionSave.cs -------------------------------------------------------------------------------- /SRTools/Depend/ExportSRGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/ExportSRGF.cs -------------------------------------------------------------------------------- /SRTools/Depend/GachaCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GachaCommon.cs -------------------------------------------------------------------------------- /SRTools/Depend/GachaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GachaModel.cs -------------------------------------------------------------------------------- /SRTools/Depend/GachaRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GachaRecords.cs -------------------------------------------------------------------------------- /SRTools/Depend/GameStartUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GameStartUtil.cs -------------------------------------------------------------------------------- /SRTools/Depend/GameUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GameUpdate.cs -------------------------------------------------------------------------------- /SRTools/Depend/GameUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GameUpdateModel.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetGiteeLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetGiteeLatest.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetGithubLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetGithubLatest.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetJSGLatest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetJSGLatest.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetNetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetNetData.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetNotify.cs -------------------------------------------------------------------------------- /SRTools/Depend/GetUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/GetUpdate.cs -------------------------------------------------------------------------------- /SRTools/Depend/ImportSRGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/ImportSRGF.cs -------------------------------------------------------------------------------- /SRTools/Depend/InstallFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/InstallFont.cs -------------------------------------------------------------------------------- /SRTools/Depend/InstallerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/InstallerHelper.cs -------------------------------------------------------------------------------- /SRTools/Depend/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/Logging.cs -------------------------------------------------------------------------------- /SRTools/Depend/MainFrameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/MainFrameController.cs -------------------------------------------------------------------------------- /SRTools/Depend/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/NativeMethods.cs -------------------------------------------------------------------------------- /SRTools/Depend/OGachaCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/OGachaCommon.cs -------------------------------------------------------------------------------- /SRTools/Depend/ProcessRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/ProcessRun.cs -------------------------------------------------------------------------------- /SRTools/Depend/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/Region.cs -------------------------------------------------------------------------------- /SRTools/Depend/SRGFCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/SRGFCommon.cs -------------------------------------------------------------------------------- /SRTools/Depend/SharedDatas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/SharedDatas.cs -------------------------------------------------------------------------------- /SRTools/Depend/TerminalMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/TerminalMode.cs -------------------------------------------------------------------------------- /SRTools/Depend/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/UrlHelper.cs -------------------------------------------------------------------------------- /SRTools/Depend/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Depend/WindowHelper.cs -------------------------------------------------------------------------------- /SRTools/Imgs/Don_Alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Don_Alipay.png -------------------------------------------------------------------------------- /SRTools/Imgs/Don_Hand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Don_Hand.gif -------------------------------------------------------------------------------- /SRTools/Imgs/Don_Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Don_Hand.png -------------------------------------------------------------------------------- /SRTools/Imgs/Don_Icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Don_Icon.gif -------------------------------------------------------------------------------- /SRTools/Imgs/Don_Wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Don_Wechat.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Day.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_DayNight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_DayNight.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Download.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Next.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Night.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Question.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Recover.png -------------------------------------------------------------------------------- /SRTools/Imgs/FirstRun_Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/FirstRun_Windows.png -------------------------------------------------------------------------------- /SRTools/Imgs/JSG_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/JSG_Logo.png -------------------------------------------------------------------------------- /SRTools/Imgs/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo.png -------------------------------------------------------------------------------- /SRTools/Imgs/Logo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo_2.jpg -------------------------------------------------------------------------------- /SRTools/Imgs/Logo_Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo_Background.png -------------------------------------------------------------------------------- /SRTools/Imgs/Logo_Gitee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo_Gitee.jpg -------------------------------------------------------------------------------- /SRTools/Imgs/Logo_Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo_Github.png -------------------------------------------------------------------------------- /SRTools/Imgs/Logo_JSG-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Imgs/Logo_JSG-R.png -------------------------------------------------------------------------------- /SRTools/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/MainWindow.xaml -------------------------------------------------------------------------------- /SRTools/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SRTools/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Package.appxmanifest -------------------------------------------------------------------------------- /SRTools/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Properties/launchSettings.json -------------------------------------------------------------------------------- /SRTools/SRTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/SRTools.csproj -------------------------------------------------------------------------------- /SRTools/Views/AboutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/AboutView.xaml -------------------------------------------------------------------------------- /SRTools/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/AboutView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/DonationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/DonationView.xaml -------------------------------------------------------------------------------- /SRTools/Views/DonationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/DonationView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunAnimation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunAnimation.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunAnimation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunAnimation.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunExtra.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunExtra.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunExtra.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunExtra.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunFinish.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunFinish.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunFinish.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunFinish.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunGetDepend.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunGetDepend.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunGetDepend.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunGetDepend.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunInit.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunInit.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunInit.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunInit.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunSourceSelect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunSourceSelect.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunSourceSelect.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunSourceSelect.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunTheme.xaml -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/FirstRunTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FirstRunViews/FirstRunTheme.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/FirstRunViews/order.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SRTools/Views/FlarumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FlarumView.xaml -------------------------------------------------------------------------------- /SRTools/Views/FlarumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/FlarumView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/GachaViews/ScreenShotGacha.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/GachaViews/ScreenShotGacha.xaml -------------------------------------------------------------------------------- /SRTools/Views/GachaViews/ScreenShotGacha.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/GachaViews/ScreenShotGacha.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/GachaViews/TempGachaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/GachaViews/TempGachaView.xaml -------------------------------------------------------------------------------- /SRTools/Views/GachaViews/TempGachaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/GachaViews/TempGachaView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/MainView.xaml -------------------------------------------------------------------------------- /SRTools/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/BannerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/BannerView.xaml -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/BannerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/BannerView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyAnnounceView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyAnnounceView.xaml -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyAnnounceView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyAnnounceView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyMessageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyMessageView.xaml -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyMessageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyMessageView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyNotificationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyNotificationView.xaml -------------------------------------------------------------------------------- /SRTools/Views/NotifyViews/NotifyNotificationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/NotifyViews/NotifyNotificationView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/SGViews/AccountView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/SGViews/AccountView.xaml -------------------------------------------------------------------------------- /SRTools/Views/SGViews/AccountView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/SGViews/AccountView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/SGViews/GraphicSettingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/SGViews/GraphicSettingView.xaml -------------------------------------------------------------------------------- /SRTools/Views/SGViews/GraphicSettingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/SGViews/GraphicSettingView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/StartGameView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/StartGameView.xaml -------------------------------------------------------------------------------- /SRTools/Views/StartGameView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/StartGameView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/ToolViews/AccountStatusView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/ToolViews/AccountStatusView.xaml -------------------------------------------------------------------------------- /SRTools/Views/ToolViews/AccountStatusView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/ToolViews/AccountStatusView.xaml.cs -------------------------------------------------------------------------------- /SRTools/Views/ToolViews/GachaView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/ToolViews/GachaView.xaml -------------------------------------------------------------------------------- /SRTools/Views/ToolViews/GachaView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/Views/ToolViews/GachaView.xaml.cs -------------------------------------------------------------------------------- /SRTools/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamXi233/SRTools/HEAD/SRTools/app.manifest --------------------------------------------------------------------------------