├── .gitattributes ├── .gitignore ├── Document ├── CustomCrawler.md ├── Development.md ├── Embedding.md ├── General.md └── Images │ ├── cc-1.PNG │ └── example.gif ├── Koromo Copy.sln ├── Koromo_Copy.App ├── Koromo_Copy.App.Android │ ├── AdjustableMasterDetailRenderer.cs │ ├── Assets │ │ ├── AboutAssets.txt │ │ ├── materialdesignicons-webfont.eot │ │ ├── materialdesignicons-webfont.ttf │ │ ├── materialdesignicons-webfont.woff │ │ ├── materialdesignicons-webfont.woff2 │ │ └── youtube_dl │ ├── BlurredImageRenderer.cs │ ├── DroidCommonAPI.cs │ ├── DropShadow.cs │ ├── Koromo_Copy.App.Android.csproj │ ├── MainActivity.cs │ ├── NoUnderlineSearchBarRenderer.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── YoutubeDL.cs ├── Koromo_Copy.App.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Koromo_Copy.App.iOS.csproj │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard └── Koromo_Copy.App │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── BlurredImage.cs │ ├── CommonAPI.cs │ ├── DataBase │ └── DownloadDBManager.cs │ ├── DownloadElement.xaml │ ├── DownloadElement.xaml.cs │ ├── DownloadInfoPage.xaml │ ├── DownloadInfoPage.xaml.cs │ ├── DownloadPage.xaml │ ├── DownloadPage.xaml.cs │ ├── DropShadow.cs │ ├── IconPack.cs │ ├── Koromo_Copy.App.csproj │ ├── Lang │ ├── Lang.en.resx │ ├── Lang.jp.resx │ └── Lang.kr.resx │ ├── LogPage.xaml │ ├── LogPage.xaml.cs │ ├── MainMenuPage.xaml │ ├── MainMenuPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── MainMenuItem.cs │ ├── NoUnderlineSearchBar.cs │ ├── PinchToZoomContainer.cs │ ├── PixivLoginPage.xaml │ ├── PixivLoginPage.xaml.cs │ ├── SearchPage.xaml │ ├── SearchPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── TestPage.xaml │ ├── TestPage.xaml.cs │ └── Viewer │ ├── ScrollViewer.xaml │ ├── ScrollViewer.xaml.cs │ ├── SubdirSelector.xaml │ └── SubdirSelector.xaml.cs ├── Koromo_Copy.Bot ├── Koromo_Copy.Bot.csproj ├── Program.cs └── Runnable.cs ├── Koromo_Copy.Console ├── Component │ └── NetConsole.cs ├── Dialog.cs ├── Koromo_Copy.Console.csproj ├── Program.cs ├── Progress.cs ├── Properties │ └── launchSettings.json ├── Runnable.cs ├── build-debug.bat └── build-release.bat ├── Koromo_Copy.Framework ├── AppProvider.cs ├── CL │ ├── CommandLine.cs │ └── IConsole.cs ├── Cache │ ├── CacheManager.cs │ └── ProgramLock.cs ├── Compiler │ ├── CodeGen │ │ ├── LPBasicBlock.cs │ │ ├── LPBuilder.cs │ │ ├── LPConstant.cs │ │ ├── LPDebugInfo.cs │ │ ├── LPExceptions.cs │ │ ├── LPFunction.cs │ │ ├── LPModule.cs │ │ ├── LPOperator.cs │ │ ├── LPTest.cs │ │ ├── LPType.cs │ │ └── LPValue.cs │ ├── CompileHelper.cs │ ├── JS │ │ ├── JSParser.cs │ │ ├── JSParserGenerator.cs │ │ └── JSScannerGenerator.cs │ ├── ParserGenerator.cs │ ├── PreProcessor.cs │ ├── ScannerGenerator.cs │ └── Simple │ │ └── Calculator.cs ├── Component │ └── Hitomi │ │ ├── HitomiData.cs │ │ ├── HitomiDataAnalysis.cs │ │ ├── HitomiDataModel.cs │ │ ├── HitomiDataQuery.cs │ │ └── HitomiDataSearch.cs ├── Crypto │ ├── AESHelper.cs │ ├── Hash.cs │ ├── RSAHelper.cs │ └── RSAKeyExtensions.cs ├── DataBase │ ├── ClassTree │ │ ├── ClassTree.cs │ │ └── ClassTreeModel.cs │ └── Index │ │ └── IndexManager.cs ├── Externals.cs ├── Extractor │ ├── Common.cs │ ├── DCInsideExtractor.cs │ ├── DanbooruExtractor.cs │ ├── EHentaiExtractor.cs │ ├── ExHentaiExtractor.cs │ ├── FunbeExtractor.cs │ ├── GelbooruExtractor.cs │ ├── HitomiExtractor.cs │ ├── HiyobiExtractor.cs │ ├── ImgurExtractor.cs │ ├── InstagramExtractor.cs │ ├── JmanaExtractor.cs │ ├── ManamoaExtractor.cs │ ├── NaverExtractor.cs │ ├── PixivExtractor.cs │ ├── Scrap │ │ ├── AttrangsExtractor.cs │ │ └── HaneulHaneulExtractor.cs │ └── TwitterExtractor.cs ├── Html │ ├── HtmlToolkit.cs │ └── HtmlTree.cs ├── Koromo_Copy.Framework.csproj ├── Log │ └── Logs.cs ├── Network │ ├── NetCommon.cs │ ├── NetDownloader.cs │ ├── NetField.cs │ ├── NetPriority.cs │ ├── NetTask.cs │ ├── NetTools.cs │ ├── ProxyList.cs │ └── Scheduler.cs ├── Postprocessor │ ├── FFmpegPostprocessor.cs │ ├── IPostprocessor.cs │ ├── InfodataPostprocessor.cs │ ├── M3u8Postprocessor.cs │ ├── PostprocessorScheduler.cs │ ├── UgoiraPostprocessor.cs │ └── YoutubeDLPostprocessor.cs ├── Setting │ ├── AppSettings.cs │ └── Settings.cs ├── Utils │ ├── Extends.cs │ ├── Heap.cs │ ├── ILazy.cs │ └── Strings.cs └── Version.cs ├── Koromo_Copy.Server ├── UI │ └── index.html ├── index.js └── package.json ├── Koromo_Copy.Tool.CustomCrawler ├── App.config ├── App.xaml ├── App.xaml.cs ├── CustomCrawler.xaml ├── CustomCrawler.xaml.cs ├── CustomCrawlerCAL.xaml ├── CustomCrawlerCAL.xaml.cs ├── CustomCrawlerDataGridViewModel.cs ├── CustomCrawlerImage.xaml ├── CustomCrawlerImage.xaml.cs ├── CustomCrawlerTree.xaml ├── CustomCrawlerTree.xaml.cs ├── DataGridSorter.cs ├── Koromo_Copy.Tool.CustomCrawler.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SeleniumWrapper.cs └── packages.config ├── Koromo_Copy.UI.Desktop ├── App.config ├── App.xaml ├── App.xaml.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Koromo_Copy.UI.Desktop.csproj ├── MLib │ ├── AvalonDock_Dark_LightBrushs.xaml │ └── MWindowLib_DarkLightBrushs.xaml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Document/CustomCrawler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/CustomCrawler.md -------------------------------------------------------------------------------- /Document/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/Development.md -------------------------------------------------------------------------------- /Document/Embedding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/Embedding.md -------------------------------------------------------------------------------- /Document/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/General.md -------------------------------------------------------------------------------- /Document/Images/cc-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/Images/cc-1.PNG -------------------------------------------------------------------------------- /Document/Images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Document/Images/example.gif -------------------------------------------------------------------------------- /Koromo Copy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo Copy.sln -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/AdjustableMasterDetailRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/AdjustableMasterDetailRenderer.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Assets/youtube_dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Assets/youtube_dl -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/BlurredImageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/BlurredImageRenderer.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/DroidCommonAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/DroidCommonAPI.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/DropShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/DropShadow.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Koromo_Copy.App.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Koromo_Copy.App.Android.csproj -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/MainActivity.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/NoUnderlineSearchBarRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/NoUnderlineSearchBarRenderer.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.Android/YoutubeDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.Android/YoutubeDL.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Info.plist -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Koromo_Copy.App.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Koromo_Copy.App.iOS.csproj -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Main.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/AboutPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/App.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/App.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/AssemblyInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/BlurredImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/BlurredImage.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/CommonAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/CommonAPI.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DataBase/DownloadDBManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DataBase/DownloadDBManager.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadElement.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadElement.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadElement.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadElement.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadInfoPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadInfoPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DownloadPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/DropShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/DropShadow.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/IconPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/IconPack.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Koromo_Copy.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Koromo_Copy.App.csproj -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.en.resx -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.jp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.jp.resx -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.kr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Lang/Lang.kr.resx -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/LogPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/LogPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/LogPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/LogPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/MainMenuPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/MainMenuPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/MainMenuPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/MainMenuPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/MainPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/MainPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Models/MainMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Models/MainMenuItem.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/NoUnderlineSearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/NoUnderlineSearchBar.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/PinchToZoomContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/PinchToZoomContainer.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/PixivLoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/PixivLoginPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/PixivLoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/PixivLoginPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/SearchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/SearchPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/SearchPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/SearchPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/SettingsPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/TestPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/TestPage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/TestPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/TestPage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Viewer/ScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Viewer/ScrollViewer.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Viewer/ScrollViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Viewer/ScrollViewer.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Viewer/SubdirSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Viewer/SubdirSelector.xaml -------------------------------------------------------------------------------- /Koromo_Copy.App/Koromo_Copy.App/Viewer/SubdirSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.App/Koromo_Copy.App/Viewer/SubdirSelector.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Bot/Koromo_Copy.Bot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Bot/Koromo_Copy.Bot.csproj -------------------------------------------------------------------------------- /Koromo_Copy.Bot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Bot/Program.cs -------------------------------------------------------------------------------- /Koromo_Copy.Bot/Runnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Bot/Runnable.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/Component/NetConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Component/NetConsole.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Dialog.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/Koromo_Copy.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Koromo_Copy.Console.csproj -------------------------------------------------------------------------------- /Koromo_Copy.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Program.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Progress.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Properties/launchSettings.json -------------------------------------------------------------------------------- /Koromo_Copy.Console/Runnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Console/Runnable.cs -------------------------------------------------------------------------------- /Koromo_Copy.Console/build-debug.bat: -------------------------------------------------------------------------------- 1 | dotnet publish -c Debug -r win10-x64 -------------------------------------------------------------------------------- /Koromo_Copy.Console/build-release.bat: -------------------------------------------------------------------------------- 1 | dotnet publish -c Release -r win10-x64 -------------------------------------------------------------------------------- /Koromo_Copy.Framework/AppProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/AppProvider.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/CL/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/CL/CommandLine.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/CL/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/CL/IConsole.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Cache/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Cache/CacheManager.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Cache/ProgramLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Cache/ProgramLock.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPBasicBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPBasicBlock.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPBuilder.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPConstant.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPDebugInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPExceptions.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPFunction.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPModule.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPOperator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPTest.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPType.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CodeGen/LPValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CodeGen/LPValue.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/CompileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/CompileHelper.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/JS/JSParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/JS/JSParser.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/JS/JSParserGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/JS/JSParserGenerator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/JS/JSScannerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/JS/JSScannerGenerator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/ParserGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/ParserGenerator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/PreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/PreProcessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/ScannerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/ScannerGenerator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Compiler/Simple/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Compiler/Simple/Calculator.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Component/Hitomi/HitomiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Component/Hitomi/HitomiData.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Component/Hitomi/HitomiDataAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Component/Hitomi/HitomiDataAnalysis.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Component/Hitomi/HitomiDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Component/Hitomi/HitomiDataModel.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Component/Hitomi/HitomiDataQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Component/Hitomi/HitomiDataQuery.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Component/Hitomi/HitomiDataSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Component/Hitomi/HitomiDataSearch.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Crypto/AESHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Crypto/AESHelper.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Crypto/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Crypto/Hash.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Crypto/RSAHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Crypto/RSAHelper.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Crypto/RSAKeyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Crypto/RSAKeyExtensions.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/DataBase/ClassTree/ClassTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/DataBase/ClassTree/ClassTree.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/DataBase/ClassTree/ClassTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/DataBase/ClassTree/ClassTreeModel.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/DataBase/Index/IndexManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/DataBase/Index/IndexManager.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Externals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Externals.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/Common.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/DCInsideExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/DCInsideExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/DanbooruExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/DanbooruExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/EHentaiExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/EHentaiExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/ExHentaiExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/ExHentaiExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/FunbeExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/FunbeExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/GelbooruExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/GelbooruExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/HitomiExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/HitomiExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/HiyobiExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/HiyobiExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/ImgurExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/ImgurExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/InstagramExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/InstagramExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/JmanaExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/JmanaExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/ManamoaExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/ManamoaExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/NaverExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/NaverExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/PixivExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/PixivExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/Scrap/AttrangsExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/Scrap/AttrangsExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/Scrap/HaneulHaneulExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/Scrap/HaneulHaneulExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Extractor/TwitterExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Extractor/TwitterExtractor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Html/HtmlToolkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Html/HtmlToolkit.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Html/HtmlTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Html/HtmlTree.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Koromo_Copy.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Koromo_Copy.Framework.csproj -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Log/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Log/Logs.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetCommon.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetDownloader.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetField.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetPriority.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetTask.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/NetTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/NetTools.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/ProxyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/ProxyList.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Network/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Network/Scheduler.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/FFmpegPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/FFmpegPostprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/IPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/IPostprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/InfodataPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/InfodataPostprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/M3u8Postprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/M3u8Postprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/PostprocessorScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/PostprocessorScheduler.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/UgoiraPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/UgoiraPostprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Postprocessor/YoutubeDLPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Postprocessor/YoutubeDLPostprocessor.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Setting/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Setting/AppSettings.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Setting/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Setting/Settings.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Utils/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Utils/Extends.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Utils/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Utils/Heap.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Utils/ILazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Utils/ILazy.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Utils/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Utils/Strings.cs -------------------------------------------------------------------------------- /Koromo_Copy.Framework/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Framework/Version.cs -------------------------------------------------------------------------------- /Koromo_Copy.Server/UI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Server/UI/index.html -------------------------------------------------------------------------------- /Koromo_Copy.Server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Server/index.js -------------------------------------------------------------------------------- /Koromo_Copy.Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Server/package.json -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/App.config -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/App.xaml -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/App.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawler.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawler.xaml -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawler.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawler.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerCAL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerCAL.xaml -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerCAL.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerCAL.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerDataGridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerDataGridViewModel.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerImage.xaml -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerImage.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerTree.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerTree.xaml -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/CustomCrawlerTree.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/CustomCrawlerTree.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/DataGridSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/DataGridSorter.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Koromo_Copy.Tool.CustomCrawler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Koromo_Copy.Tool.CustomCrawler.csproj -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Properties/Resources.resx -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/Properties/Settings.settings -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/SeleniumWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/SeleniumWrapper.cs -------------------------------------------------------------------------------- /Koromo_Copy.Tool.CustomCrawler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.Tool.CustomCrawler/packages.config -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/App.config -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/App.xaml -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/App.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/FodyWeavers.xml -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/FodyWeavers.xsd -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Koromo_Copy.UI.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Koromo_Copy.UI.Desktop.csproj -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/MLib/AvalonDock_Dark_LightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/MLib/AvalonDock_Dark_LightBrushs.xaml -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/MLib/MWindowLib_DarkLightBrushs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/MLib/MWindowLib_DarkLightBrushs.xaml -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/MainWindow.xaml -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Properties/Resources.resx -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/Properties/Settings.settings -------------------------------------------------------------------------------- /Koromo_Copy.UI.Desktop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/Koromo_Copy.UI.Desktop/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/koromo-copy-app/HEAD/README.md --------------------------------------------------------------------------------