├── .github └── workflows │ ├── server-cd.yml │ ├── violet-build.yml │ ├── violet-sync.yml │ └── violet-test.yml ├── .gitignore ├── .gitmodules ├── README.md ├── hsync ├── .github │ └── workflows │ │ ├── build.yml │ │ └── comments.yml ├── .gitignore ├── README.md ├── ct.bat ├── hsync.sln ├── hsync │ ├── AppProvider.cs │ ├── CL │ │ ├── CommandLine.cs │ │ └── IConsole.cs │ ├── CharacterTest.cs │ ├── Command.cs │ ├── Component │ │ ├── EH.cs │ │ ├── Hitomi.cs │ │ └── HitomiIndex.cs │ ├── Crypto │ │ ├── Hash.cs │ │ └── Random.cs │ ├── DataBaseCreator.cs │ ├── DataBaseCreatorLowPerf.cs │ ├── Internals.cs │ ├── Log │ │ └── Logs.cs │ ├── Network │ │ ├── NetField.cs │ │ ├── NetQueue.cs │ │ ├── NetTask.cs │ │ ├── NetTaskPass.cs │ │ └── NetTools.cs │ ├── Program.cs │ ├── Progress.cs │ ├── RelatedTagTest.cs │ ├── SeriesTest.cs │ ├── Setting │ │ └── Settings.cs │ ├── Syncronizer.cs │ ├── SyncronizerLowPerf.cs │ ├── Utils │ │ ├── Compress.cs │ │ ├── Extends.cs │ │ ├── Heap.cs │ │ ├── ILazy.cs │ │ └── Strings.cs │ ├── Version.cs │ ├── hsync-src.7z │ ├── hsync.csproj │ ├── publish-linux-x64-aot.bat │ ├── publish-linux-x64.bat │ ├── publish-osx.10.15-x64-aot.bat │ ├── publish-osx.10.15-x64.bat │ ├── publish-win10-arm-aot.bat │ ├── publish-win10-arm.bat │ ├── publish-win10-x64-aot.bat │ ├── publish-win10-x64.bat │ ├── publish-win10-x86-aot.bat │ └── publish-win10-x86.bat ├── rtt.bat └── sync.py ├── makefile ├── tag-info ├── .github │ └── workflows │ │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── a.py ├── action.js ├── api │ └── syncdatabase.js ├── dict │ ├── kor-character.js │ ├── kor-series.js │ └── kor-tag.js ├── merge.js ├── package-lock.json ├── package.json ├── program.js ├── result-korean-character.json ├── result-korean-merge.json ├── result-korean-series.json ├── result-korean-tag.json ├── series-character-matcher.json └── series-character-translator.js ├── violet-backend-core ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src │ ├── indexableset.rs │ ├── main.rs │ └── memory.rs ├── violet-batch ├── .gitignore ├── app-cache-viewtime │ ├── api │ │ └── syncdatabase.js │ ├── cache-viwetime.js │ ├── package-lock.json │ └── package.json ├── app-download-db │ └── download-db.py ├── app-population │ └── population.js ├── app-viewtime-analyzer │ ├── CMakeLists.txt │ ├── Main.cpp │ └── Main2.cpp ├── app-viewtime-daily-count │ ├── go.mod │ ├── go.sum │ └── viewtime-daily-count.go └── app-viewtime-daily-ranking │ ├── app-viewtime-daily-ranking.go │ ├── go.mod │ └── go.sum ├── violet-llm-search ├── .gitignore ├── cluster.py ├── main.py ├── prompt-general.txt ├── search.py └── server.py ├── violet-message-search-client ├── .env ├── Dockerfile ├── README.md ├── capture-kor.png ├── capture.png ├── capute-eng.png ├── elk-inserter │ ├── .gitignore │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── vms-server │ ├── .gitignore │ ├── app.js │ ├── app.ts │ ├── download-db.py │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── user.db └── vms-web │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── SORT-COMBINE.json │ ├── favicon.ico │ ├── index.html │ ├── logo-eh.png │ ├── logo-hitomi.png │ ├── logo-hiyobi.png │ ├── logo.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.tsx │ ├── Globals.d.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── pages │ │ ├── home │ │ │ ├── HomeNavbar.module.scss │ │ │ ├── HomeNavbar.tsx │ │ │ ├── HomePage.module.scss │ │ │ ├── HomePage.tsx │ │ │ ├── HomeSearchResult.scss │ │ │ └── HomeSearchResult.tsx │ │ └── test │ │ │ └── TestPage.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ ├── store │ │ ├── configureStore.ts │ │ └── index.ts │ └── utils │ │ ├── searchData.ts │ │ └── searchMessage.ts │ └── tsconfig.json ├── violet-message-search-core ├── .gitignore ├── .gitmodules ├── .vscode │ └── settings.json ├── MANUAL.md ├── README.md ├── count-messages.py ├── extract-tags │ ├── .gitignore │ ├── do.py │ └── download-db.py ├── fast-search-rs │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── cxx │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── main.hpp │ ├── rust-toolchain.toml │ ├── rustfmt.toml │ └── src │ │ ├── binding.rs │ │ ├── cache.rs │ │ ├── displant.rs │ │ ├── main.rs │ │ └── message.rs ├── hcache-merger │ ├── CMakeLists.txt │ ├── Main.cpp │ └── json.hpp ├── hcache │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Hangul.cs │ ├── Program.cs │ ├── hcache.csproj │ └── publish-linux-x64.sh ├── hdownloader │ └── hdownloader.csproj ├── log-rank.py ├── miner │ ├── DEV.md │ ├── build-frame.py │ ├── cuda-test.py │ ├── do-ocr.py │ ├── do-only-ocr-unit.py │ ├── extracting-ids.py │ ├── logfile-rank.py │ ├── merge.py │ ├── requester.py │ ├── reserve-job.py │ ├── sched-unlock.py │ ├── sched_frame.yml │ ├── search.py │ ├── update-job.py │ └── update-state.py ├── msg-cached │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── msg-cached.csproj │ ├── msg-cached.sln │ └── packages.config └── msgex │ ├── .cargo │ └── config │ ├── .gitignore │ ├── Cargo.toml │ ├── conn-viz.py │ ├── result-(token, search, usage).txt │ ├── result-(token, usage, search).txt │ ├── src │ └── main.rs │ ├── word-cand.json │ ├── word-conn-article.json │ ├── word-conn-page3.json │ └── word-usage-article-20.json ├── violet-server-hook ├── README.md ├── cd.sh ├── install.sh ├── postreceive.py └── run.sh ├── violet-server ├── admin │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── CommentManagement.tsx │ │ │ └── UserManagement.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── layouts │ │ │ └── Layout.tsx │ │ ├── logo.svg │ │ ├── pages │ │ │ ├── Comments.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── Settings.tsx │ │ │ └── Users.tsx │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── services │ │ │ └── api.ts │ │ └── setupTests.ts │ └── tsconfig.json └── server │ ├── .dev.env │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── .test.env │ ├── Dockerfile │ ├── README.md │ ├── config │ └── database.sql │ ├── docker-compose.yaml │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── auth │ │ ├── auth.controller.spec.ts │ │ ├── auth.controller.ts │ │ ├── auth.module.ts │ │ ├── auth.service.spec.ts │ │ ├── auth.service.ts │ │ ├── discord │ │ │ └── discord.strategy.ts │ │ ├── dtos │ │ │ └── res-login-user.dto.ts │ │ ├── guards │ │ │ ├── access-token.guard.ts │ │ │ ├── admin.guard.ts │ │ │ ├── discord.guard.ts │ │ │ ├── hmac.guard.ts │ │ │ └── hmac.spec.ts │ │ └── jwt │ │ │ ├── access-token.strategy.ts │ │ │ ├── jwt.payload.ts │ │ │ ├── jwt.token.ts │ │ │ ├── jwtExtractorFromCookies.ts │ │ │ └── refresh-token.strategy.ts │ ├── aws │ │ ├── aws.module.ts │ │ ├── aws.service.spec.ts │ │ └── aws.service.ts │ ├── bookmark │ │ ├── bookmark.controller.ts │ │ ├── bookmark.module.ts │ │ ├── bookmark.repository.ts │ │ ├── bookmark.service.ts │ │ ├── dtos │ │ │ └── bookmark.dto.ts │ │ └── entity │ │ │ └── bookmark.entity.ts │ ├── bot │ │ ├── bot.module.ts │ │ └── bot.service.ts │ ├── comment │ │ ├── comment.controller.spec.ts │ │ ├── comment.controller.ts │ │ ├── comment.module.ts │ │ ├── comment.repository.ts │ │ ├── comment.service.spec.ts │ │ ├── comment.service.ts │ │ ├── dtos │ │ │ ├── comment-get.dto.ts │ │ │ └── comment-post.dto.ts │ │ ├── entity │ │ │ └── comment.entity.ts │ │ └── guards │ │ │ ├── comment-owner.guard.spec.ts │ │ │ └── comment-owner.guard.ts │ ├── common │ │ ├── common.module.ts │ │ ├── decorators │ │ │ ├── current-user.decorator.ts │ │ │ └── validate-response.decorator.ts │ │ ├── dtos │ │ │ └── common.dto.ts │ │ ├── entities │ │ │ └── core.entity.ts │ │ └── utils │ │ │ ├── logger.ts │ │ │ └── swagger.ts │ ├── config │ │ ├── config.module.ts │ │ └── config.service.ts │ ├── discord │ │ ├── discord.module.ts │ │ └── discord.service.ts │ ├── main.ts │ ├── redis │ │ ├── redis.module.ts │ │ ├── redis.service.spec.ts │ │ └── redis.service.ts │ ├── stats │ │ ├── dtos │ │ │ └── stats.dto.ts │ │ ├── stats.controller.ts │ │ ├── stats.module.ts │ │ └── stats.service.ts │ ├── user │ │ ├── dtos │ │ │ ├── list-discord.dto.ts │ │ │ └── user-register.dto.ts │ │ ├── entity │ │ │ └── user.entity.ts │ │ ├── user.controller.spec.ts │ │ ├── user.controller.ts │ │ ├── user.module.ts │ │ ├── user.repository.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts │ └── view │ │ ├── dtos │ │ ├── view-get.dto.ts │ │ └── view-post.dto.ts │ │ ├── entity │ │ └── view.entity.ts │ │ ├── view.controller.spec.ts │ │ ├── view.controller.ts │ │ ├── view.module.ts │ │ ├── view.repository.ts │ │ ├── view.service.spec.ts │ │ └── view.service.ts │ ├── swagger-codegen-cli.jar │ ├── test │ ├── app.e2e-spec.ts │ ├── jest-e2e.json │ └── stress.e2e-spec.ts │ ├── tsconfig.build.json │ └── tsconfig.json └── violet ├── .gitignore ├── .metadata ├── AltStore.json ├── LICENSE ├── Preview.png ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── .cxx │ │ ├── cmake │ │ │ └── debug │ │ │ │ ├── arm64-v8a │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ ├── feature_tests.bin │ │ │ │ │ ├── feature_tests.c │ │ │ │ │ └── feature_tests.cxx │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_dpi-bypass_arm64-v8a.command.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_arm64-v8a.stderr.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_arm64-v8a.stdout.txt │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── android_gradle_build_tun2http_arm64-v8a.command.txt │ │ │ │ ├── android_gradle_build_tun2http_arm64-v8a.stderr.txt │ │ │ │ ├── android_gradle_build_tun2http_arm64-v8a.stdout.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_arm64-v8a.command.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_arm64-v8a.stderr.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_arm64-v8a.stdout.txt │ │ │ │ ├── build.ninja │ │ │ │ ├── build_command.txt │ │ │ │ ├── build_model.json │ │ │ │ ├── build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── json_generation_record.json │ │ │ │ └── rules.ninja │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ ├── feature_tests.bin │ │ │ │ │ ├── feature_tests.c │ │ │ │ │ └── feature_tests.cxx │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_dpi-bypass_armeabi-v7a.command.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_armeabi-v7a.stderr.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_armeabi-v7a.stdout.txt │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── android_gradle_build_tun2http_armeabi-v7a.command.txt │ │ │ │ ├── android_gradle_build_tun2http_armeabi-v7a.stderr.txt │ │ │ │ ├── android_gradle_build_tun2http_armeabi-v7a.stdout.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_armeabi-v7a.command.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_armeabi-v7a.stderr.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_armeabi-v7a.stdout.txt │ │ │ │ ├── build.ninja │ │ │ │ ├── build_command.txt │ │ │ │ ├── build_model.json │ │ │ │ ├── build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── json_generation_record.json │ │ │ │ └── rules.ninja │ │ │ │ ├── x86 │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ ├── feature_tests.bin │ │ │ │ │ ├── feature_tests.c │ │ │ │ │ └── feature_tests.cxx │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_dpi-bypass_x86.command.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_x86.stderr.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_x86.stdout.txt │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── android_gradle_build_tun2http_x86.command.txt │ │ │ │ ├── android_gradle_build_tun2http_x86.stderr.txt │ │ │ │ ├── android_gradle_build_tun2http_x86.stdout.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86.command.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86.stderr.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86.stdout.txt │ │ │ │ ├── build.ninja │ │ │ │ ├── build_command.txt │ │ │ │ ├── build_model.json │ │ │ │ ├── build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── json_generation_record.json │ │ │ │ └── rules.ninja │ │ │ │ └── x86_64 │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ ├── feature_tests.bin │ │ │ │ ├── feature_tests.c │ │ │ │ └── feature_tests.cxx │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── android_gradle_build_dpi-bypass_x86_64.command.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_x86_64.stderr.txt │ │ │ │ ├── android_gradle_build_dpi-bypass_x86_64.stdout.txt │ │ │ │ ├── android_gradle_build_mini.json │ │ │ │ ├── android_gradle_build_tun2http_x86_64.command.txt │ │ │ │ ├── android_gradle_build_tun2http_x86_64.stderr.txt │ │ │ │ ├── android_gradle_build_tun2http_x86_64.stdout.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86_64.command.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86_64.stderr.txt │ │ │ │ ├── android_gradle_generate_cmake_ninja_json_x86_64.stdout.txt │ │ │ │ ├── build.ninja │ │ │ │ ├── build_command.txt │ │ │ │ ├── build_model.json │ │ │ │ ├── build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── json_generation_record.json │ │ │ │ └── rules.ninja │ │ └── ndk_locator_record.json │ ├── build.gradle.kts │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── xyz │ │ │ └── project │ │ │ └── violet │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable │ │ └── launch_background.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-night │ │ └── styles.xml │ │ └── values │ │ └── styles.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── key.properties └── settings.gradle.kts ├── assets ├── Calibre-Semibold.otf ├── SF-Pro-Text-Bold.otf ├── SF-Pro-Text-Regular.otf ├── custom_icons.ttf ├── daily.zip ├── flare │ ├── Chatbot-back.flr │ ├── Chatbot-front.flr │ ├── Cosmos.flr │ ├── Liquid Download.flr │ ├── Loading.flr │ ├── Loading2.flr │ ├── Notification Bell.flr │ ├── Penguin.flr │ ├── SlidinSquaresLoader.flr │ ├── Smiley Switch.flr │ ├── Success Check.flr │ ├── Trim.flr │ ├── likeUtsua.flr │ ├── search_close.flr │ └── switch_daytime.flr ├── icons │ ├── llm-search.svg │ └── pixiv.ico ├── images │ ├── logo-amber.png │ ├── logo-black.png │ ├── logo-blue.png │ ├── logo-blueGrey.png │ ├── logo-brown.png │ ├── logo-cyan.png │ ├── logo-deepOrange.png │ ├── logo-deepPurple.png │ ├── logo-green.png │ ├── logo-grey.png │ ├── logo-indigo.png │ ├── logo-lightBlue.png │ ├── logo-lightGreen.png │ ├── logo-lime.png │ ├── logo-orange.png │ ├── logo-pink.png │ ├── logo-purple.png │ ├── logo-red.png │ ├── logo-teal.png │ ├── logo-yellow.png │ └── logo.png ├── locale │ ├── en.json │ ├── eo.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── tag │ │ ├── korean.json │ │ └── related-tag-korean.json │ ├── zh.json │ ├── zh_Hans.json │ └── zh_Hant.json ├── lottie │ ├── 24202-menhera-chan-at-cocopry-sticker-4.json │ ├── 24208-menhera-chan-at-cocopry-sticker-10.json │ ├── 26438-drone-flight.json │ ├── 26531-construction-in-process.json │ ├── 28395-hajj-mabroor-infographic-animation.json │ ├── 28446-floward-gift-box.json │ ├── 3227-error-404-facebook-style.json │ ├── 4629-hypno.json │ └── 5040-shooting-star.json ├── rank │ ├── population.json │ └── related.json └── script_valid_pub.pem ├── build.yaml ├── checker └── locale-checker.py ├── devtools_options.yaml ├── doc ├── OPTIMIZE.md ├── dev-ko.md ├── dev.md ├── logo.pptx ├── note-20.pdf └── plan.md ├── emulator.sh ├── flutter_rust_bridge.yaml ├── generate.bat ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── GoogleService-Info.plist ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 172.png │ │ │ ├── 180.png │ │ │ ├── 196.png │ │ │ ├── 20.png │ │ │ ├── 216.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 48.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 55.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ └── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── firebase_app_id_file.json ├── key.jks ├── lib ├── algorithm │ ├── disjointset.dart │ └── distance.dart ├── api │ ├── api.enums.swagger.dart │ ├── api.swagger.chopper.dart │ ├── api.swagger.dart │ ├── api.swagger.g.dart │ ├── client_index.dart │ └── client_mapping.dart ├── cert │ ├── cert_data.dart │ ├── cert_util.dart │ └── root.dart ├── checker │ └── checker.dart ├── component │ ├── downloadable.dart │ ├── eh │ │ ├── eh_bookmark.dart │ │ ├── eh_headers.dart │ │ ├── eh_parser.dart │ │ └── eh_provider.dart │ ├── hentai.dart │ ├── hentai_download_manager.dart │ ├── hitomi │ │ ├── artists.dart │ │ ├── displayed_tag.dart │ │ ├── hitomi.dart │ │ ├── hitomi_parser.dart │ │ ├── hitomi_provider.dart │ │ ├── message_search.dart │ │ ├── population.dart │ │ ├── related.dart │ │ ├── series_finder.dart │ │ ├── shielder.dart │ │ ├── statistics.dart │ │ ├── tag_translate.dart │ │ ├── tag_translated_regacy.dart │ │ └── title_cluster.dart │ ├── image_provider.dart │ ├── index.dart │ ├── nhentai │ │ ├── nhentai.dart │ │ └── nhentai_provider.dart │ └── query_translate.dart ├── context │ ├── modal_bottom_sheet_context.dart │ └── viewer_context.dart ├── database │ ├── database.dart │ ├── query.dart │ └── user │ │ ├── bookmark.dart │ │ ├── download.dart │ │ ├── llm_search.dart │ │ ├── record.dart │ │ ├── search.dart │ │ └── user.dart ├── downloader │ ├── isolate │ │ └── core.dart │ └── isolate_downloader.dart ├── firebase_options.dart ├── locale │ └── locale.dart ├── log │ ├── act_log.dart │ └── log.dart ├── main.dart ├── model │ ├── article_info.dart │ ├── article_list_item.dart │ ├── gallery.dart │ └── gallery_image_item.dart ├── network │ ├── cookies.dart │ └── wrapper.dart ├── other │ ├── dialogs.dart │ ├── ex_country.dart │ └── named_color.dart ├── pages │ ├── after_loading │ │ └── afterloading_page.dart │ ├── article_info │ │ ├── article_info_page.dart │ │ ├── preview_area.dart │ │ └── simple_info.dart │ ├── artist_info │ │ ├── article_list_page.dart │ │ ├── artist_info_page.dart │ │ ├── search_type2.dart │ │ ├── series_list_page.dart │ │ └── similar_list_page.dart │ ├── bookmark │ │ ├── bookmark_page.dart │ │ ├── crop_bookmark.dart │ │ ├── group │ │ │ ├── group_article_list_page.dart │ │ │ ├── group_artist_article_list.dart │ │ │ └── group_artist_list.dart │ │ ├── group_modify.dart │ │ └── record_view_page.dart │ ├── common │ │ ├── toast.dart │ │ └── utils.dart │ ├── community │ │ ├── community_page.dart │ │ ├── signin_dialog.dart │ │ ├── signup_dialog.dart │ │ ├── user_status_card.dart │ │ └── user_status_card_dead.dart │ ├── database_download │ │ └── database_download_page.dart │ ├── discord │ │ └── discord_page.dart │ ├── download │ │ ├── download_align_type.dart │ │ ├── download_features_menu.dart │ │ ├── download_item_menu.dart │ │ ├── download_item_widget.dart │ │ ├── download_page.dart │ │ ├── download_routine.dart │ │ └── download_view_type.dart │ ├── hot │ │ └── hot_page.dart │ ├── lab │ │ ├── lab │ │ │ ├── artist_search │ │ │ │ ├── artist_search.dart │ │ │ │ ├── tag_group_modify.dart │ │ │ │ └── tag_group_modify_controller.dart │ │ │ ├── bookmark │ │ │ │ ├── bookmarks.dart │ │ │ │ ├── bookmarks_article_list.dart │ │ │ │ ├── bookmarks_artist_list.dart │ │ │ │ └── bookmarks_records.dart │ │ │ ├── bookmark_spy.dart │ │ │ ├── floating_article_view.dart │ │ │ ├── floating_text_view.dart │ │ │ ├── global_comments.dart │ │ │ ├── llm_search.dart │ │ │ ├── recent_comments.dart │ │ │ ├── recent_record.dart │ │ │ ├── recent_record_u.dart │ │ │ ├── recent_user_record.dart │ │ │ ├── search_comment_author.dart │ │ │ ├── search_message.dart │ │ │ ├── search_message_rank.dart │ │ │ ├── setting.dart │ │ │ ├── statistics.dart │ │ │ ├── top_recent.dart │ │ │ └── user_bookmark_page.dart │ │ └── lab_page.dart │ ├── lock │ │ └── lock_screen.dart │ ├── search │ │ ├── search_bar_page.dart │ │ ├── search_nav_page.dart │ │ ├── search_page.dart │ │ ├── search_page_controller.dart │ │ ├── search_page_modify.dart │ │ ├── search_result_selector.dart │ │ └── search_type.dart │ ├── segment │ │ ├── artist_panel.dart │ │ ├── card_panel.dart │ │ ├── double_tap_to_top.dart │ │ ├── filter_page.dart │ │ ├── filter_page_controller.dart │ │ ├── platform_navigator.dart │ │ └── three_article_panel.dart │ ├── settings │ │ ├── artist_collection │ │ │ ├── artist_collection_page.dart │ │ │ └── artist_list_page.dart │ │ ├── bookmark_version_select.dart │ │ ├── db_rebuild_page.dart │ │ ├── faq_page.dart │ │ ├── import_from_eh.dart │ │ ├── info_page.dart │ │ ├── libviolet_page.dart │ │ ├── license_page.dart │ │ ├── lock_setting_page.dart │ │ ├── log_page.dart │ │ ├── login │ │ │ └── ehentai_login.dart │ │ ├── patchnote_page.dart │ │ ├── restore_bookmark.dart │ │ ├── route.dart │ │ ├── settings_page.dart │ │ ├── tag_rebuild_page.dart │ │ ├── tag_selector.dart │ │ ├── user_manual_page.dart │ │ └── version_page.dart │ ├── splash │ │ └── splash_page.dart │ └── viewer │ │ ├── horizontal_viewer_page.dart │ │ ├── image │ │ ├── crop.dart │ │ ├── file_image.dart │ │ ├── image_crop_bookmark.dart │ │ └── provider_image.dart │ │ ├── others │ │ ├── lifecycle_event_handler.dart │ │ ├── photo_view_gallery.dart │ │ ├── preload_page_view.dart │ │ └── scrollable_positioned_list │ │ │ ├── scrollable_positioned_list.dart │ │ │ └── src │ │ │ ├── element_registry.dart │ │ │ ├── item_positions_listener.dart │ │ │ ├── item_positions_notifier.dart │ │ │ ├── positioned_list.dart │ │ │ ├── post_mount_callback.dart │ │ │ ├── scroll_view.dart │ │ │ ├── scrollable_positioned_list.dart │ │ │ ├── viewport.dart │ │ │ └── wrapping.dart │ │ ├── overlay │ │ ├── page_label.dart │ │ ├── viewer_gallery.dart │ │ ├── viewer_overlay.dart │ │ ├── viewer_record_panel.dart │ │ ├── viewer_setting_panel.dart │ │ ├── viewer_tab_panel.dart │ │ └── viewer_thumbnails.dart │ │ ├── vertical_viewer_page.dart │ │ ├── viewer_controller.dart │ │ ├── viewer_page.dart │ │ ├── viewer_page_provider.dart │ │ ├── viewer_report.dart │ │ └── widget │ │ ├── custom_doubletap_gesture_detector.dart │ │ ├── double_point_listener.dart │ │ └── tap_litstener.dart ├── platform │ ├── android_external_storage_directory.dart │ └── misc.dart ├── script │ ├── freezed │ │ ├── script_model.dart │ │ ├── script_model.freezed.dart │ │ └── script_model.g.dart │ ├── script_manager.dart │ └── script_webview.dart ├── server │ ├── community │ │ ├── anon.dart │ │ ├── article.dart │ │ └── session.dart │ ├── search.dart │ ├── violet.dart │ └── violet_v2.dart ├── settings │ ├── device_type.dart │ ├── settings.dart │ └── settings_wrapper.dart ├── src │ └── rust │ │ ├── api │ │ └── simple.dart │ │ ├── frb_generated.dart │ │ ├── frb_generated.io.dart │ │ └── frb_generated.web.dart ├── style │ └── palette.dart ├── thread │ └── semaphore.dart ├── update │ └── update_manager.dart ├── util │ ├── call_once.dart │ ├── evict_image_urls.dart │ ├── helper.dart │ ├── iter_helper.dart │ └── strings.dart ├── variables.dart ├── version │ ├── sync.dart │ └── update_sync.dart └── widgets │ ├── article_item │ ├── article_list_item_widget.dart │ ├── article_list_item_widget_controller.dart │ ├── image_provider_manager.dart │ ├── thumbnail.dart │ └── thumbnail_view_page.dart │ ├── cupertino_switch_list_tile.dart │ ├── debounce_widget.dart │ ├── dots_indicator.dart │ ├── floating_button.dart │ ├── patch_note_prompt.dart │ ├── radio_tile.dart │ ├── search_bar.dart │ ├── theme_switchable_state.dart │ ├── toast.dart │ └── v_cached_network_image.dart ├── makefile ├── manual ├── en.md ├── img │ ├── ko_agu_info.png │ ├── ko_article_info.png │ ├── ko_bookmark_group.gif │ ├── ko_bookmark_group_move.gif │ ├── ko_bookmark_how1.gif │ ├── ko_bookmark_how2.gif │ ├── ko_filter.gif │ ├── ko_search_fuzzy.gif │ ├── ko_search_keyboard.gif │ ├── ko_search_token.gif │ ├── ko_useful.png │ └── ko_viewer.png └── ko.md ├── pubspec.lock ├── pubspec.yaml ├── rag ├── agent.md ├── agent_example.md ├── bookmark_page.md ├── component_app_bootstrap.md ├── component_download.md ├── component_hitomi_integration.md ├── component_infrastructure.md ├── component_search.md ├── component_viewer.md ├── search_page_ui_ux.md ├── user_data_storage.md └── violet_project_overview.md ├── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml └── src │ ├── api │ ├── mod.rs │ └── simple.rs │ ├── frb_generated.io.rs │ ├── frb_generated.rs │ ├── frb_generated.web.rs │ ├── lib.rs │ └── utils │ ├── decompress.rs │ └── mod.rs ├── rust_builder ├── .gitignore ├── README.md ├── android │ ├── .gitignore │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── cargokit │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── build_pod.sh │ ├── build_tool │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── build_tool.dart │ │ ├── lib │ │ │ ├── build_tool.dart │ │ │ └── src │ │ │ │ ├── android_environment.dart │ │ │ │ ├── artifacts_provider.dart │ │ │ │ ├── build_cmake.dart │ │ │ │ ├── build_gradle.dart │ │ │ │ ├── build_pod.dart │ │ │ │ ├── build_tool.dart │ │ │ │ ├── builder.dart │ │ │ │ ├── cargo.dart │ │ │ │ ├── crate_hash.dart │ │ │ │ ├── environment.dart │ │ │ │ ├── logging.dart │ │ │ │ ├── options.dart │ │ │ │ ├── precompile_binaries.dart │ │ │ │ ├── rustup.dart │ │ │ │ ├── target.dart │ │ │ │ ├── util.dart │ │ │ │ └── verify_binaries.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ ├── cmake │ │ ├── cargokit.cmake │ │ └── resolve_symlinks.ps1 │ ├── gradle │ │ └── plugin.gradle │ ├── run_build_tool.cmd │ └── run_build_tool.sh ├── ios │ ├── Classes │ │ └── dummy_file.c │ └── rust_lib_violet.podspec ├── linux │ └── CMakeLists.txt ├── macos │ ├── Classes │ │ └── dummy_file.c │ └── rust_lib_violet.podspec ├── pubspec.yaml └── windows │ ├── .gitignore │ └── CMakeLists.txt ├── script ├── daily-bookmark.py ├── daily-crop.py └── requirements.txt ├── shorebird.yaml ├── swaggers └── api.yaml ├── sync-api.sh ├── test ├── api_test.dart ├── cert_test.dart ├── component_test.dart ├── database_test.dart ├── downloader_isolate_test.dart ├── downloader_tasks_test.dart ├── downloader_test.dart ├── filter_test.dart ├── get_test.dart ├── pull-db.py ├── query_test.dart ├── rust_test.dart ├── script_test.dart ├── staic_test.dart └── translate_test.dart ├── test_driver └── integration_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ └── Icon-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/server-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/.github/workflows/server-cd.yml -------------------------------------------------------------------------------- /.github/workflows/violet-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/.github/workflows/violet-build.yml -------------------------------------------------------------------------------- /.github/workflows/violet-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/.github/workflows/violet-sync.yml -------------------------------------------------------------------------------- /.github/workflows/violet-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/.github/workflows/violet-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/README.md -------------------------------------------------------------------------------- /hsync/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/.github/workflows/build.yml -------------------------------------------------------------------------------- /hsync/.github/workflows/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/.github/workflows/comments.yml -------------------------------------------------------------------------------- /hsync/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/.gitignore -------------------------------------------------------------------------------- /hsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/README.md -------------------------------------------------------------------------------- /hsync/ct.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/ct.bat -------------------------------------------------------------------------------- /hsync/hsync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync.sln -------------------------------------------------------------------------------- /hsync/hsync/AppProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/AppProvider.cs -------------------------------------------------------------------------------- /hsync/hsync/CL/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/CL/CommandLine.cs -------------------------------------------------------------------------------- /hsync/hsync/CL/IConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/CL/IConsole.cs -------------------------------------------------------------------------------- /hsync/hsync/CharacterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/CharacterTest.cs -------------------------------------------------------------------------------- /hsync/hsync/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Command.cs -------------------------------------------------------------------------------- /hsync/hsync/Component/EH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Component/EH.cs -------------------------------------------------------------------------------- /hsync/hsync/Component/Hitomi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Component/Hitomi.cs -------------------------------------------------------------------------------- /hsync/hsync/Component/HitomiIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Component/HitomiIndex.cs -------------------------------------------------------------------------------- /hsync/hsync/Crypto/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Crypto/Hash.cs -------------------------------------------------------------------------------- /hsync/hsync/Crypto/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Crypto/Random.cs -------------------------------------------------------------------------------- /hsync/hsync/DataBaseCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/DataBaseCreator.cs -------------------------------------------------------------------------------- /hsync/hsync/DataBaseCreatorLowPerf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/DataBaseCreatorLowPerf.cs -------------------------------------------------------------------------------- /hsync/hsync/Internals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Internals.cs -------------------------------------------------------------------------------- /hsync/hsync/Log/Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Log/Logs.cs -------------------------------------------------------------------------------- /hsync/hsync/Network/NetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Network/NetField.cs -------------------------------------------------------------------------------- /hsync/hsync/Network/NetQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Network/NetQueue.cs -------------------------------------------------------------------------------- /hsync/hsync/Network/NetTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Network/NetTask.cs -------------------------------------------------------------------------------- /hsync/hsync/Network/NetTaskPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Network/NetTaskPass.cs -------------------------------------------------------------------------------- /hsync/hsync/Network/NetTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Network/NetTools.cs -------------------------------------------------------------------------------- /hsync/hsync/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Program.cs -------------------------------------------------------------------------------- /hsync/hsync/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Progress.cs -------------------------------------------------------------------------------- /hsync/hsync/RelatedTagTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/RelatedTagTest.cs -------------------------------------------------------------------------------- /hsync/hsync/SeriesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/SeriesTest.cs -------------------------------------------------------------------------------- /hsync/hsync/Setting/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Setting/Settings.cs -------------------------------------------------------------------------------- /hsync/hsync/Syncronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Syncronizer.cs -------------------------------------------------------------------------------- /hsync/hsync/SyncronizerLowPerf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/SyncronizerLowPerf.cs -------------------------------------------------------------------------------- /hsync/hsync/Utils/Compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Utils/Compress.cs -------------------------------------------------------------------------------- /hsync/hsync/Utils/Extends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Utils/Extends.cs -------------------------------------------------------------------------------- /hsync/hsync/Utils/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Utils/Heap.cs -------------------------------------------------------------------------------- /hsync/hsync/Utils/ILazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Utils/ILazy.cs -------------------------------------------------------------------------------- /hsync/hsync/Utils/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Utils/Strings.cs -------------------------------------------------------------------------------- /hsync/hsync/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/Version.cs -------------------------------------------------------------------------------- /hsync/hsync/hsync-src.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/hsync-src.7z -------------------------------------------------------------------------------- /hsync/hsync/hsync.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/hsync.csproj -------------------------------------------------------------------------------- /hsync/hsync/publish-linux-x64-aot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-linux-x64-aot.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-linux-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-linux-x64.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-osx.10.15-x64-aot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-osx.10.15-x64-aot.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-osx.10.15-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-osx.10.15-x64.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-arm-aot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-arm-aot.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-arm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-arm.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-x64-aot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-x64-aot.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-x64.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-x86-aot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-x86-aot.bat -------------------------------------------------------------------------------- /hsync/hsync/publish-win10-x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/hsync/publish-win10-x86.bat -------------------------------------------------------------------------------- /hsync/rtt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/rtt.bat -------------------------------------------------------------------------------- /hsync/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/hsync/sync.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/makefile -------------------------------------------------------------------------------- /tag-info/.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /tag-info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/.gitignore -------------------------------------------------------------------------------- /tag-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/LICENSE -------------------------------------------------------------------------------- /tag-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/README.md -------------------------------------------------------------------------------- /tag-info/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/a.py -------------------------------------------------------------------------------- /tag-info/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/action.js -------------------------------------------------------------------------------- /tag-info/api/syncdatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/api/syncdatabase.js -------------------------------------------------------------------------------- /tag-info/dict/kor-character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/dict/kor-character.js -------------------------------------------------------------------------------- /tag-info/dict/kor-series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/dict/kor-series.js -------------------------------------------------------------------------------- /tag-info/dict/kor-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/dict/kor-tag.js -------------------------------------------------------------------------------- /tag-info/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/merge.js -------------------------------------------------------------------------------- /tag-info/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/package-lock.json -------------------------------------------------------------------------------- /tag-info/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/package.json -------------------------------------------------------------------------------- /tag-info/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/program.js -------------------------------------------------------------------------------- /tag-info/result-korean-character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/result-korean-character.json -------------------------------------------------------------------------------- /tag-info/result-korean-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/result-korean-merge.json -------------------------------------------------------------------------------- /tag-info/result-korean-series.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/result-korean-series.json -------------------------------------------------------------------------------- /tag-info/result-korean-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/result-korean-tag.json -------------------------------------------------------------------------------- /tag-info/series-character-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/series-character-matcher.json -------------------------------------------------------------------------------- /tag-info/series-character-translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/tag-info/series-character-translator.js -------------------------------------------------------------------------------- /violet-backend-core/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /violet-backend-core/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/Cargo.lock -------------------------------------------------------------------------------- /violet-backend-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/Cargo.toml -------------------------------------------------------------------------------- /violet-backend-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/README.md -------------------------------------------------------------------------------- /violet-backend-core/src/indexableset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/src/indexableset.rs -------------------------------------------------------------------------------- /violet-backend-core/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/src/main.rs -------------------------------------------------------------------------------- /violet-backend-core/src/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-backend-core/src/memory.rs -------------------------------------------------------------------------------- /violet-batch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/.gitignore -------------------------------------------------------------------------------- /violet-batch/app-cache-viewtime/api/syncdatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-cache-viewtime/api/syncdatabase.js -------------------------------------------------------------------------------- /violet-batch/app-cache-viewtime/cache-viwetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-cache-viewtime/cache-viwetime.js -------------------------------------------------------------------------------- /violet-batch/app-cache-viewtime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-cache-viewtime/package-lock.json -------------------------------------------------------------------------------- /violet-batch/app-cache-viewtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-cache-viewtime/package.json -------------------------------------------------------------------------------- /violet-batch/app-download-db/download-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-download-db/download-db.py -------------------------------------------------------------------------------- /violet-batch/app-population/population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-population/population.js -------------------------------------------------------------------------------- /violet-batch/app-viewtime-analyzer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-analyzer/CMakeLists.txt -------------------------------------------------------------------------------- /violet-batch/app-viewtime-analyzer/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-analyzer/Main.cpp -------------------------------------------------------------------------------- /violet-batch/app-viewtime-analyzer/Main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-analyzer/Main2.cpp -------------------------------------------------------------------------------- /violet-batch/app-viewtime-daily-count/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-daily-count/go.mod -------------------------------------------------------------------------------- /violet-batch/app-viewtime-daily-count/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-daily-count/go.sum -------------------------------------------------------------------------------- /violet-batch/app-viewtime-daily-ranking/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-daily-ranking/go.mod -------------------------------------------------------------------------------- /violet-batch/app-viewtime-daily-ranking/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-batch/app-viewtime-daily-ranking/go.sum -------------------------------------------------------------------------------- /violet-llm-search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/.gitignore -------------------------------------------------------------------------------- /violet-llm-search/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/cluster.py -------------------------------------------------------------------------------- /violet-llm-search/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/main.py -------------------------------------------------------------------------------- /violet-llm-search/prompt-general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/prompt-general.txt -------------------------------------------------------------------------------- /violet-llm-search/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/search.py -------------------------------------------------------------------------------- /violet-llm-search/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-llm-search/server.py -------------------------------------------------------------------------------- /violet-message-search-client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/.env -------------------------------------------------------------------------------- /violet-message-search-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/Dockerfile -------------------------------------------------------------------------------- /violet-message-search-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/README.md -------------------------------------------------------------------------------- /violet-message-search-client/capture-kor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/capture-kor.png -------------------------------------------------------------------------------- /violet-message-search-client/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/capture.png -------------------------------------------------------------------------------- /violet-message-search-client/capute-eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/capute-eng.png -------------------------------------------------------------------------------- /violet-message-search-client/elk-inserter/.gitignore: -------------------------------------------------------------------------------- 1 | image/* 2 | node_modules/* 3 | data.db -------------------------------------------------------------------------------- /violet-message-search-client/elk-inserter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/elk-inserter/index.ts -------------------------------------------------------------------------------- /violet-message-search-client/elk-inserter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/elk-inserter/package-lock.json -------------------------------------------------------------------------------- /violet-message-search-client/elk-inserter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/elk-inserter/package.json -------------------------------------------------------------------------------- /violet-message-search-client/elk-inserter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/elk-inserter/tsconfig.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/.gitignore: -------------------------------------------------------------------------------- 1 | image/* 2 | node_modules/* 3 | data.db -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/app.js -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/app.ts -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/download-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/download-db.py -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/package-lock.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/package.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/tsconfig.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-server/user.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-server/user.db -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/.gitignore -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/README.md -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/package-lock.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/package.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/favicon.ico -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/index.html -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/logo-eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/logo-eh.png -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/logo-hitomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/logo-hitomi.png -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/logo-hiyobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/logo-hiyobi.png -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/logo.png -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/manifest.json -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/public/robots.txt -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/App.tsx -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/Globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/Globals.d.ts -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/index.css -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/index.tsx -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/logo.svg -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/reportWebVitals.ts -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/setupTests.ts -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/store/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./configureStore"; -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/src/utils/searchData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/src/utils/searchData.ts -------------------------------------------------------------------------------- /violet-message-search-client/vms-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-client/vms-web/tsconfig.json -------------------------------------------------------------------------------- /violet-message-search-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/.gitignore -------------------------------------------------------------------------------- /violet-message-search-core/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/.gitmodules -------------------------------------------------------------------------------- /violet-message-search-core/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/.vscode/settings.json -------------------------------------------------------------------------------- /violet-message-search-core/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/MANUAL.md -------------------------------------------------------------------------------- /violet-message-search-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/README.md -------------------------------------------------------------------------------- /violet-message-search-core/count-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/count-messages.py -------------------------------------------------------------------------------- /violet-message-search-core/extract-tags/.gitignore: -------------------------------------------------------------------------------- 1 | data.db -------------------------------------------------------------------------------- /violet-message-search-core/extract-tags/do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/extract-tags/do.py -------------------------------------------------------------------------------- /violet-message-search-core/extract-tags/download-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/extract-tags/download-db.py -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/.gitignore -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/Cargo.toml -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/README.md -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/build.rs -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/cxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/cxx/CMakeLists.txt -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/cxx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/cxx/main.cpp -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/cxx/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/cxx/main.hpp -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/rustfmt.toml -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/src/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/src/binding.rs -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/src/cache.rs -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/src/displant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/src/displant.rs -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/src/main.rs -------------------------------------------------------------------------------- /violet-message-search-core/fast-search-rs/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/fast-search-rs/src/message.rs -------------------------------------------------------------------------------- /violet-message-search-core/hcache-merger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache-merger/CMakeLists.txt -------------------------------------------------------------------------------- /violet-message-search-core/hcache-merger/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache-merger/Main.cpp -------------------------------------------------------------------------------- /violet-message-search-core/hcache-merger/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache-merger/json.hpp -------------------------------------------------------------------------------- /violet-message-search-core/hcache/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/.vscode/launch.json -------------------------------------------------------------------------------- /violet-message-search-core/hcache/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/.vscode/tasks.json -------------------------------------------------------------------------------- /violet-message-search-core/hcache/Hangul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/Hangul.cs -------------------------------------------------------------------------------- /violet-message-search-core/hcache/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/Program.cs -------------------------------------------------------------------------------- /violet-message-search-core/hcache/hcache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/hcache.csproj -------------------------------------------------------------------------------- /violet-message-search-core/hcache/publish-linux-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hcache/publish-linux-x64.sh -------------------------------------------------------------------------------- /violet-message-search-core/hdownloader/hdownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/hdownloader/hdownloader.csproj -------------------------------------------------------------------------------- /violet-message-search-core/log-rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/log-rank.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/DEV.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet-message-search-core/miner/build-frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/build-frame.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/cuda-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/cuda-test.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/do-ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/do-ocr.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/do-only-ocr-unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/do-only-ocr-unit.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/extracting-ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/extracting-ids.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/logfile-rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/logfile-rank.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/merge.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/requester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/requester.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/reserve-job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/reserve-job.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/sched-unlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/sched-unlock.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/sched_frame.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/sched_frame.yml -------------------------------------------------------------------------------- /violet-message-search-core/miner/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/search.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/update-job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/update-job.py -------------------------------------------------------------------------------- /violet-message-search-core/miner/update-state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/miner/update-state.py -------------------------------------------------------------------------------- /violet-message-search-core/msg-cached/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msg-cached/App.config -------------------------------------------------------------------------------- /violet-message-search-core/msg-cached/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msg-cached/Program.cs -------------------------------------------------------------------------------- /violet-message-search-core/msg-cached/msg-cached.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msg-cached/msg-cached.csproj -------------------------------------------------------------------------------- /violet-message-search-core/msg-cached/msg-cached.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msg-cached/msg-cached.sln -------------------------------------------------------------------------------- /violet-message-search-core/msg-cached/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msg-cached/packages.config -------------------------------------------------------------------------------- /violet-message-search-core/msgex/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/.cargo/config -------------------------------------------------------------------------------- /violet-message-search-core/msgex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/.gitignore -------------------------------------------------------------------------------- /violet-message-search-core/msgex/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/Cargo.toml -------------------------------------------------------------------------------- /violet-message-search-core/msgex/conn-viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/conn-viz.py -------------------------------------------------------------------------------- /violet-message-search-core/msgex/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/src/main.rs -------------------------------------------------------------------------------- /violet-message-search-core/msgex/word-cand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/word-cand.json -------------------------------------------------------------------------------- /violet-message-search-core/msgex/word-conn-article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/word-conn-article.json -------------------------------------------------------------------------------- /violet-message-search-core/msgex/word-conn-page3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/word-conn-page3.json -------------------------------------------------------------------------------- /violet-message-search-core/msgex/word-usage-article-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-message-search-core/msgex/word-usage-article-20.json -------------------------------------------------------------------------------- /violet-server-hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server-hook/README.md -------------------------------------------------------------------------------- /violet-server-hook/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server-hook/cd.sh -------------------------------------------------------------------------------- /violet-server-hook/install.sh: -------------------------------------------------------------------------------- 1 | sudo pip3 install gunicorn flask 2 | -------------------------------------------------------------------------------- /violet-server-hook/postreceive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server-hook/postreceive.py -------------------------------------------------------------------------------- /violet-server-hook/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server-hook/run.sh -------------------------------------------------------------------------------- /violet-server/admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/.gitignore -------------------------------------------------------------------------------- /violet-server/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/README.md -------------------------------------------------------------------------------- /violet-server/admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/package-lock.json -------------------------------------------------------------------------------- /violet-server/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/package.json -------------------------------------------------------------------------------- /violet-server/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/favicon.ico -------------------------------------------------------------------------------- /violet-server/admin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/index.html -------------------------------------------------------------------------------- /violet-server/admin/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/logo192.png -------------------------------------------------------------------------------- /violet-server/admin/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/logo512.png -------------------------------------------------------------------------------- /violet-server/admin/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/manifest.json -------------------------------------------------------------------------------- /violet-server/admin/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/public/robots.txt -------------------------------------------------------------------------------- /violet-server/admin/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/App.css -------------------------------------------------------------------------------- /violet-server/admin/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/App.test.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/App.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/components/CommentManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/components/CommentManagement.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/components/UserManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/components/UserManagement.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/index.css -------------------------------------------------------------------------------- /violet-server/admin/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/index.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/layouts/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/layouts/Layout.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/logo.svg -------------------------------------------------------------------------------- /violet-server/admin/src/pages/Comments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/pages/Comments.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/pages/Settings.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/pages/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/pages/Users.tsx -------------------------------------------------------------------------------- /violet-server/admin/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /violet-server/admin/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/reportWebVitals.ts -------------------------------------------------------------------------------- /violet-server/admin/src/services/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/services/api.ts -------------------------------------------------------------------------------- /violet-server/admin/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/src/setupTests.ts -------------------------------------------------------------------------------- /violet-server/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/admin/tsconfig.json -------------------------------------------------------------------------------- /violet-server/server/.dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/.dev.env -------------------------------------------------------------------------------- /violet-server/server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/.eslintrc.js -------------------------------------------------------------------------------- /violet-server/server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/.gitignore -------------------------------------------------------------------------------- /violet-server/server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/.prettierrc -------------------------------------------------------------------------------- /violet-server/server/.test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/.test.env -------------------------------------------------------------------------------- /violet-server/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/Dockerfile -------------------------------------------------------------------------------- /violet-server/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/README.md -------------------------------------------------------------------------------- /violet-server/server/config/database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/config/database.sql -------------------------------------------------------------------------------- /violet-server/server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/docker-compose.yaml -------------------------------------------------------------------------------- /violet-server/server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/nest-cli.json -------------------------------------------------------------------------------- /violet-server/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/package-lock.json -------------------------------------------------------------------------------- /violet-server/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/package.json -------------------------------------------------------------------------------- /violet-server/server/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/app.controller.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/app.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/app.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/app.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/auth.controller.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/auth.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/auth.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/auth.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/discord/discord.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/discord/discord.strategy.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/dtos/res-login-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/dtos/res-login-user.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/guards/access-token.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/guards/access-token.guard.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/guards/admin.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/guards/admin.guard.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/guards/discord.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/guards/discord.guard.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/guards/hmac.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/guards/hmac.guard.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/guards/hmac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/guards/hmac.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/jwt/access-token.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/jwt/access-token.strategy.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/jwt/jwt.payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/jwt/jwt.payload.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/jwt/jwt.token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/jwt/jwt.token.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/jwt/jwtExtractorFromCookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/jwt/jwtExtractorFromCookies.ts -------------------------------------------------------------------------------- /violet-server/server/src/auth/jwt/refresh-token.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/auth/jwt/refresh-token.strategy.ts -------------------------------------------------------------------------------- /violet-server/server/src/aws/aws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/aws/aws.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/aws/aws.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/aws/aws.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/aws/aws.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/aws/aws.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/bookmark.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/bookmark.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/bookmark.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/bookmark.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/bookmark.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/bookmark.repository.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/bookmark.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/bookmark.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/dtos/bookmark.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/dtos/bookmark.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/bookmark/entity/bookmark.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bookmark/entity/bookmark.entity.ts -------------------------------------------------------------------------------- /violet-server/server/src/bot/bot.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bot/bot.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/bot/bot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/bot/bot.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.controller.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.repository.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/comment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/comment.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/dtos/comment-get.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/dtos/comment-get.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/dtos/comment-post.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/dtos/comment-post.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/comment/entity/comment.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/comment/entity/comment.entity.ts -------------------------------------------------------------------------------- /violet-server/server/src/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/common/common.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/common/dtos/common.dto.ts: -------------------------------------------------------------------------------- 1 | export class CommonResponseDto { 2 | ok: boolean; 3 | error?: string; 4 | } 5 | -------------------------------------------------------------------------------- /violet-server/server/src/common/entities/core.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/common/entities/core.entity.ts -------------------------------------------------------------------------------- /violet-server/server/src/common/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/common/utils/logger.ts -------------------------------------------------------------------------------- /violet-server/server/src/common/utils/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/common/utils/swagger.ts -------------------------------------------------------------------------------- /violet-server/server/src/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/config/config.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/config/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/config/config.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/discord/discord.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/discord/discord.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/discord/discord.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/discord/discord.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/main.ts -------------------------------------------------------------------------------- /violet-server/server/src/redis/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/redis/redis.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/redis/redis.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/redis/redis.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/redis/redis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/redis/redis.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/stats/dtos/stats.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/stats/dtos/stats.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/stats/stats.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/stats/stats.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/stats/stats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/stats/stats.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/stats/stats.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/stats/stats.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/dtos/list-discord.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/dtos/list-discord.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/dtos/user-register.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/dtos/user-register.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/entity/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/entity/user.entity.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.controller.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.repository.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/user/user.service.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/dtos/view-get.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/dtos/view-get.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/dtos/view-post.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/dtos/view-post.dto.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/entity/view.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/entity/view.entity.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.controller.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.controller.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.module.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.repository.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.service.spec.ts -------------------------------------------------------------------------------- /violet-server/server/src/view/view.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/src/view/view.service.ts -------------------------------------------------------------------------------- /violet-server/server/swagger-codegen-cli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/swagger-codegen-cli.jar -------------------------------------------------------------------------------- /violet-server/server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /violet-server/server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/test/jest-e2e.json -------------------------------------------------------------------------------- /violet-server/server/test/stress.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/test/stress.e2e-spec.ts -------------------------------------------------------------------------------- /violet-server/server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/tsconfig.build.json -------------------------------------------------------------------------------- /violet-server/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet-server/server/tsconfig.json -------------------------------------------------------------------------------- /violet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/.gitignore -------------------------------------------------------------------------------- /violet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/.metadata -------------------------------------------------------------------------------- /violet/AltStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/AltStore.json -------------------------------------------------------------------------------- /violet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/LICENSE -------------------------------------------------------------------------------- /violet/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/Preview.png -------------------------------------------------------------------------------- /violet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/analysis_options.yaml -------------------------------------------------------------------------------- /violet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/.gitignore -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/arm64-v8a/.ninja_deps -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/arm64-v8a/.ninja_log -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/arm64-v8a/CMakeCache.txt -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_dpi-bypass_arm64-v8a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_dpi-bypass_arm64-v8a.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_tun2http_arm64-v8a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/android_gradle_build_tun2http_arm64-v8a.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/android_gradle_generate_cmake_ninja_json_arm64-v8a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/arm64-v8a/build.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/arm64-v8a/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/arm64-v8a/rules.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/armeabi-v7a/.ninja_log -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_dpi-bypass_armeabi-v7a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_dpi-bypass_armeabi-v7a.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_tun2http_armeabi-v7a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_tun2http_armeabi-v7a.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/armeabi-v7a/android_gradle_generate_cmake_ninja_json_armeabi-v7a.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/.ninja_deps -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/.ninja_log -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/CMakeCache.txt -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/android_gradle_build_dpi-bypass_x86.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/android_gradle_build_dpi-bypass_x86.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/android_gradle_build_tun2http_x86.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/android_gradle_build_tun2http_x86.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/android_gradle_generate_cmake_ninja_json_x86.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/build.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/build_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/build_command.txt -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/build_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/build_model.json -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/build_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/build_output.txt -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86/rules.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86_64/.ninja_deps -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86_64/.ninja_log -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86_64/CMakeCache.txt -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/android_gradle_build_dpi-bypass_x86_64.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/android_gradle_build_dpi-bypass_x86_64.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/android_gradle_build_tun2http_x86_64.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/android_gradle_build_tun2http_x86_64.stdout.txt: -------------------------------------------------------------------------------- 1 | ninja: no work to do. 2 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/android_gradle_generate_cmake_ninja_json_x86_64.stderr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86_64/build.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/cmake/debug/x86_64/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/cmake/debug/x86_64/rules.ninja -------------------------------------------------------------------------------- /violet/android/app/.cxx/ndk_locator_record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/.cxx/ndk_locator_record.json -------------------------------------------------------------------------------- /violet/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/build.gradle.kts -------------------------------------------------------------------------------- /violet/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/google-services.json -------------------------------------------------------------------------------- /violet/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /violet/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /violet/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /violet/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /violet/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/build.gradle.kts -------------------------------------------------------------------------------- /violet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/gradle.properties -------------------------------------------------------------------------------- /violet/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /violet/android/key.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/key.properties -------------------------------------------------------------------------------- /violet/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/android/settings.gradle.kts -------------------------------------------------------------------------------- /violet/assets/Calibre-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/Calibre-Semibold.otf -------------------------------------------------------------------------------- /violet/assets/SF-Pro-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/SF-Pro-Text-Bold.otf -------------------------------------------------------------------------------- /violet/assets/SF-Pro-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/SF-Pro-Text-Regular.otf -------------------------------------------------------------------------------- /violet/assets/custom_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/custom_icons.ttf -------------------------------------------------------------------------------- /violet/assets/daily.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/daily.zip -------------------------------------------------------------------------------- /violet/assets/flare/Chatbot-back.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Chatbot-back.flr -------------------------------------------------------------------------------- /violet/assets/flare/Chatbot-front.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Chatbot-front.flr -------------------------------------------------------------------------------- /violet/assets/flare/Cosmos.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Cosmos.flr -------------------------------------------------------------------------------- /violet/assets/flare/Liquid Download.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Liquid Download.flr -------------------------------------------------------------------------------- /violet/assets/flare/Loading.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Loading.flr -------------------------------------------------------------------------------- /violet/assets/flare/Loading2.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Loading2.flr -------------------------------------------------------------------------------- /violet/assets/flare/Notification Bell.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Notification Bell.flr -------------------------------------------------------------------------------- /violet/assets/flare/Penguin.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Penguin.flr -------------------------------------------------------------------------------- /violet/assets/flare/SlidinSquaresLoader.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/SlidinSquaresLoader.flr -------------------------------------------------------------------------------- /violet/assets/flare/Smiley Switch.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Smiley Switch.flr -------------------------------------------------------------------------------- /violet/assets/flare/Success Check.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Success Check.flr -------------------------------------------------------------------------------- /violet/assets/flare/Trim.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/Trim.flr -------------------------------------------------------------------------------- /violet/assets/flare/likeUtsua.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/likeUtsua.flr -------------------------------------------------------------------------------- /violet/assets/flare/search_close.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/search_close.flr -------------------------------------------------------------------------------- /violet/assets/flare/switch_daytime.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/flare/switch_daytime.flr -------------------------------------------------------------------------------- /violet/assets/icons/llm-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/icons/llm-search.svg -------------------------------------------------------------------------------- /violet/assets/icons/pixiv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/icons/pixiv.ico -------------------------------------------------------------------------------- /violet/assets/images/logo-amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-amber.png -------------------------------------------------------------------------------- /violet/assets/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-black.png -------------------------------------------------------------------------------- /violet/assets/images/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-blue.png -------------------------------------------------------------------------------- /violet/assets/images/logo-blueGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-blueGrey.png -------------------------------------------------------------------------------- /violet/assets/images/logo-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-brown.png -------------------------------------------------------------------------------- /violet/assets/images/logo-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-cyan.png -------------------------------------------------------------------------------- /violet/assets/images/logo-deepOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-deepOrange.png -------------------------------------------------------------------------------- /violet/assets/images/logo-deepPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-deepPurple.png -------------------------------------------------------------------------------- /violet/assets/images/logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-green.png -------------------------------------------------------------------------------- /violet/assets/images/logo-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-grey.png -------------------------------------------------------------------------------- /violet/assets/images/logo-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-indigo.png -------------------------------------------------------------------------------- /violet/assets/images/logo-lightBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-lightBlue.png -------------------------------------------------------------------------------- /violet/assets/images/logo-lightGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-lightGreen.png -------------------------------------------------------------------------------- /violet/assets/images/logo-lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-lime.png -------------------------------------------------------------------------------- /violet/assets/images/logo-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-orange.png -------------------------------------------------------------------------------- /violet/assets/images/logo-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-pink.png -------------------------------------------------------------------------------- /violet/assets/images/logo-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-purple.png -------------------------------------------------------------------------------- /violet/assets/images/logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-red.png -------------------------------------------------------------------------------- /violet/assets/images/logo-teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-teal.png -------------------------------------------------------------------------------- /violet/assets/images/logo-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo-yellow.png -------------------------------------------------------------------------------- /violet/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/images/logo.png -------------------------------------------------------------------------------- /violet/assets/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/en.json -------------------------------------------------------------------------------- /violet/assets/locale/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/eo.json -------------------------------------------------------------------------------- /violet/assets/locale/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/it.json -------------------------------------------------------------------------------- /violet/assets/locale/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/ja.json -------------------------------------------------------------------------------- /violet/assets/locale/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/ko.json -------------------------------------------------------------------------------- /violet/assets/locale/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/pt.json -------------------------------------------------------------------------------- /violet/assets/locale/tag/korean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/tag/korean.json -------------------------------------------------------------------------------- /violet/assets/locale/tag/related-tag-korean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/tag/related-tag-korean.json -------------------------------------------------------------------------------- /violet/assets/locale/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/zh.json -------------------------------------------------------------------------------- /violet/assets/locale/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/zh_Hans.json -------------------------------------------------------------------------------- /violet/assets/locale/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/locale/zh_Hant.json -------------------------------------------------------------------------------- /violet/assets/lottie/26438-drone-flight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/26438-drone-flight.json -------------------------------------------------------------------------------- /violet/assets/lottie/26531-construction-in-process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/26531-construction-in-process.json -------------------------------------------------------------------------------- /violet/assets/lottie/28446-floward-gift-box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/28446-floward-gift-box.json -------------------------------------------------------------------------------- /violet/assets/lottie/3227-error-404-facebook-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/3227-error-404-facebook-style.json -------------------------------------------------------------------------------- /violet/assets/lottie/4629-hypno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/4629-hypno.json -------------------------------------------------------------------------------- /violet/assets/lottie/5040-shooting-star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/lottie/5040-shooting-star.json -------------------------------------------------------------------------------- /violet/assets/rank/population.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/rank/population.json -------------------------------------------------------------------------------- /violet/assets/rank/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/rank/related.json -------------------------------------------------------------------------------- /violet/assets/script_valid_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/assets/script_valid_pub.pem -------------------------------------------------------------------------------- /violet/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/build.yaml -------------------------------------------------------------------------------- /violet/checker/locale-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/checker/locale-checker.py -------------------------------------------------------------------------------- /violet/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/devtools_options.yaml -------------------------------------------------------------------------------- /violet/doc/OPTIMIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/OPTIMIZE.md -------------------------------------------------------------------------------- /violet/doc/dev-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/dev-ko.md -------------------------------------------------------------------------------- /violet/doc/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/dev.md -------------------------------------------------------------------------------- /violet/doc/logo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/logo.pptx -------------------------------------------------------------------------------- /violet/doc/note-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/note-20.pdf -------------------------------------------------------------------------------- /violet/doc/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/doc/plan.md -------------------------------------------------------------------------------- /violet/emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/emulator.sh -------------------------------------------------------------------------------- /violet/flutter_rust_bridge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/flutter_rust_bridge.yaml -------------------------------------------------------------------------------- /violet/generate.bat: -------------------------------------------------------------------------------- 1 | flutter_rust_bridge_codegen generate -------------------------------------------------------------------------------- /violet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/.gitignore -------------------------------------------------------------------------------- /violet/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /violet/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /violet/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /violet/ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /violet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Podfile -------------------------------------------------------------------------------- /violet/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Podfile.lock -------------------------------------------------------------------------------- /violet/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /violet/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /violet/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /violet/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /violet/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /violet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /violet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /violet/ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /violet/key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/key.jks -------------------------------------------------------------------------------- /violet/lib/algorithm/disjointset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/algorithm/disjointset.dart -------------------------------------------------------------------------------- /violet/lib/algorithm/distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/algorithm/distance.dart -------------------------------------------------------------------------------- /violet/lib/api/api.enums.swagger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/api/api.enums.swagger.dart -------------------------------------------------------------------------------- /violet/lib/api/api.swagger.chopper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/api/api.swagger.chopper.dart -------------------------------------------------------------------------------- /violet/lib/api/api.swagger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/api/api.swagger.dart -------------------------------------------------------------------------------- /violet/lib/api/api.swagger.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/api/api.swagger.g.dart -------------------------------------------------------------------------------- /violet/lib/api/client_index.dart: -------------------------------------------------------------------------------- 1 | export 'api.swagger.dart' show Api; 2 | -------------------------------------------------------------------------------- /violet/lib/api/client_mapping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/api/client_mapping.dart -------------------------------------------------------------------------------- /violet/lib/cert/cert_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/cert/cert_data.dart -------------------------------------------------------------------------------- /violet/lib/cert/cert_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/cert/cert_util.dart -------------------------------------------------------------------------------- /violet/lib/cert/root.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/cert/root.dart -------------------------------------------------------------------------------- /violet/lib/checker/checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/checker/checker.dart -------------------------------------------------------------------------------- /violet/lib/component/downloadable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/downloadable.dart -------------------------------------------------------------------------------- /violet/lib/component/eh/eh_bookmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/eh/eh_bookmark.dart -------------------------------------------------------------------------------- /violet/lib/component/eh/eh_headers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/eh/eh_headers.dart -------------------------------------------------------------------------------- /violet/lib/component/eh/eh_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/eh/eh_parser.dart -------------------------------------------------------------------------------- /violet/lib/component/eh/eh_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/eh/eh_provider.dart -------------------------------------------------------------------------------- /violet/lib/component/hentai.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hentai.dart -------------------------------------------------------------------------------- /violet/lib/component/hentai_download_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hentai_download_manager.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/artists.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/displayed_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/displayed_tag.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/hitomi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/hitomi.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/hitomi_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/hitomi_parser.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/hitomi_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/hitomi_provider.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/message_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/message_search.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/population.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/population.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/related.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/related.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/series_finder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/series_finder.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/shielder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/shielder.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/statistics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/statistics.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/tag_translate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/tag_translate.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/tag_translated_regacy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/tag_translated_regacy.dart -------------------------------------------------------------------------------- /violet/lib/component/hitomi/title_cluster.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/hitomi/title_cluster.dart -------------------------------------------------------------------------------- /violet/lib/component/image_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/image_provider.dart -------------------------------------------------------------------------------- /violet/lib/component/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/index.dart -------------------------------------------------------------------------------- /violet/lib/component/nhentai/nhentai.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/nhentai/nhentai.dart -------------------------------------------------------------------------------- /violet/lib/component/nhentai/nhentai_provider.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /violet/lib/component/query_translate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/component/query_translate.dart -------------------------------------------------------------------------------- /violet/lib/context/modal_bottom_sheet_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/context/modal_bottom_sheet_context.dart -------------------------------------------------------------------------------- /violet/lib/context/viewer_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/context/viewer_context.dart -------------------------------------------------------------------------------- /violet/lib/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/database.dart -------------------------------------------------------------------------------- /violet/lib/database/query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/query.dart -------------------------------------------------------------------------------- /violet/lib/database/user/bookmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/bookmark.dart -------------------------------------------------------------------------------- /violet/lib/database/user/download.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/download.dart -------------------------------------------------------------------------------- /violet/lib/database/user/llm_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/llm_search.dart -------------------------------------------------------------------------------- /violet/lib/database/user/record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/record.dart -------------------------------------------------------------------------------- /violet/lib/database/user/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/search.dart -------------------------------------------------------------------------------- /violet/lib/database/user/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/database/user/user.dart -------------------------------------------------------------------------------- /violet/lib/downloader/isolate/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/downloader/isolate/core.dart -------------------------------------------------------------------------------- /violet/lib/downloader/isolate_downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/downloader/isolate_downloader.dart -------------------------------------------------------------------------------- /violet/lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/firebase_options.dart -------------------------------------------------------------------------------- /violet/lib/locale/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/locale/locale.dart -------------------------------------------------------------------------------- /violet/lib/log/act_log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/log/act_log.dart -------------------------------------------------------------------------------- /violet/lib/log/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/log/log.dart -------------------------------------------------------------------------------- /violet/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/main.dart -------------------------------------------------------------------------------- /violet/lib/model/article_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/model/article_info.dart -------------------------------------------------------------------------------- /violet/lib/model/article_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/model/article_list_item.dart -------------------------------------------------------------------------------- /violet/lib/model/gallery.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /violet/lib/model/gallery_image_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/model/gallery_image_item.dart -------------------------------------------------------------------------------- /violet/lib/network/cookies.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /violet/lib/network/wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/network/wrapper.dart -------------------------------------------------------------------------------- /violet/lib/other/dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/other/dialogs.dart -------------------------------------------------------------------------------- /violet/lib/other/ex_country.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/other/ex_country.dart -------------------------------------------------------------------------------- /violet/lib/other/named_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/other/named_color.dart -------------------------------------------------------------------------------- /violet/lib/pages/after_loading/afterloading_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/after_loading/afterloading_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/article_info/article_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/article_info/article_info_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/article_info/preview_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/article_info/preview_area.dart -------------------------------------------------------------------------------- /violet/lib/pages/article_info/simple_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/article_info/simple_info.dart -------------------------------------------------------------------------------- /violet/lib/pages/artist_info/article_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/artist_info/article_list_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/artist_info/artist_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/artist_info/artist_info_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/artist_info/search_type2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/artist_info/search_type2.dart -------------------------------------------------------------------------------- /violet/lib/pages/artist_info/series_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/artist_info/series_list_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/artist_info/similar_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/artist_info/similar_list_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/bookmark/bookmark_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/bookmark/bookmark_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/bookmark/crop_bookmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/bookmark/crop_bookmark.dart -------------------------------------------------------------------------------- /violet/lib/pages/bookmark/group/group_artist_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/bookmark/group/group_artist_list.dart -------------------------------------------------------------------------------- /violet/lib/pages/bookmark/group_modify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/bookmark/group_modify.dart -------------------------------------------------------------------------------- /violet/lib/pages/bookmark/record_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/bookmark/record_view_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/common/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/common/toast.dart -------------------------------------------------------------------------------- /violet/lib/pages/common/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/common/utils.dart -------------------------------------------------------------------------------- /violet/lib/pages/community/community_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/community/community_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/community/signin_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/community/signin_dialog.dart -------------------------------------------------------------------------------- /violet/lib/pages/community/signup_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/community/signup_dialog.dart -------------------------------------------------------------------------------- /violet/lib/pages/community/user_status_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/community/user_status_card.dart -------------------------------------------------------------------------------- /violet/lib/pages/community/user_status_card_dead.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/community/user_status_card_dead.dart -------------------------------------------------------------------------------- /violet/lib/pages/discord/discord_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/discord/discord_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_align_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_align_type.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_features_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_features_menu.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_item_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_item_menu.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_item_widget.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_routine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_routine.dart -------------------------------------------------------------------------------- /violet/lib/pages/download/download_view_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/download/download_view_type.dart -------------------------------------------------------------------------------- /violet/lib/pages/hot/hot_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/hot/hot_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/artist_search/artist_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/artist_search/artist_search.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/bookmark/bookmarks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/bookmark/bookmarks.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/bookmark/bookmarks_records.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/bookmark/bookmarks_records.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/bookmark_spy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/bookmark_spy.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/floating_article_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/floating_article_view.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/floating_text_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/floating_text_view.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/global_comments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/global_comments.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/llm_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/llm_search.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/recent_comments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/recent_comments.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/recent_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/recent_record.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/recent_record_u.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/recent_record_u.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/recent_user_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/recent_user_record.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/search_comment_author.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/search_comment_author.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/search_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/search_message.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/search_message_rank.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/search_message_rank.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/setting.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/statistics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/statistics.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/top_recent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/top_recent.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab/user_bookmark_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab/user_bookmark_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/lab/lab_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lab/lab_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/lock/lock_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/lock/lock_screen.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_bar_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_bar_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_nav_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_nav_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_page_controller.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_page_modify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_page_modify.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_result_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_result_selector.dart -------------------------------------------------------------------------------- /violet/lib/pages/search/search_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/search/search_type.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/artist_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/artist_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/card_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/card_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/double_tap_to_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/double_tap_to_top.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/filter_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/filter_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/filter_page_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/filter_page_controller.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/platform_navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/platform_navigator.dart -------------------------------------------------------------------------------- /violet/lib/pages/segment/three_article_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/segment/three_article_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/bookmark_version_select.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/bookmark_version_select.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/db_rebuild_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/db_rebuild_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/faq_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/faq_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/import_from_eh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/import_from_eh.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/info_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/libviolet_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/libviolet_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/license_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/license_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/lock_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/lock_setting_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/log_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/log_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/login/ehentai_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/login/ehentai_login.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/patchnote_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/patchnote_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/restore_bookmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/restore_bookmark.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/route.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/settings_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/tag_rebuild_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/tag_rebuild_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/tag_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/tag_selector.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/user_manual_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/user_manual_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/settings/version_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/settings/version_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/splash/splash_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/horizontal_viewer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/horizontal_viewer_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/image/crop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/image/crop.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/image/file_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/image/file_image.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/image/image_crop_bookmark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/image/image_crop_bookmark.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/image/provider_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/image/provider_image.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/others/photo_view_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/others/photo_view_gallery.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/others/preload_page_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/others/preload_page_view.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/page_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/page_label.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_gallery.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_overlay.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_record_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_record_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_setting_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_setting_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_tab_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_tab_panel.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/overlay/viewer_thumbnails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/overlay/viewer_thumbnails.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/vertical_viewer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/vertical_viewer_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/viewer_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/viewer_controller.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/viewer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/viewer_page.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/viewer_page_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/viewer_page_provider.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/viewer_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/viewer_report.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/widget/double_point_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/widget/double_point_listener.dart -------------------------------------------------------------------------------- /violet/lib/pages/viewer/widget/tap_litstener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/pages/viewer/widget/tap_litstener.dart -------------------------------------------------------------------------------- /violet/lib/platform/misc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/platform/misc.dart -------------------------------------------------------------------------------- /violet/lib/script/freezed/script_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/script/freezed/script_model.dart -------------------------------------------------------------------------------- /violet/lib/script/freezed/script_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/script/freezed/script_model.freezed.dart -------------------------------------------------------------------------------- /violet/lib/script/freezed/script_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/script/freezed/script_model.g.dart -------------------------------------------------------------------------------- /violet/lib/script/script_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/script/script_manager.dart -------------------------------------------------------------------------------- /violet/lib/script/script_webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/script/script_webview.dart -------------------------------------------------------------------------------- /violet/lib/server/community/anon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/community/anon.dart -------------------------------------------------------------------------------- /violet/lib/server/community/article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/community/article.dart -------------------------------------------------------------------------------- /violet/lib/server/community/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/community/session.dart -------------------------------------------------------------------------------- /violet/lib/server/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/search.dart -------------------------------------------------------------------------------- /violet/lib/server/violet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/violet.dart -------------------------------------------------------------------------------- /violet/lib/server/violet_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/server/violet_v2.dart -------------------------------------------------------------------------------- /violet/lib/settings/device_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/settings/device_type.dart -------------------------------------------------------------------------------- /violet/lib/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/settings/settings.dart -------------------------------------------------------------------------------- /violet/lib/settings/settings_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/settings/settings_wrapper.dart -------------------------------------------------------------------------------- /violet/lib/src/rust/api/simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/src/rust/api/simple.dart -------------------------------------------------------------------------------- /violet/lib/src/rust/frb_generated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/src/rust/frb_generated.dart -------------------------------------------------------------------------------- /violet/lib/src/rust/frb_generated.io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/src/rust/frb_generated.io.dart -------------------------------------------------------------------------------- /violet/lib/src/rust/frb_generated.web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/src/rust/frb_generated.web.dart -------------------------------------------------------------------------------- /violet/lib/style/palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/style/palette.dart -------------------------------------------------------------------------------- /violet/lib/thread/semaphore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/thread/semaphore.dart -------------------------------------------------------------------------------- /violet/lib/update/update_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/update/update_manager.dart -------------------------------------------------------------------------------- /violet/lib/util/call_once.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/util/call_once.dart -------------------------------------------------------------------------------- /violet/lib/util/evict_image_urls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/util/evict_image_urls.dart -------------------------------------------------------------------------------- /violet/lib/util/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/util/helper.dart -------------------------------------------------------------------------------- /violet/lib/util/iter_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/util/iter_helper.dart -------------------------------------------------------------------------------- /violet/lib/util/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/util/strings.dart -------------------------------------------------------------------------------- /violet/lib/variables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/variables.dart -------------------------------------------------------------------------------- /violet/lib/version/sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/version/sync.dart -------------------------------------------------------------------------------- /violet/lib/version/update_sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/version/update_sync.dart -------------------------------------------------------------------------------- /violet/lib/widgets/article_item/thumbnail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/article_item/thumbnail.dart -------------------------------------------------------------------------------- /violet/lib/widgets/article_item/thumbnail_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/article_item/thumbnail_view_page.dart -------------------------------------------------------------------------------- /violet/lib/widgets/cupertino_switch_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/cupertino_switch_list_tile.dart -------------------------------------------------------------------------------- /violet/lib/widgets/debounce_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/debounce_widget.dart -------------------------------------------------------------------------------- /violet/lib/widgets/dots_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/dots_indicator.dart -------------------------------------------------------------------------------- /violet/lib/widgets/floating_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/floating_button.dart -------------------------------------------------------------------------------- /violet/lib/widgets/patch_note_prompt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/patch_note_prompt.dart -------------------------------------------------------------------------------- /violet/lib/widgets/radio_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/radio_tile.dart -------------------------------------------------------------------------------- /violet/lib/widgets/search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/search_bar.dart -------------------------------------------------------------------------------- /violet/lib/widgets/theme_switchable_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/theme_switchable_state.dart -------------------------------------------------------------------------------- /violet/lib/widgets/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/toast.dart -------------------------------------------------------------------------------- /violet/lib/widgets/v_cached_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/lib/widgets/v_cached_network_image.dart -------------------------------------------------------------------------------- /violet/makefile: -------------------------------------------------------------------------------- 1 | ../makefile -------------------------------------------------------------------------------- /violet/manual/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/en.md -------------------------------------------------------------------------------- /violet/manual/img/ko_agu_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_agu_info.png -------------------------------------------------------------------------------- /violet/manual/img/ko_article_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_article_info.png -------------------------------------------------------------------------------- /violet/manual/img/ko_bookmark_group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_bookmark_group.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_bookmark_group_move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_bookmark_group_move.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_bookmark_how1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_bookmark_how1.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_bookmark_how2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_bookmark_how2.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_filter.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_search_fuzzy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_search_fuzzy.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_search_keyboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_search_keyboard.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_search_token.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_search_token.gif -------------------------------------------------------------------------------- /violet/manual/img/ko_useful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_useful.png -------------------------------------------------------------------------------- /violet/manual/img/ko_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/img/ko_viewer.png -------------------------------------------------------------------------------- /violet/manual/ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/manual/ko.md -------------------------------------------------------------------------------- /violet/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/pubspec.lock -------------------------------------------------------------------------------- /violet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/pubspec.yaml -------------------------------------------------------------------------------- /violet/rag/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/agent.md -------------------------------------------------------------------------------- /violet/rag/agent_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/agent_example.md -------------------------------------------------------------------------------- /violet/rag/bookmark_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/bookmark_page.md -------------------------------------------------------------------------------- /violet/rag/component_app_bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_app_bootstrap.md -------------------------------------------------------------------------------- /violet/rag/component_download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_download.md -------------------------------------------------------------------------------- /violet/rag/component_hitomi_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_hitomi_integration.md -------------------------------------------------------------------------------- /violet/rag/component_infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_infrastructure.md -------------------------------------------------------------------------------- /violet/rag/component_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_search.md -------------------------------------------------------------------------------- /violet/rag/component_viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/component_viewer.md -------------------------------------------------------------------------------- /violet/rag/search_page_ui_ux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/search_page_ui_ux.md -------------------------------------------------------------------------------- /violet/rag/user_data_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/user_data_storage.md -------------------------------------------------------------------------------- /violet/rag/violet_project_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rag/violet_project_overview.md -------------------------------------------------------------------------------- /violet/rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /violet/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/Cargo.lock -------------------------------------------------------------------------------- /violet/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/Cargo.toml -------------------------------------------------------------------------------- /violet/rust/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/api/mod.rs -------------------------------------------------------------------------------- /violet/rust/src/api/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/api/simple.rs -------------------------------------------------------------------------------- /violet/rust/src/frb_generated.io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/frb_generated.io.rs -------------------------------------------------------------------------------- /violet/rust/src/frb_generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/frb_generated.rs -------------------------------------------------------------------------------- /violet/rust/src/frb_generated.web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/frb_generated.web.rs -------------------------------------------------------------------------------- /violet/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/lib.rs -------------------------------------------------------------------------------- /violet/rust/src/utils/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust/src/utils/decompress.rs -------------------------------------------------------------------------------- /violet/rust/src/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod decompress; 2 | -------------------------------------------------------------------------------- /violet/rust_builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/.gitignore -------------------------------------------------------------------------------- /violet/rust_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/README.md -------------------------------------------------------------------------------- /violet/rust_builder/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/android/.gitignore -------------------------------------------------------------------------------- /violet/rust_builder/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/android/build.gradle -------------------------------------------------------------------------------- /violet/rust_builder/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'rust_lib_violet' 2 | -------------------------------------------------------------------------------- /violet/rust_builder/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .dart_tool 3 | *.iml 4 | !pubspec.lock 5 | -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/LICENSE -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/README -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_pod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_pod.sh -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_tool/README.md -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_tool/lib/src/cargo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_tool/lib/src/cargo.dart -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_tool/lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_tool/lib/src/util.dart -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_tool/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_tool/pubspec.lock -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/build_tool/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/build_tool/pubspec.yaml -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/cmake/cargokit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/cmake/cargokit.cmake -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/cmake/resolve_symlinks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/cmake/resolve_symlinks.ps1 -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/gradle/plugin.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/gradle/plugin.gradle -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/run_build_tool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/run_build_tool.cmd -------------------------------------------------------------------------------- /violet/rust_builder/cargokit/run_build_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/cargokit/run_build_tool.sh -------------------------------------------------------------------------------- /violet/rust_builder/ios/Classes/dummy_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/ios/Classes/dummy_file.c -------------------------------------------------------------------------------- /violet/rust_builder/ios/rust_lib_violet.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/ios/rust_lib_violet.podspec -------------------------------------------------------------------------------- /violet/rust_builder/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/linux/CMakeLists.txt -------------------------------------------------------------------------------- /violet/rust_builder/macos/Classes/dummy_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/macos/Classes/dummy_file.c -------------------------------------------------------------------------------- /violet/rust_builder/macos/rust_lib_violet.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/macos/rust_lib_violet.podspec -------------------------------------------------------------------------------- /violet/rust_builder/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/pubspec.yaml -------------------------------------------------------------------------------- /violet/rust_builder/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/windows/.gitignore -------------------------------------------------------------------------------- /violet/rust_builder/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/rust_builder/windows/CMakeLists.txt -------------------------------------------------------------------------------- /violet/script/daily-bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/script/daily-bookmark.py -------------------------------------------------------------------------------- /violet/script/daily-crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/script/daily-crop.py -------------------------------------------------------------------------------- /violet/script/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/script/requirements.txt -------------------------------------------------------------------------------- /violet/shorebird.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/shorebird.yaml -------------------------------------------------------------------------------- /violet/swaggers/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/swaggers/api.yaml -------------------------------------------------------------------------------- /violet/sync-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/sync-api.sh -------------------------------------------------------------------------------- /violet/test/api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/api_test.dart -------------------------------------------------------------------------------- /violet/test/cert_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/cert_test.dart -------------------------------------------------------------------------------- /violet/test/component_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/component_test.dart -------------------------------------------------------------------------------- /violet/test/database_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/database_test.dart -------------------------------------------------------------------------------- /violet/test/downloader_isolate_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/downloader_isolate_test.dart -------------------------------------------------------------------------------- /violet/test/downloader_tasks_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/downloader_tasks_test.dart -------------------------------------------------------------------------------- /violet/test/downloader_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/downloader_test.dart -------------------------------------------------------------------------------- /violet/test/filter_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/filter_test.dart -------------------------------------------------------------------------------- /violet/test/get_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/get_test.dart -------------------------------------------------------------------------------- /violet/test/pull-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/pull-db.py -------------------------------------------------------------------------------- /violet/test/query_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/query_test.dart -------------------------------------------------------------------------------- /violet/test/rust_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/rust_test.dart -------------------------------------------------------------------------------- /violet/test/script_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/script_test.dart -------------------------------------------------------------------------------- /violet/test/staic_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/staic_test.dart -------------------------------------------------------------------------------- /violet/test/translate_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test/translate_test.dart -------------------------------------------------------------------------------- /violet/test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/test_driver/integration_test.dart -------------------------------------------------------------------------------- /violet/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/web/favicon.png -------------------------------------------------------------------------------- /violet/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/web/icons/Icon-192.png -------------------------------------------------------------------------------- /violet/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/web/icons/Icon-512.png -------------------------------------------------------------------------------- /violet/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/web/index.html -------------------------------------------------------------------------------- /violet/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/web/manifest.json -------------------------------------------------------------------------------- /violet/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/.gitignore -------------------------------------------------------------------------------- /violet/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/CMakeLists.txt -------------------------------------------------------------------------------- /violet/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /violet/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /violet/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /violet/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /violet/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /violet/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/Runner.rc -------------------------------------------------------------------------------- /violet/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /violet/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /violet/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/main.cpp -------------------------------------------------------------------------------- /violet/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/resource.h -------------------------------------------------------------------------------- /violet/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /violet/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /violet/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/utils.cpp -------------------------------------------------------------------------------- /violet/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/utils.h -------------------------------------------------------------------------------- /violet/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /violet/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-violet/violet/HEAD/violet/windows/runner/win32_window.h --------------------------------------------------------------------------------