├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── normal_issue.yaml │ ├── request_zhHans.yml │ ├── request-ja.yml │ ├── fix-request-ja.yml │ ├── request.yml │ └── fix-request.yml ├── pull_request_template.md └── workflows │ └── update-readme.yml ├── .prettierrc.yml ├── .gitignore ├── C └── C.png ├── X └── X.png ├── C# ├── C#.png └── C# Purple.png ├── C++ └── C++.png ├── Go └── Golang.png ├── Hono └── Hono.png ├── Html └── HTML.png ├── Htmx └── htmx.png ├── Java └── Java.png ├── Mui └── Mui.png ├── Ruby └── Ruby.png ├── Rust └── Rust.png ├── Vim └── VIM.png ├── Vite └── Vite.png ├── Vue └── Vue.png ├── Clion └── Clion.png ├── Cobol └── Cobol.png ├── Figma └── Figma.png ├── Julia └── Julia.png ├── React └── React.png ├── Rider └── Rider.png ├── Swift └── Swift.png ├── C,C#,C++ └── All.png ├── GitHub └── GitHub.png ├── GitLab └── GitLab.png ├── Kotlin ├── Kotlin.png └── Kotlin_New.png ├── MS-DOS └── MS-DOS.png ├── Python └── Python.png ├── Qwik.js └── Qwik.png ├── Ubuntu └── Ubuntu.png ├── Vrchat └── VRChat.png ├── Angular ├── Angular.png └── Angular_Old.png ├── Discord └── Discord.png ├── FORTRAN └── FORTRAN.png ├── Haskell ├── Haskell.png └── Haskell $.png ├── Juniper └── Juniper.png ├── Laravel └── Laravel.png ├── Next.js └── Next.js.png ├── Node.js └── Node.js.png ├── Rstudio └── RStudio.png ├── Twitter └── Twitter.png ├── ArchLinux └── ArchLinux.png ├── Gnuemacs └── GNUEmacs.png ├── Photoshop └── Photoshop.png ├── RhineLab └── RhineLab.png ├── Teamspeak └── TeamSpeak.png ├── Voicemod └── Voicemod.png ├── Wallhack └── WALLHACK.png ├── 404Notfound └── NotFound.png ├── Cloudflare └── Cloudflare.png ├── TypeScript └── TypeScript.png ├── 403Forbidden └── Forbidden.png ├── Crowdstrike └── CroudStrike.png ├── FlipperZero └── FlipperZero.png ├── IamSeries ├── IamDesigner!.png ├── IamProgrammer!.png ├── IamDesigner!English.png └── IamProgrammerEnglish.png ├── Kernel Panic └── KernelPanic.png ├── RaspberryPi └── Raspberry Pi.png ├── Streamloots └── Streamloots.png ├── Tailwindcss └── Tailwindcss6.png ├── Flutter └── FlutterTransparent.png ├── UnityBlender └── UnityBlenderT.png ├── 418I'mateapot └── 418I'mateapot.png ├── VisualStudioCode ├── VisualStudioCode.png └── VisualStudioCodeRound.png ├── 503ServiceUnavailable.png └── ServiceUnavailable.png ├── package.json ├── pnpm-lock.yaml ├── docs ├── ReplaceGuide │ └── Rider │ │ ├── Rider-zh.md │ │ ├── Rider-jp.md │ │ └── Rider-en.md ├── scripts │ └── generate-images-table.py ├── README-zhHans.md ├── README-zhHant.md ├── README-ja.md ├── README.md ├── README-es.md └── README-fr.md ├── pyproject.toml └── pdm.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @SAWARATSUKI 2 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | singleQuote: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .venv 3 | .pdm-python 4 | -------------------------------------------------------------------------------- /C/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/C/C.png -------------------------------------------------------------------------------- /X/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/X/X.png -------------------------------------------------------------------------------- /C#/C#.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/C#/C#.png -------------------------------------------------------------------------------- /C++/C++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/C++/C++.png -------------------------------------------------------------------------------- /Go/Golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Go/Golang.png -------------------------------------------------------------------------------- /Hono/Hono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Hono/Hono.png -------------------------------------------------------------------------------- /Html/HTML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Html/HTML.png -------------------------------------------------------------------------------- /Htmx/htmx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Htmx/htmx.png -------------------------------------------------------------------------------- /Java/Java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Java/Java.png -------------------------------------------------------------------------------- /Mui/Mui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Mui/Mui.png -------------------------------------------------------------------------------- /Ruby/Ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Ruby/Ruby.png -------------------------------------------------------------------------------- /Rust/Rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Rust/Rust.png -------------------------------------------------------------------------------- /Vim/VIM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Vim/VIM.png -------------------------------------------------------------------------------- /Vite/Vite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Vite/Vite.png -------------------------------------------------------------------------------- /Vue/Vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Vue/Vue.png -------------------------------------------------------------------------------- /Clion/Clion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Clion/Clion.png -------------------------------------------------------------------------------- /Cobol/Cobol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Cobol/Cobol.png -------------------------------------------------------------------------------- /Figma/Figma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Figma/Figma.png -------------------------------------------------------------------------------- /Julia/Julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Julia/Julia.png -------------------------------------------------------------------------------- /React/React.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/React/React.png -------------------------------------------------------------------------------- /Rider/Rider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Rider/Rider.png -------------------------------------------------------------------------------- /Swift/Swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Swift/Swift.png -------------------------------------------------------------------------------- /C#/C# Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/C#/C# Purple.png -------------------------------------------------------------------------------- /C,C#,C++/All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/C,C#,C++/All.png -------------------------------------------------------------------------------- /GitHub/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/GitHub/GitHub.png -------------------------------------------------------------------------------- /GitLab/GitLab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/GitLab/GitLab.png -------------------------------------------------------------------------------- /Kotlin/Kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Kotlin/Kotlin.png -------------------------------------------------------------------------------- /MS-DOS/MS-DOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/MS-DOS/MS-DOS.png -------------------------------------------------------------------------------- /Python/Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Python/Python.png -------------------------------------------------------------------------------- /Qwik.js/Qwik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Qwik.js/Qwik.png -------------------------------------------------------------------------------- /Ubuntu/Ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Ubuntu/Ubuntu.png -------------------------------------------------------------------------------- /Vrchat/VRChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Vrchat/VRChat.png -------------------------------------------------------------------------------- /Angular/Angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Angular/Angular.png -------------------------------------------------------------------------------- /Discord/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Discord/Discord.png -------------------------------------------------------------------------------- /FORTRAN/FORTRAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/FORTRAN/FORTRAN.png -------------------------------------------------------------------------------- /Haskell/Haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Haskell/Haskell.png -------------------------------------------------------------------------------- /Juniper/Juniper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Juniper/Juniper.png -------------------------------------------------------------------------------- /Laravel/Laravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Laravel/Laravel.png -------------------------------------------------------------------------------- /Next.js/Next.js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Next.js/Next.js.png -------------------------------------------------------------------------------- /Node.js/Node.js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Node.js/Node.js.png -------------------------------------------------------------------------------- /Rstudio/RStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Rstudio/RStudio.png -------------------------------------------------------------------------------- /Twitter/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Twitter/Twitter.png -------------------------------------------------------------------------------- /Angular/Angular_Old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Angular/Angular_Old.png -------------------------------------------------------------------------------- /ArchLinux/ArchLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/ArchLinux/ArchLinux.png -------------------------------------------------------------------------------- /Gnuemacs/GNUEmacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Gnuemacs/GNUEmacs.png -------------------------------------------------------------------------------- /Haskell/Haskell $.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Haskell/Haskell $.png -------------------------------------------------------------------------------- /Kotlin/Kotlin_New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Kotlin/Kotlin_New.png -------------------------------------------------------------------------------- /Photoshop/Photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Photoshop/Photoshop.png -------------------------------------------------------------------------------- /RhineLab/RhineLab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/RhineLab/RhineLab.png -------------------------------------------------------------------------------- /Teamspeak/TeamSpeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Teamspeak/TeamSpeak.png -------------------------------------------------------------------------------- /Voicemod/Voicemod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Voicemod/Voicemod.png -------------------------------------------------------------------------------- /Wallhack/WALLHACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Wallhack/WALLHACK.png -------------------------------------------------------------------------------- /404Notfound/NotFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/404Notfound/NotFound.png -------------------------------------------------------------------------------- /Cloudflare/Cloudflare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Cloudflare/Cloudflare.png -------------------------------------------------------------------------------- /TypeScript/TypeScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/TypeScript/TypeScript.png -------------------------------------------------------------------------------- /403Forbidden/Forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/403Forbidden/Forbidden.png -------------------------------------------------------------------------------- /Crowdstrike/CroudStrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Crowdstrike/CroudStrike.png -------------------------------------------------------------------------------- /FlipperZero/FlipperZero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/FlipperZero/FlipperZero.png -------------------------------------------------------------------------------- /IamSeries/IamDesigner!.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/IamSeries/IamDesigner!.png -------------------------------------------------------------------------------- /IamSeries/IamProgrammer!.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/IamSeries/IamProgrammer!.png -------------------------------------------------------------------------------- /Kernel Panic/KernelPanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Kernel Panic/KernelPanic.png -------------------------------------------------------------------------------- /RaspberryPi/Raspberry Pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/RaspberryPi/Raspberry Pi.png -------------------------------------------------------------------------------- /Streamloots/Streamloots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Streamloots/Streamloots.png -------------------------------------------------------------------------------- /Tailwindcss/Tailwindcss6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Tailwindcss/Tailwindcss6.png -------------------------------------------------------------------------------- /Flutter/FlutterTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/Flutter/FlutterTransparent.png -------------------------------------------------------------------------------- /UnityBlender/UnityBlenderT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/UnityBlender/UnityBlenderT.png -------------------------------------------------------------------------------- /418I'mateapot/418I'mateapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/418I'mateapot/418I'mateapot.png -------------------------------------------------------------------------------- /IamSeries/IamDesigner!English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/IamSeries/IamDesigner!English.png -------------------------------------------------------------------------------- /IamSeries/IamProgrammerEnglish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/IamSeries/IamProgrammerEnglish.png -------------------------------------------------------------------------------- /VisualStudioCode/VisualStudioCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/VisualStudioCode/VisualStudioCode.png -------------------------------------------------------------------------------- /VisualStudioCode/VisualStudioCodeRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/VisualStudioCode/VisualStudioCodeRound.png -------------------------------------------------------------------------------- /503ServiceUnavailable.png/ServiceUnavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMander02/CuteServiceLogos/HEAD/503ServiceUnavailable.png/ServiceUnavailable.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "format": "prettier -cw ." 5 | }, 6 | "devDependencies": { 7 | "prettier": "^3.2.5" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issue_enabled: false 2 | contact_links: 3 | - name: Twitter 4 | url: https://twitter.com/intent/user?screen_name=sawaratsuki1004 5 | about: SAWARATSUKI's Twitter 6 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: "9.0" 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | .: 9 | devDependencies: 10 | prettier: 11 | specifier: ^3.2.5 12 | version: 3.2.5 13 | 14 | packages: 15 | prettier@3.2.5: 16 | resolution: 17 | { 18 | integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, 19 | } 20 | engines: { node: ">=14" } 21 | hasBin: true 22 | 23 | snapshots: 24 | prettier@3.2.5: {} 25 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Pull Request 2 | 3 | ## Description 4 | 5 | [Please include a brief description of the changes or features you are proposing.] 6 | 7 | ## Related Issues 8 | 9 | [If this pull request is related to any GitHub issue(s), please reference them here.] 10 | 11 | ## Pictures (if applicable) 12 | 13 | [Include any pictures that help demonstrate the changes.] 14 | 15 | ## Checklist 16 | 17 | - [ ] I have tested the changes/updates before submitting this pull request. 18 | 19 | ## Additional Notes 20 | 21 | [Add any additional notes or context about the changes here.] 22 | -------------------------------------------------------------------------------- /docs/ReplaceGuide/Rider/Rider-zh.md: -------------------------------------------------------------------------------- 1 | # 替换 Rider 启动图片 2 | 3 | --- 4 | 5 | ## 2024.1 版本 6 | 7 | --- 8 | 9 | - 打开 `%userprofile%\AppData\Local\Programs\Rider\lib` 文件夹 10 | - 将 `app.jar` 复制到一个空的文件夹,并注意备份该文件 11 | - 在此目录下再创建一个新的文件夹,并将 `app.jar` 移动进去 12 | - 进入此文件夹,右键选择 `在终端中打开` ,输入 `jar -xvf app.jar` 解压,解压完后删除 `app.jar` 13 | - 然后进入此文件夹中的 `rider\artwork\release` 目录 14 | - 将下载好的图片重命名为 `splash.png` 和 `splash@2x.png` 替换原来的图片 15 | - 回到解压后的目录,通过终端执行 `jar -cfM0 ../app.jar ./` 来压缩当前目录,并将结果保存到上层目录 16 | - 将新的 `app.jar` 放到 `%userprofile%\AppData\Local\Programs\Rider\lib` 进行替换 17 | - 最后将 `%userprofile%\AppData\Local\JetBrains\Rider2024.1\splash` 内的文件全部删除 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/normal_issue.yaml: -------------------------------------------------------------------------------- 1 | name: Issue 2 | description: Submit a normal issue. 3 | title: "[Issue] " 4 | labels: ["question"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: checkboxes 9 | id: duplicate-check 10 | attributes: 11 | label: Check for duplicates 12 | description: Check that the Issue has not been duplicated. 13 | options: 14 | - label: Checked 15 | required: true 16 | 17 | - type: textarea 18 | id: comment 19 | attributes: 20 | label: Comment 21 | description: Please attach images to this area. 22 | validations: 23 | required: true 24 | -------------------------------------------------------------------------------- /docs/ReplaceGuide/Rider/Rider-jp.md: -------------------------------------------------------------------------------- 1 | # Rider のスタートアップ画像の交換 2 | 3 | --- 4 | 5 | ## 2024.1 バージョン 6 | 7 | --- 8 | 9 | - `%userprofile%\AppData\Local\Programs\Rider\lib` フォルダを開く 10 | - `app.jar` を空のフォルダにコピーし、バックアップを取る 11 | - 同じディレクトリに新しいフォルダを作成し、`app.jar` を移動する 12 | - このフォルダに入り、右クリックして「ターミナルで開く」を選択し、`jar -xvf app.jar` と入力して解凍する。解凍後、`app.jar` を削除する 13 | - このフォルダ内の `rider\artwork\release` ディレクトリに移動 14 | - ダウンロードした画像を `splash.png` と `splash@2x.png` にリネームして、元の画像を置き換える 15 | - 解凍されたフォルダに戻り、`jar -cfM0 ../app.jar ./` を実行して、現在のフォルダを圧縮し、上のディレクトリに保存する 16 | - 新しい `app.jar` を `%userprofile%\AppData\Local\Programs\Rider\lib` に配置して、元のファイルと交換する 17 | - 最後に、`%userprofile%\AppData\Local\JetBrains\Rider2024.1\splash` のすべてのファイルを削除する 18 | -------------------------------------------------------------------------------- /docs/ReplaceGuide/Rider/Rider-en.md: -------------------------------------------------------------------------------- 1 | # Replace Rider Startup Image 2 | 3 | --- 4 | 5 | ## Version 2024.1 6 | 7 | --- 8 | 9 | - Open the `%userprofile%\AppData\Local\Programs\Rider\lib` folder 10 | - Copy `app.jar` to an empty folder and make sure to back it up 11 | - Create a new folder in this directory and move `app.jar` into it 12 | - Go into this folder, right-click, choose `Open in Terminal`, and enter `jar -xvf app.jar` to extract. After extraction, delete `app.jar` 13 | - Then go to the `rider\artwork\release` directory within this folder 14 | - Rename the downloaded images to `splash.png` and `splash@2x.png` to replace the original images 15 | - Return to the extracted folder, then run `jar -cfM0 ../app.jar ./` to compress the current folder, and save it to the parent directory 16 | - Put the new `app.jar` into `%userprofile%\AppData\Local\Programs\Rider\lib` to replace the original 17 | - Finally, delete all files in `%userprofile%\AppData\Local\JetBrains\Rider2024.1\splash` 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_zhHans.yml: -------------------------------------------------------------------------------- 1 | name: 请求logo 2 | description: 请求一个没有被添加过的logo 3 | title: "[Request] " 4 | labels: ["request", "enhancement"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | 请提交issues。当请求被确认了之后就会开始设计制作logo。 12 | 由于个人时间安排等因素,制作logo可能需要几天时间。 13 | 14 | - type: checkboxes 15 | id: duplicate-check 16 | attributes: 17 | label: 检查重复 18 | description: 确认此请求没有与其他的issues重合。 19 | options: 20 | - label: Checked 21 | required: true 22 | 23 | - type: input 24 | id: service-name 25 | attributes: 26 | label: 服务名称 27 | description: Logo的服务名称。 28 | placeholder: 例如:GitHub 29 | validations: 30 | required: true 31 | 32 | - type: input 33 | id: service-name-ja 34 | attributes: 35 | label: 服务名称的日语读法 36 | description: 如何用日语阅读您想要添加的服务的名称。 37 | placeholder: 例如:ギットハブ 38 | validations: 39 | required: true 40 | 41 | - type: textarea 42 | id: comment 43 | attributes: 44 | label: 评论/补充 45 | description: 请在这里添加相对应的图片。 46 | validations: 47 | required: false 48 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-ja.yml: -------------------------------------------------------------------------------- 1 | name: リクエスト 2 | description: ロゴの追加依頼 3 | title: "[Request] " 4 | labels: ["request", "enhancement"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | issuesに投稿してください。確認次第作成します。 12 | 個人のスケジュールにより対応できない場合もあります。数日かかる場合もあります。 13 | 14 | - type: checkboxes 15 | id: duplicate-check 16 | attributes: 17 | label: 重複チェック 18 | description: 他のIssueと内容が重複していないことを確認してください。 19 | options: 20 | - label: 確認しました 21 | required: true 22 | 23 | - type: input 24 | id: service-name 25 | attributes: 26 | label: サービス名 27 | description: 追加を希望するサービスの名称 28 | placeholder: 例) GitHub 29 | validations: 30 | required: true 31 | 32 | - type: input 33 | id: service-name-ja 34 | attributes: 35 | label: サービス名の日本語での読み方 36 | description: 追加を希望するサービスの日本語での読み方 37 | placeholder: 例) ギットハブ 38 | validations: 39 | required: true 40 | 41 | - type: textarea 42 | id: comment 43 | attributes: 44 | label: コメント・補足 45 | description: 画像がある場合はこちらに添付してください 46 | validations: 47 | required: false 48 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fix-request-ja.yml: -------------------------------------------------------------------------------- 1 | name: 修正依頼 2 | description: ロゴの修正依頼 3 | title: "[Fix] " 4 | labels: ["fix"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | issuesに投稿してください。確認次第作成します。 12 | 個人のスケジュールにより対応できない場合もあります。数日かかる場合もあります。 13 | ロゴは誤字脱字等の誤り修正のみ対応します。ロゴのデザイン変更は対応しません。 14 | 15 | - type: checkboxes 16 | id: duplicate-check 17 | attributes: 18 | label: 重複チェック 19 | description: 他のIssueと内容が重複していないことを確認してください。 20 | options: 21 | - label: 確認しました 22 | required: true 23 | 24 | - type: input 25 | id: service-name 26 | attributes: 27 | label: サービス名 28 | description: 修正を希望するサービスの名称 29 | placeholder: 例) GitHub 30 | validations: 31 | required: true 32 | 33 | - type: input 34 | id: revision-detail 35 | attributes: 36 | label: 修正内容 37 | description: 修正内容を具体的に記載してください 38 | placeholder: 例) Githubの日本語表記を「ぎっとはぶ」から「ギットハブ」に修正 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | id: comment 44 | attributes: 45 | label: コメント・補足 46 | description: 修正する根拠がある場合はこちらに記載してください 47 | validations: 48 | required: false 49 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update Image List 2 | 3 | permissions: write-all 4 | 5 | on: 6 | push: 7 | paths: 8 | - "**.png" 9 | - "docs/README*" 10 | - "docs/scripts/**" 11 | workflow_dispatch: 12 | 13 | jobs: 14 | update-readme: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - uses: actions/checkout@v4 18 | with: 19 | fetch-depth: 1 20 | submodules: true 21 | 22 | - uses: pnpm/action-setup@v3 23 | with: 24 | version: latest 25 | - uses: actions/setup-node@v4 26 | with: 27 | node-version: 20 28 | cache: pnpm 29 | 30 | - uses: pdm-project/setup-pdm@v3 31 | 32 | - name: Run Job 33 | run: |- 34 | # pdm install # no 3rd lib used 35 | pdm run generate 36 | 37 | pnpm i 38 | pnpm format 39 | 40 | if [[ -n "$(git status -s)" ]]; then 41 | git add . 42 | git config user.name github-actions[bot] 43 | git config user.email github-actions[bot]@users.noreply.github.com 44 | git commit -m "Update Image List" 45 | git push 46 | else 47 | echo "No changes detected." 48 | fi 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request.yml: -------------------------------------------------------------------------------- 1 | name: Request 2 | description: Request a logo that's not here. 3 | title: "[Request] " 4 | labels: ["request", "enhancement"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Please post it in the issues. We'll create it once confirmed. 12 | Depending on individual schedules, we may not be able to respond immediately. It may take several days. 13 | 14 | - type: checkboxes 15 | id: duplicate-check 16 | attributes: 17 | label: Check for duplicates 18 | description: Check that the Issue has not been duplicated. 19 | options: 20 | - label: Checked 21 | required: true 22 | 23 | - type: input 24 | id: service-name 25 | attributes: 26 | label: Service Name 27 | description: Name of service for which you would like to add a logo. 28 | placeholder: ex. GitHub 29 | validations: 30 | required: true 31 | 32 | - type: input 33 | id: service-name-ja 34 | attributes: 35 | label: Service name in Japanese 36 | description: How to read the service you wish to add in Japanese. 37 | placeholder: 例) ギットハブ 38 | validations: 39 | required: true 40 | 41 | - type: textarea 42 | id: comment 43 | attributes: 44 | label: Comment 45 | description: Please attach images to this area. 46 | validations: 47 | required: false 48 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "ServiceLogos" 3 | version = "0" 4 | description = "" 5 | authors = [] 6 | dependencies = [] 7 | requires-python = ">=3.10" 8 | readme = "docs/README.md" 9 | license = { text = "CC BY-NC-SA 4.0" } 10 | 11 | [tool.pdm] 12 | distribution = false 13 | 14 | [tool.pdm.dev-dependencies] 15 | dev = ["ruff>=0.4.2", "basedpyright>=1.10.4"] 16 | 17 | [tool.pdm.scripts] 18 | generate = "python3 docs/scripts/generate-images-table.py" 19 | 20 | [tool.basedpyright] 21 | pythonVersion = "3.10" 22 | typeCheckingMode = "standard" 23 | 24 | [tool.ruff.lint] 25 | preview = true 26 | ignore = [ 27 | "B008", 28 | "B905", 29 | # "COM812", 30 | "E501", 31 | "FBT001", 32 | "FBT002", 33 | "ISC001", 34 | "PERF203", 35 | "PGH003", 36 | "PLC04", 37 | "RUF001", 38 | "RUF002", 39 | "RUF003", 40 | "RUF006", 41 | "RUF100", 42 | "S101", 43 | "S311", 44 | "S404", 45 | "SIM117", 46 | "TRY002", 47 | "TRY003", 48 | ] 49 | select = [ 50 | "A", 51 | "ANN001", 52 | "ARG", 53 | "ASYNC", 54 | "B", 55 | "C4", 56 | "COM", 57 | "DTZ", 58 | "E", 59 | "F", 60 | "FBT", 61 | "FLY", 62 | "FURB", 63 | "I", 64 | "ISC", 65 | "N", 66 | "NPY", 67 | "PERF", 68 | "PIE", 69 | "PGH", 70 | # "PL", 71 | "PT", 72 | "PTH", 73 | "PYI", 74 | "Q", 75 | "RET", 76 | "RSE", 77 | "RUF", 78 | "S", 79 | "SIM", 80 | "SLF", 81 | "SLOT", 82 | "TCH", 83 | "TRY", 84 | "YTT", 85 | ] 86 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fix-request.yml: -------------------------------------------------------------------------------- 1 | name: Modification 2 | description: Request a logo modification. 3 | title: "[Fix] " 4 | labels: ["fix"] 5 | assignees: 6 | - SAWARATSUKI 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Please post it in the issues. We'll create it once confirmed. 12 | Depending on individual schedules, we may not be able to respond immediately. It may take several days. 13 | Logo will be handled only for correction of typographical errors and other mistakes. Logo design changes will not be handled. 14 | 15 | - type: checkboxes 16 | id: duplicate-check 17 | attributes: 18 | label: Check for duplicates 19 | description: Check that the Issue has not been duplicated. 20 | options: 21 | - label: Checked 22 | required: true 23 | 24 | - type: input 25 | id: service-name 26 | attributes: 27 | label: Service Name 28 | description: Name of the service for which you are requesting a change. 29 | placeholder: ex. GitHub 30 | validations: 31 | required: true 32 | 33 | - type: input 34 | id: revision-detail 35 | attributes: 36 | label: Description of modifications 37 | description: Please describe the modification in detail 38 | placeholder: ex. Corrected Japanese spelling of Github from "ぎっとはぶ" to "ギットハブ. 39 | validations: 40 | required: true 41 | 42 | - type: textarea 43 | id: comment 44 | attributes: 45 | label: Comment 46 | description: If you have a basis for modification, please describe it here. 47 | validations: 48 | required: false 49 | -------------------------------------------------------------------------------- /docs/scripts/generate-images-table.py: -------------------------------------------------------------------------------- 1 | import re 2 | from contextlib import suppress 3 | from dataclasses import dataclass 4 | from pathlib import Path 5 | from typing import TypeAlias 6 | from urllib.parse import quote 7 | 8 | FolderDict: TypeAlias = dict[str, list[Path]] 9 | 10 | 11 | @dataclass 12 | class ReadMeInfo: 13 | path: Path 14 | locale: str 15 | 16 | 17 | DOCS_FOLDER = Path(__file__).parent.parent 18 | ROOT_FOLDER = DOCS_FOLDER.parent 19 | 20 | START = "" 21 | END = "" 22 | 23 | 24 | LOCALE: dict[str, dict[str, str]] = { 25 | "en": {"name": "Name", "image": "Image"}, 26 | "ja": {"name": "名前", "image": "画像"}, 27 | "zhHans": {"name": "名称", "image": "图片"}, 28 | "zhHant": {"name": "名稱", "image": "圖片"}, 29 | "es": {"name": "Nombre", "image": "Imagen"}, 30 | } 31 | 32 | 33 | def l5(n: str | None, k: str) -> str: 34 | if n: 35 | with suppress(KeyError): 36 | return LOCALE[n][k] 37 | with suppress(KeyError): 38 | return LOCALE["en"][k] 39 | return k 40 | 41 | 42 | def find_image_folders() -> FolderDict: 43 | return { 44 | x.name: images 45 | for x in ROOT_FOLDER.iterdir() 46 | if x.is_dir() and (images := list(x.glob("*.png"))) 47 | } 48 | 49 | 50 | def find_readme() -> list[ReadMeInfo]: 51 | return [ 52 | ReadMeInfo( 53 | path=x, 54 | locale=( 55 | res["loc"] 56 | if (res := re.search(r"README-(?P.+)", x.stem)) 57 | else "en" 58 | ), 59 | ) 60 | for x in DOCS_FOLDER.glob("README*.md") 61 | ] 62 | 63 | 64 | def generate_markdown(folders: FolderDict, locale: str | None = None) -> str: 65 | def get_image_tags(images: list[Path]) -> str: 66 | return " ".join( 67 | ( 68 | f'' 70 | ) 71 | for x in images 72 | ) 73 | 74 | item_list = [ 75 | ( 76 | folder, 77 | sorted( # move exact match to first 78 | images, 79 | key=lambda x: "\0" if x.stem == folder else x.stem.lower(), 80 | ), 81 | ) 82 | for folder, images in sorted(folders.items(), key=lambda x: x[0].lower()) 83 | ] 84 | lines = [ 85 | f"| {l5(locale, 'name')} | {l5(locale, 'image')} |", 86 | "| --- | --- |", 87 | *(f"| {folder} | {get_image_tags(images)} |" for folder, images in item_list), 88 | ] 89 | return "\n".join(lines) 90 | 91 | 92 | def replace_file(content: str, inner: str) -> str: 93 | start_index = content.find(START) 94 | end_index = content.find(END) 95 | if start_index == -1 or end_index == -1 or start_index >= end_index: 96 | raise ValueError("Invalid table start or end mark") 97 | 98 | pfx = content[: start_index + len(START)] 99 | sfx = content[end_index :] 100 | return f"{pfx}\n\n{inner}\n\n{sfx}" 101 | 102 | 103 | def process_file(info: ReadMeInfo, image_folders: FolderDict): 104 | md_table = generate_markdown(image_folders, info.locale) 105 | content = info.path.read_text("u8") 106 | try: 107 | replaced = replace_file(content, md_table) 108 | except ValueError as e: 109 | raise ValueError(f"Error replacing {info.path.name}") from e 110 | info.path.write_text(replaced, "u8") 111 | 112 | 113 | def main(): 114 | image_folders = find_image_folders() 115 | print(f"Found {len(image_folders)} image folders") 116 | readme_files = find_readme() 117 | for info in readme_files: 118 | print(f"Processing {info.path.name}, locale: {info.locale}") 119 | process_file(info, image_folders) 120 | 121 | 122 | if __name__ == "__main__": 123 | main() 124 | -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- 1 | # This file is @generated by PDM. 2 | # It is not intended for manual editing. 3 | 4 | [metadata] 5 | groups = ["default", "dev"] 6 | strategy = ["cross_platform", "inherit_metadata"] 7 | lock_version = "4.4.1" 8 | content_hash = "sha256:da768b7300d6fff6c15bd8b2f3a5af657602af5788500f44e0b168f3048f1aa4" 9 | 10 | [[package]] 11 | name = "basedpyright" 12 | version = "1.10.4" 13 | requires_python = ">=3.8" 14 | summary = "static type checking for Python (but based)" 15 | groups = ["dev"] 16 | dependencies = [ 17 | "nodejs-bin>=18.4.0a4", 18 | ] 19 | files = [ 20 | {file = "basedpyright-1.10.4-py3-none-any.whl", hash = "sha256:fb9eb77830eff56c52e0557ed3de165d85373b2b391dd6747ed9aa21415e8e4d"}, 21 | {file = "basedpyright-1.10.4.tar.gz", hash = "sha256:03136288db5f2212d3f89e3572c6833e155c60754da1779453f714468d9b8cae"}, 22 | ] 23 | 24 | [[package]] 25 | name = "nodejs-bin" 26 | version = "18.4.0a4" 27 | requires_python = "~=3.5" 28 | summary = " Node.js is an open-source, cross-platform, back-end JavaScript\nruntime environment that runs on the V8 engine and executes JavaScript code\noutside a web browser." 29 | groups = ["dev"] 30 | files = [ 31 | {file = "nodejs_bin-18.4.0a4-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:16cb1abf7fe8c11c574e1e474d9f934a0df49a480290eae6e733d8bb09512e22"}, 32 | {file = "nodejs_bin-18.4.0a4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:068ca987ed83ea1123775fafe5dc22d8f2ff920d7d31571e1bfe6fb1093833eb"}, 33 | {file = "nodejs_bin-18.4.0a4-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:06cfeaa4d26eec94d8edb9927525ce94eb96dadc81f7d1daed42d1a7d003a4c9"}, 34 | {file = "nodejs_bin-18.4.0a4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:431ee3529f4fb226ddcfd4f14cb37e7df31238c42dfd051f4bf8f0c21029b133"}, 35 | {file = "nodejs_bin-18.4.0a4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:21f1f77ddc8fe05353bb6d6ee8e5a62edb3a8dcdb2740a5f9307fd8d9eef6691"}, 36 | {file = "nodejs_bin-18.4.0a4-py3-none-win32.whl", hash = "sha256:59671fdc563dabb8be8a0b6dae4169d780482b3c9e0fba3f9aa2b7ee8d2261ac"}, 37 | {file = "nodejs_bin-18.4.0a4-py3-none-win_amd64.whl", hash = "sha256:cbd509218b4b17f75ee7841f9c21d5cacc1626d3b823a652a6627dbad18228ec"}, 38 | ] 39 | 40 | [[package]] 41 | name = "ruff" 42 | version = "0.4.2" 43 | requires_python = ">=3.7" 44 | summary = "An extremely fast Python linter and code formatter, written in Rust." 45 | groups = ["dev"] 46 | files = [ 47 | {file = "ruff-0.4.2-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:8d14dc8953f8af7e003a485ef560bbefa5f8cc1ad994eebb5b12136049bbccc5"}, 48 | {file = "ruff-0.4.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:24016ed18db3dc9786af103ff49c03bdf408ea253f3cb9e3638f39ac9cf2d483"}, 49 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e2e06459042ac841ed510196c350ba35a9b24a643e23db60d79b2db92af0c2b"}, 50 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3afabaf7ba8e9c485a14ad8f4122feff6b2b93cc53cd4dad2fd24ae35112d5c5"}, 51 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:799eb468ea6bc54b95527143a4ceaf970d5aa3613050c6cff54c85fda3fde480"}, 52 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:ec4ba9436a51527fb6931a8839af4c36a5481f8c19e8f5e42c2f7ad3a49f5069"}, 53 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6a2243f8f434e487c2a010c7252150b1fdf019035130f41b77626f5655c9ca22"}, 54 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8772130a063f3eebdf7095da00c0b9898bd1774c43b336272c3e98667d4fb8fa"}, 55 | {file = "ruff-0.4.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ab165ef5d72392b4ebb85a8b0fbd321f69832a632e07a74794c0e598e7a8376"}, 56 | {file = "ruff-0.4.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1f32cadf44c2020e75e0c56c3408ed1d32c024766bd41aedef92aa3ca28eef68"}, 57 | {file = "ruff-0.4.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:22e306bf15e09af45ca812bc42fa59b628646fa7c26072555f278994890bc7ac"}, 58 | {file = "ruff-0.4.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:82986bb77ad83a1719c90b9528a9dd663c9206f7c0ab69282af8223566a0c34e"}, 59 | {file = "ruff-0.4.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:652e4ba553e421a6dc2a6d4868bc3b3881311702633eb3672f9f244ded8908cd"}, 60 | {file = "ruff-0.4.2-py3-none-win32.whl", hash = "sha256:7891ee376770ac094da3ad40c116258a381b86c7352552788377c6eb16d784fe"}, 61 | {file = "ruff-0.4.2-py3-none-win_amd64.whl", hash = "sha256:5ec481661fb2fd88a5d6cf1f83403d388ec90f9daaa36e40e2c003de66751798"}, 62 | {file = "ruff-0.4.2-py3-none-win_arm64.whl", hash = "sha256:cbd1e87c71bca14792948c4ccb51ee61c3296e164019d2d484f3eaa2d360dfaf"}, 63 | {file = "ruff-0.4.2.tar.gz", hash = "sha256:33bcc160aee2520664bc0859cfeaebc84bb7323becff3f303b8f1f2d81cb4edc"}, 64 | ] 65 | -------------------------------------------------------------------------------- /docs/README-zhHans.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # ServiceLogos 6 | 7 | 你好,早上好,或者晚上好。 8 | 9 | 这里是用来管理由Sawaratsuki制作的各种logo的仓库。 10 | 11 | > [!WARNING] 12 | > 这里提供的logo并非官方logo。 13 | 14 | # 许可协议 15 | 16 | ## 想要使用logo的话请务必认真阅读本节 17 | 18 | > [!NOTE] 19 | > 20 | > ### 概述: 21 | > 22 | > - 只要是非盈利目的就可以自由使用这里的logo。 23 | > 比如说自己打印成贴纸自用或者是用作IDE的图标之类的。 24 | > - 请标明作者出处! 25 | > 可以适当进行修改,但是新logo的许可协议要和原来的logo保持一致。 26 | > - 如果你使用了这里的logo来做了一些什么东西的话,能够发推特提及[@Sawaratsuki](https://x.com/sawaratsuki1004)我一下,我会非常兴奋的! 27 | 28 | ### 细则: 29 | 30 | **Commit[c2cf292] 之后的徽标未获得 CC BY-NC-SA 4.0 许可。** 31 | **以下条款适用于提交后的徽标 Commit[c2cf292]。** 32 | 33 | 1. 这些标志的创作者是泽原月。 这并不意味着版权已被完全放弃。 34 | 2. 请检查以下项目。> - 推荐信用。 这会给我动力,所以请尝试一下。> - 可以修改和重新混合。> - 禁止用于商业目的(销售使用该标志的产品等)。 但是,如果属于以下指定的项目,则可以出售。> 1. 如果各服务官方想要将其用于商业目的出售 > 2.如果泽原月允许的话 > (如发现违规行为,请立即联系[@Sawaratsuki](https://x.com/sawaratsuki1004)!) 35 | 3、未经许可,将贴纸、贴纸等用于个人用途是没有问题的! 36 | 37 | # 如果这里没有您想要的logo 38 | 39 | 请提交issues。我确认了之后就会设计制作logo。 40 | 41 | 由于个人时间安排等因素,我们可能会在几天之后才能对你的请求做出回应。 42 | 43 | > [!IMPORTANT] 44 | > 提交issues时请务必带上request的标签。 45 | 46 | # 写给各个服务商官方: 47 | 48 | 请通过[私信联系Sawaratsuki](https://x.com/sawaratsuki1004)申请移除logo。 我们将立即为您移除。 49 | 50 | 如果你想要售卖带有这些logo的产品的话也请[私信联系Sawaratsuki](https://x.com/sawaratsuki1004)。 51 | 52 | # 设计工具 53 | 54 | - Photoshop / Illustrator 55 | - 字体: [ユールカフォント] 56 | - Sawaratsuki的创作热情 57 | - 各位的感想推文(非常感谢!) 58 | 59 | # 致谢 60 | 61 | 这些标志是衍生作品。 62 | 没有什么比每个官员使用的标志更好的了。 63 | 我们谨向在此发布服务的人们表示最深切的谢意。 64 | 65 | ## 图片列表 66 | 67 | 68 | 69 | | 名称 | 图片 | 70 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 71 | | 403Forbidden | Forbidden | 72 | | 404Notfound | NotFound | 73 | | 418I'mateapot | 418I%27mateapot | 74 | | 503ServiceUnavailable.png | ServiceUnavailable | 75 | | Angular | Angular Angular_Old | 76 | | ArchLinux | ArchLinux | 77 | | C | C | 78 | | C# | C%23 C%23%20Purple | 79 | | C++ | C%2B%2B | 80 | | C,C#,C++ | All | 81 | | Clion | Clion | 82 | | Cloudflare | Cloudflare | 83 | | Cobol | Cobol | 84 | | Crowdstrike | CroudStrike | 85 | | Discord | Discord | 86 | | Figma | Figma | 87 | | FlipperZero | FlipperZero | 88 | | Flutter | FlutterTransparent | 89 | | FORTRAN | FORTRAN | 90 | | GitHub | GitHub | 91 | | GitLab | GitLab | 92 | | Gnuemacs | GNUEmacs | 93 | | Go | Golang | 94 | | Haskell | Haskell Haskell%20%24 | 95 | | Hono | Hono | 96 | | Html | HTML | 97 | | Htmx | htmx | 98 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 99 | | Java | Java | 100 | | Julia | Julia | 101 | | Juniper | Juniper | 102 | | Kernel Panic | KernelPanic | 103 | | Kotlin | Kotlin Kotlin_New | 104 | | Laravel | Laravel | 105 | | MS-DOS | MS-DOS | 106 | | Mui | Mui | 107 | | Next.js | Next.js | 108 | | Node.js | Node.js | 109 | | Photoshop | Photoshop | 110 | | Python | Python | 111 | | Qwik.js | Qwik | 112 | | RaspberryPi | Raspberry%20Pi | 113 | | React | React | 114 | | RhineLab | RhineLab | 115 | | Rider | Rider | 116 | | Rstudio | RStudio | 117 | | Ruby | Ruby | 118 | | Rust | Rust | 119 | | Streamloots | Streamloots | 120 | | Swift | Swift | 121 | | Tailwindcss | Tailwindcss6 | 122 | | Teamspeak | TeamSpeak | 123 | | Twitter | Twitter | 124 | | TypeScript | TypeScript | 125 | | Ubuntu | Ubuntu | 126 | | UnityBlender | UnityBlenderT | 127 | | Vim | VIM | 128 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 129 | | Vite | Vite | 130 | | Voicemod | Voicemod | 131 | | Vrchat | VRChat | 132 | | Vue | Vue | 133 | | Wallhack | WALLHACK | 134 | | X | X | 135 | 136 | 137 | 138 | 如果每种语言的 README 不一致,则以日语 README 为准。 139 | -------------------------------------------------------------------------------- /docs/README-zhHant.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # ServiceLogos 6 | 7 | 早安,又或是晚安 8 | 9 | 這裡是用來上傳由 Sawaratsuki 所製作的各式 logo 的 Repository。 10 | 11 | > [!WARNING] 12 | > 這裡的所有 logo 皆非官方 logo。 13 | 14 | > [!Important] 15 | > 禁止這裡全部 logo 用於人工智慧的訓練。 16 | 17 | # 許可協議 18 | 19 | ## 若想使用 logo 的話,請務必認真閱讀本節 20 | 21 | > [!NOTE] 22 | > 23 | > ### 概述: 24 | > 25 | > - 若為非營利目的,可以自由地使用這裡的 logo。例如:製作成貼紙自用、IDE icon 等。 26 | > - 可以基於原本的 logo 作適當的修改,但需與原本的許可協議保持一致,也請註明出處。 27 | > - 若有使用到這裡的 logo 製作出一些作品的話,能夠發推特提及 [@Sawaratsuki](https://x.com/sawaratsuki1004),我會非常高興的! 28 | 29 | ### 細項 30 | 31 | **Commit[c2cf292] 之後的標誌未獲得 CC BY-NC-SA 4.0 授權。** 32 | **以下條款適用於提交後的標誌 Commit[c2cf292]。** 33 | 34 | 1. 這些標誌的創作者是澤原月。 這並不意味著版權已被完全放棄。 35 | 2. 請檢查以下項目: 36 | > - 推薦信用。 這會給我動力,所以請嘗試一下。 37 | > - 可以修改和重新混合。 38 | > - 禁止用於商業目的(銷售使用該標誌的產品等)。 但是,如果屬於以下指定的項目,則可以出售。 39 | > 40 | > 1. 如果各服務官方想要將其用於商業目的出售 41 | > 2. 如果澤原月允許的話 >(如發現違規行為,請立即聯絡[@Sawaratsuki](https://x.com/sawaratsuki1004)!) 42 | 3. 未經許可,將貼紙、貼紙等用於個人用途是沒有問題的! 43 | 44 | # 希望能做一個這樣的 logo! 45 | 46 | 請提交 issues,我確認後會進行製作。 47 | 48 | 因個人的時間安排,可能會花費數天時間,也不一定全部都會製作。 49 | 50 | > [!IMPORTANT] 51 | > 開立 issues 時請帶上 `request` 的標籤。 52 | 53 | # 給各個被製作的服務商或官方 54 | 55 | 若想要刪除 logo 的話,請[發私訊聯繫 Sawaratsuki](https://x.com/sawaratsuki1004),我會馬上刪除的。 56 | 57 | 需要以官方身份販賣的話也請[發私訊聯繫 Sawaratsuki](https://x.com/sawaratsuki1004)。 58 | 59 | # 設計時所使用的工具 60 | 61 | - Photoshop / Illustrator 62 | - 字體:[ユールカフォント] 63 | - Sawaratsuki 的創作熱情 64 | - 各位的回饋感想推文(非常感謝!) 65 | 66 | # 致謝 67 | 68 | 這些標誌是衍生作品。 69 | 沒有什麼比每個官員使用的標誌更好的了。 70 | 我們謹向在此發布服務的人表示最深切的謝意。 71 | 72 | # 圖片列表 73 | 74 | 75 | 76 | | 名稱 | 圖片 | 77 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 78 | | 403Forbidden | Forbidden | 79 | | 404Notfound | NotFound | 80 | | 418I'mateapot | 418I%27mateapot | 81 | | 503ServiceUnavailable.png | ServiceUnavailable | 82 | | Angular | Angular Angular_Old | 83 | | ArchLinux | ArchLinux | 84 | | C | C | 85 | | C# | C%23 C%23%20Purple | 86 | | C++ | C%2B%2B | 87 | | C,C#,C++ | All | 88 | | Clion | Clion | 89 | | Cloudflare | Cloudflare | 90 | | Cobol | Cobol | 91 | | Crowdstrike | CroudStrike | 92 | | Discord | Discord | 93 | | Figma | Figma | 94 | | FlipperZero | FlipperZero | 95 | | Flutter | FlutterTransparent | 96 | | FORTRAN | FORTRAN | 97 | | GitHub | GitHub | 98 | | GitLab | GitLab | 99 | | Gnuemacs | GNUEmacs | 100 | | Go | Golang | 101 | | Haskell | Haskell Haskell%20%24 | 102 | | Hono | Hono | 103 | | Html | HTML | 104 | | Htmx | htmx | 105 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 106 | | Java | Java | 107 | | Julia | Julia | 108 | | Juniper | Juniper | 109 | | Kernel Panic | KernelPanic | 110 | | Kotlin | Kotlin Kotlin_New | 111 | | Laravel | Laravel | 112 | | MS-DOS | MS-DOS | 113 | | Mui | Mui | 114 | | Next.js | Next.js | 115 | | Node.js | Node.js | 116 | | Photoshop | Photoshop | 117 | | Python | Python | 118 | | Qwik.js | Qwik | 119 | | RaspberryPi | Raspberry%20Pi | 120 | | React | React | 121 | | RhineLab | RhineLab | 122 | | Rider | Rider | 123 | | Rstudio | RStudio | 124 | | Ruby | Ruby | 125 | | Rust | Rust | 126 | | Streamloots | Streamloots | 127 | | Swift | Swift | 128 | | Tailwindcss | Tailwindcss6 | 129 | | Teamspeak | TeamSpeak | 130 | | Twitter | Twitter | 131 | | TypeScript | TypeScript | 132 | | Ubuntu | Ubuntu | 133 | | UnityBlender | UnityBlenderT | 134 | | Vim | VIM | 135 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 136 | | Vite | Vite | 137 | | Voicemod | Voicemod | 138 | | Vrchat | VRChat | 139 | | Vue | Vue | 140 | | Wallhack | WALLHACK | 141 | | X | X | 142 | 143 | 144 | 145 | 如果每種語言的 README 不一致,則以日文 README 為準。 146 | -------------------------------------------------------------------------------- /docs/README-ja.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # ServiceLogos 6 | 7 | こんにちは、こんばんは 8 | ここはさわらつきが作った各サービスのロゴをアップロードするリポジトリです。 9 | 10 | > [!WARNING] 11 | > ここにあるロゴは公式のロゴではありません。 12 | 13 | > [!Important] 14 | > いかなる場合においても、ロゴをAI学習に使用することは認めません。 15 | 16 | # ライセンス 17 | 18 | ## ロゴを使用したい場合、このセクションを必ずお読みください 19 | 20 | > [!NOTE] 21 | > 22 | > ### 要約: 23 | > 24 | > - 営利目的でない、非営利目的である場合このロゴを自由に使用することが出来ます。 25 | > 例えば、シールやステッカーとして印刷することやエディタのアイコンなどに使用できます。 26 | > - クレジットを明記してほしいです! 27 | > 改変やリミックスは自由ですが、その新しい作品にもこの元のロゴと同じライセンスを付けてください。 28 | > - このロゴを使用してなにか作った場合は[さわらつきをメンション](https://x.com/sawaratsuki1004)してポストしてくれるとモチベーションに繋がります! 29 | 30 | ### 全項 31 | 32 | **Commit[c2cf292]以降のロゴについてはCC BY-NC-SA 4.0のライセンスが付与されません。** 33 | **Commit[c2cf292]以降のロゴは以下の規約が適用されます。** 34 | 35 | 1. これらのロゴの作成者は さわらつき です。 著作権を完全に放棄したわけではありません。 36 | 2. 以下の項目を確認してください。 37 | > - クレジットを明記することが推奨されます。モチベーションに繋がりますので、ぜひお願いします。 38 | > - 改変、リミックスすることが可能です。 39 | > - 営利目的(ロゴを使用した商品の販売等)での使用は禁止です。ただし以下に定める項目に該当する場合は販売することが出来ます。 40 | > 1. 各サービスの公式が営利目的で販売したい場合 41 | > 2. さわらつきが許可した場合 42 | > (違反を見つけた場合はすぐに[@さわらつき](https://x.com/sawaratsuki1004)にご連絡ください!) 43 | 3. ステッカーやシールなどを個人使用の範囲で許可なく使用しても問題ありません! 44 | 45 | # ここにないロゴが欲しい! 46 | 47 | issuesに投稿してください。確認次第作成します。 48 | 個人のスケジュールにより対応できない場合もあります。数日かかる場合もあります。 49 | 50 | > [!IMPORTANT] 51 | > issuesに投稿する場合必ずリクエストタグを付けて投稿してください 52 | 53 | # 各サービスの公式の方へ 54 | 55 | ロゴの削除を申請する場合は[さわらつきのダイレクトメッセージ](https://x.com/sawaratsuki1004)までお問い合わせください 56 | すぐに削除いたします 57 | 公式で販売したい場合も同様に[さわらつきのダイレクトメッセージ](https://x.com/sawaratsuki1004)までお問い合わせください 58 | 59 | # デザインを作るに当たって使用しているもの 60 | 61 | - Photoshop / Illustrator 62 | - Font [ユールカフォント] 63 | - さわらつきのモチベーションと気持ち 64 | - 皆様の感想ポスト 65 | 66 | # 謝辞 67 | 68 | これらのロゴは二次創作です。 69 | 各公式が使用しているロゴに勝るものはありません。 70 | ここで公開したサービスの方たちに深く感謝いたします。 71 | 72 | # 画像一覧 73 | 74 | 75 | 76 | | 名前 | 画像 | 77 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 78 | | 403Forbidden | Forbidden | 79 | | 404Notfound | NotFound | 80 | | 418I'mateapot | 418I%27mateapot | 81 | | 503ServiceUnavailable.png | ServiceUnavailable | 82 | | Angular | Angular Angular_Old | 83 | | ArchLinux | ArchLinux | 84 | | C | C | 85 | | C# | C%23 C%23%20Purple | 86 | | C++ | C%2B%2B | 87 | | C,C#,C++ | All | 88 | | Clion | Clion | 89 | | Cloudflare | Cloudflare | 90 | | Cobol | Cobol | 91 | | Crowdstrike | CroudStrike | 92 | | Discord | Discord | 93 | | Figma | Figma | 94 | | FlipperZero | FlipperZero | 95 | | Flutter | FlutterTransparent | 96 | | FORTRAN | FORTRAN | 97 | | GitHub | GitHub | 98 | | GitLab | GitLab | 99 | | Gnuemacs | GNUEmacs | 100 | | Go | Golang | 101 | | Haskell | Haskell Haskell%20%24 | 102 | | Hono | Hono | 103 | | Html | HTML | 104 | | Htmx | htmx | 105 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 106 | | Java | Java | 107 | | Julia | Julia | 108 | | Juniper | Juniper | 109 | | Kernel Panic | KernelPanic | 110 | | Kotlin | Kotlin Kotlin_New | 111 | | Laravel | Laravel | 112 | | MS-DOS | MS-DOS | 113 | | Mui | Mui | 114 | | Next.js | Next.js | 115 | | Node.js | Node.js | 116 | | Photoshop | Photoshop | 117 | | Python | Python | 118 | | Qwik.js | Qwik | 119 | | RaspberryPi | Raspberry%20Pi | 120 | | React | React | 121 | | RhineLab | RhineLab | 122 | | Rider | Rider | 123 | | Rstudio | RStudio | 124 | | Ruby | Ruby | 125 | | Rust | Rust | 126 | | Streamloots | Streamloots | 127 | | Swift | Swift | 128 | | Tailwindcss | Tailwindcss6 | 129 | | Teamspeak | TeamSpeak | 130 | | Twitter | Twitter | 131 | | TypeScript | TypeScript | 132 | | Ubuntu | Ubuntu | 133 | | UnityBlender | UnityBlenderT | 134 | | Vim | VIM | 135 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 136 | | Vite | Vite | 137 | | Voicemod | Voicemod | 138 | | Vrchat | VRChat | 139 | | Vue | Vue | 140 | | Wallhack | WALLHACK | 141 | | X | X | 142 | 143 | 144 | 145 | 各言語のREADMEで不整合があった場合は、日本語のREADMEを優先します。 146 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # Archive ServiceLogos 6 | 7 | > [!WARNING] 8 | > The logos here are not official logos. 9 | 10 | > [!Important] 11 | > In no circumstances do I allow the use of the logo I created for AI learning. 12 | 13 | # License 14 | 15 | ## If you want to use the logo, please read this section carefully. 16 | 17 | > [!NOTE] 18 | > 19 | > ### Summary: 20 | > 21 | > - You are free to use this logo for non-commercial, non-profit purposes. 22 | > For example, you can use it for printing as stickers, as icons for editors, etc. 23 | > - Please give the appropriate credits! 24 | > You are free to modify or remix it, but you must license that new work under the same license as this original logo. 25 | > - If you create something using this logo, mentioning [Sawaratsuki](https://x.com/sawaratsuki1004) when posting would be motivating! 26 | 27 | ### All items 28 | 29 | **CC BY-NC-SA 4.0 license is not granted for logos after ## Commit[c2cf292].** 30 | **The following terms apply to logos after ## Commit[c2cf292]** 31 | 32 | 1. The creator of these logos is SAWATSUKI. Copyright is not fully relinquished. 33 | 2. please make sure that 34 | > - It is recommended that credits be clearly indicated. It is motivational, so please do so. 35 | > - You may alter or remix the work. 36 | > - Use of the logo for commercial purposes (such as selling products using the logo) is prohibited. However, you may sell the logo if the following items are applicable. 37 | > 38 | > 1. when the official of each service wants to sell the product for commercial purposes 39 | > 2. when Sawaratsuki gives permission 40 | > (If you find any violation, please contact [@Sawaratsuki](https://x.com/sawaratsuki1004) immediately!) 41 | 3. stickers and stickers can be used without permission within the scope of personal use! 42 | 43 | # Want a logo that's not here! 44 | 45 | Please post it in the issues. We'll create it once confirmed. 46 | Depending on individual schedules, we may not be able to respond immediately. It may take several days. 47 | 48 | > [!IMPORTANT] 49 | > When posting to issues, be sure to include a request tag. 50 | 51 | # For officials of each service 52 | 53 | Please send a [Direct message to SAWATSUKI](https://x.com/sawaratsuki1004) to request a logo removal. 54 | We will remove it immediately. 55 | If you would like to sell your product officially, please send a [Direct message to SAWATSUKI](https://x.com/sawaratsuki1004) in the same way! 56 | 57 | # Tools used for designing 58 | 59 | - Photoshop / Illustrator 60 | - Font [Eureka Font] 61 | - Sawaratsuki's motivation and feelings 62 | - Feedback posts from everyone 63 | 64 | # Acknowledgments 65 | 66 | These logos are derivative works. 67 | There is nothing better than a logo used by each officer. 68 | We would like to express our deepest gratitude to the people who served in this publication. 69 | 70 | ## Image List 71 | 72 | 73 | 74 | | Name | Image | 75 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 76 | | 403Forbidden | Forbidden | 77 | | 404Notfound | NotFound | 78 | | 418I'mateapot | 418I%27mateapot | 79 | | 503ServiceUnavailable.png | ServiceUnavailable | 80 | | Angular | Angular Angular_Old | 81 | | ArchLinux | ArchLinux | 82 | | C | C | 83 | | C# | C%23 C%23%20Purple | 84 | | C++ | C%2B%2B | 85 | | C,C#,C++ | All | 86 | | Clion | Clion | 87 | | Cloudflare | Cloudflare | 88 | | Cobol | Cobol | 89 | | Crowdstrike | CroudStrike | 90 | | Discord | Discord | 91 | | Figma | Figma | 92 | | FlipperZero | FlipperZero | 93 | | Flutter | FlutterTransparent | 94 | | FORTRAN | FORTRAN | 95 | | GitHub | GitHub | 96 | | GitLab | GitLab | 97 | | Gnuemacs | GNUEmacs | 98 | | Go | Golang | 99 | | Haskell | Haskell Haskell%20%24 | 100 | | Hono | Hono | 101 | | Html | HTML | 102 | | Htmx | htmx | 103 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 104 | | Java | Java | 105 | | Julia | Julia | 106 | | Juniper | Juniper | 107 | | Kernel Panic | KernelPanic | 108 | | Kotlin | Kotlin Kotlin_New | 109 | | Laravel | Laravel | 110 | | MS-DOS | MS-DOS | 111 | | Mui | Mui | 112 | | Next.js | Next.js | 113 | | Node.js | Node.js | 114 | | Photoshop | Photoshop | 115 | | Python | Python | 116 | | Qwik.js | Qwik | 117 | | RaspberryPi | Raspberry%20Pi | 118 | | React | React | 119 | | RhineLab | RhineLab | 120 | | Rider | Rider | 121 | | Rstudio | RStudio | 122 | | Ruby | Ruby | 123 | | Rust | Rust | 124 | | Streamloots | Streamloots | 125 | | Swift | Swift | 126 | | Tailwindcss | Tailwindcss6 | 127 | | Teamspeak | TeamSpeak | 128 | | Twitter | Twitter | 129 | | TypeScript | TypeScript | 130 | | Ubuntu | Ubuntu | 131 | | UnityBlender | UnityBlenderT | 132 | | Vim | VIM | 133 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 134 | | Vite | Vite | 135 | | Voicemod | Voicemod | 136 | | Vrchat | VRChat | 137 | | Vue | Vue | 138 | | Wallhack | WALLHACK | 139 | | X | X | 140 | 141 | 142 | 143 | If there is any inconsistency in the README of each language, the Japanese README will take precedence. 144 | -------------------------------------------------------------------------------- /docs/README-es.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # ServiceLogos 6 | 7 | Hola, buenas a todos. 8 | Este es un repositorio creado por Sawaratsuki para subir logos de diversos servicios. 9 | 10 | > [!WARNING] 11 | > Estos logos no son oficiales. 12 | 13 | > [!IMPORTANT] 14 | > No se permite bajo ningún concepto el uso de el contenido de este repositorio para el entrenamiento de IA. 15 | 16 | # Licencia 17 | 18 | ## Si quieres usar un logo, por favor lee la siguiente sección atentamente 19 | 20 | > [!NOTE] 21 | > 22 | > ### Resumen: 23 | > 24 | > - Eres libre de usar este logo para fines no comerciales y sin ánimo de lucro. 25 | > Por ejemplo, puedes usarlo para imprimirlo como pegatinas, como iconos para editores, etc. 26 | > - ¡Por favor, no olvides atribuir los créditos apropiados! 27 | > Eres libre de modificar el logo, pero debes licenciar la obra derivada bajo la misma licencia que la del logo original. 28 | > - Si creas algo usando este logo, ¡sería muy motivador que mencionaras a [Sawaratsuki](https://x.com/sawaratsuki1004) al publicarlo! 29 | 30 | ### Términos 31 | 32 | Los logotipos posteriores al `commit[c2cf292]` no están sujetos a la licencia CC BY-NC-SA 4.0. 33 | Las siguientes condiciones se aplican a los logotipos posteriores al `commit[c2cf292]`. 34 | 35 | 1. El creador de estos logos es Sawaratsuki. No se ha renunciado a los derechos de autor en su totalidad. 36 | 2. Por favor, revisa los puntos siguientes: 37 | > - Se recomienda atribuir el crédito apropiado. Es un gran motivador, así que se ruega hacerlo encarecidamente. 38 | > - Puedes modificar los logos. 39 | > - El uso comercial (como la venta de productos que lleven el logo) está prohibido. Sin embargo, se permite su venta si se cumplen las siguientes condiciones: 40 | > 1. Si el representante oficial de cada servicio quiere usarlo con ánimo de lucro 41 | > 2. Si se obtiene permiso de Sawaratsuki 42 | > (¡Si descubres algún incumplimiento, por favor contacta con [@Sawaratsuki](https://x.com/sawaratsuki1004) inmediatamente!) 43 | 3. ¡Se pueden crear pegatinas, parches, etc., para uso personal sin permiso explícito! 44 | 45 | # ¿Quieres un logo que no está aquí? 46 | 47 | Por favor, añádelo a "Issues". Lo diseñaremos una vez confirmado. 48 | Dependiendo de nuestros horarios individuales, puede que no podamos responder inmediatamente. Podría llevarnos varios días. 49 | 50 | > [!IMPORTANT] 51 | > Cuando añadas una "Issue", asegúrate de incluir la etiqueta de "request". 52 | 53 | # Para los representantes oficiales de cada servicio 54 | 55 | Por favor envía un [mensaje directo a SAWATSUKI](https://x.com/sawaratsuki1004) para solicitar la eliminación de un logo. 56 | Lo eliminaremos de inmediato. 57 | Si están interesados en comercializar su logo de forma oficial, por favor envíen un [mensaje directo a SAWATSUKI](https://x.com/sawaratsuki1004) de igual manera! 58 | 59 | # Herramientas usadas para el diseño 60 | 61 | - Photoshop / Illustrator 62 | - Fuente [Eureka Font] 63 | - La motivación y sentimientos de Sawaratsuki 64 | - El feedback y comentarios de todo el mundo 65 | 66 | # Aclaraciones y agradecimientos 67 | 68 | Estos logotipos son obras derivadas. 69 | No son mejores que los logotipos utilizados por los respectivos servicios oficiales. 70 | Queremos expresar nuestro más profundo agradecimiento a los contributores que han publicado aquí sus logos. 71 | 72 | ## Lista de imágenes 73 | 74 | 75 | 76 | | Nombre | Imagen | 77 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 78 | | 403Forbidden | Forbidden | 79 | | 404Notfound | NotFound | 80 | | 418I'mateapot | 418I%27mateapot | 81 | | 503ServiceUnavailable.png | ServiceUnavailable | 82 | | Angular | Angular Angular_Old | 83 | | ArchLinux | ArchLinux | 84 | | C | C | 85 | | C# | C%23 C%23%20Purple | 86 | | C++ | C%2B%2B | 87 | | C,C#,C++ | All | 88 | | Clion | Clion | 89 | | Cloudflare | Cloudflare | 90 | | Cobol | Cobol | 91 | | Crowdstrike | CroudStrike | 92 | | Discord | Discord | 93 | | Figma | Figma | 94 | | FlipperZero | FlipperZero | 95 | | Flutter | FlutterTransparent | 96 | | FORTRAN | FORTRAN | 97 | | GitHub | GitHub | 98 | | GitLab | GitLab | 99 | | Gnuemacs | GNUEmacs | 100 | | Go | Golang | 101 | | Haskell | Haskell Haskell%20%24 | 102 | | Hono | Hono | 103 | | Html | HTML | 104 | | Htmx | htmx | 105 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 106 | | Java | Java | 107 | | Julia | Julia | 108 | | Juniper | Juniper | 109 | | Kernel Panic | KernelPanic | 110 | | Kotlin | Kotlin Kotlin_New | 111 | | Laravel | Laravel | 112 | | MS-DOS | MS-DOS | 113 | | Mui | Mui | 114 | | Next.js | Next.js | 115 | | Node.js | Node.js | 116 | | Photoshop | Photoshop | 117 | | Python | Python | 118 | | Qwik.js | Qwik | 119 | | RaspberryPi | Raspberry%20Pi | 120 | | React | React | 121 | | RhineLab | RhineLab | 122 | | Rider | Rider | 123 | | Rstudio | RStudio | 124 | | Ruby | Ruby | 125 | | Rust | Rust | 126 | | Streamloots | Streamloots | 127 | | Swift | Swift | 128 | | Tailwindcss | Tailwindcss6 | 129 | | Teamspeak | TeamSpeak | 130 | | Twitter | Twitter | 131 | | TypeScript | TypeScript | 132 | | Ubuntu | Ubuntu | 133 | | UnityBlender | UnityBlenderT | 134 | | Vim | VIM | 135 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 136 | | Vite | Vite | 137 | | Voicemod | Voicemod | 138 | | Vrchat | VRChat | 139 | | Vue | Vue | 140 | | Wallhack | WALLHACK | 141 | | X | X | 142 | 143 | 144 | 145 | En caso de encontrar incoherencias en los README de los distintos idiomas, se debe tomar el README en japonés como referencia. 146 | -------------------------------------------------------------------------------- /docs/README-fr.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | [English README](README.md) | [日本語 README](README-ja.md) | [简体中文 README](README-zhHans.md) | [繁體中文 README](README-zhHant.md) | [Español README](README-es.md) | [README Français](README-fr.md) 4 | 5 | # ServiceLogos 6 | 7 | Bonjour à tous, 8 | Ceci est le dépôt où vous pouvez télécharger les logos des différents services créés par Sawarazuki. 9 | 10 | > [!WARNING] 11 | > Les logos présentés ici ne sont pas des logos officiels. 12 | 13 | > [!IMPORTANT] 14 | > L'utilisation de ces logos pour l'apprentissage d'IA est interdite peu importe l'usage ou les circonstances. 15 | 16 | # Licence 17 | 18 | ## Si vous souhaitez utiliser un logo, veuillez lire attentivement cette section. 19 | 20 | > [!NOTE] 21 | > 22 | > ### Résumé : 23 | > 24 | > - Vous êtes libre d'utiliser ce logo à des fins non commerciales et non lucratives. 25 | > Par exemple, vous pouvez l'utiliser pour imprimer des autocollants, des icônes pour les éditeurs de code, etc. 26 | > - Merci d'indiquer les crédits appropriés ! 27 | > Vous êtes libre de modifier le logo, mais vous devez placer l'œuvre dérivée sous la même licence que le logo original. 28 | > - Si vous créez quelque chose en utilisant ce logo, mentionner [Sawaratsuki](https://x.com/sawaratsuki1004) lors de la publication serait motivant ! 29 | 30 | ### Conditions 31 | 32 | **La licence CC BY-NC-SA 4.0 n'est pas applicable aux logos après le ## Commit[c2cf292].** 33 | **Les conditions suivantes s'appliquent aux logos après le ## Commit[c2cf292]**. 34 | 35 | 1. Le créateur de ces logos est SAWATSUKI. Les droits d'auteur ne sont pas entièrement cédés. 36 | 2. S'il vous plaît, veillez à ce que : 37 | > - Il est recommandé d'indiquer clairement les crédits. Il s'agit d'une source de motivation, alors n'hésitez pas à le faire. 38 | > - Vous pouvez modifier l'œuvre. 39 | > - L'utilisation du logo à des fins commerciales (comme la vente de produits utilisant le logo) est interdite. Toutefois, vous pouvez vendre le logo si les conditions suivantes sont remplies. 40 | > 1. Lorsque le propriétaire du service officiel désire vendre le produit a des fins commerciales. 41 | > 2. Lorsque Sawaratsuki en donne l'autorisation 42 | > (Si vous constatez une violation, veuillez contacter immédiatement [@Sawaratsuki](https://x.com/sawaratsuki1004) !) 43 | 3. Les autocollants, patchs, etc. peuvent être créés pour un usage personnel sans autorisation explicite ! 44 | 45 | # Vous désirez un logo pour un service qui n'est pas encore disponible ? 46 | 47 | Merci de créer une "Issue" pour demander un logo pour le service en question. Le logo sera créé une fois confirmé. 48 | En fonction des emploi du temps de chacun, il est possible que nous ne puissions pas répondre immédiatement à la demande. Cela pourrait prendre plusieurs jours. 49 | 50 | > [!IMPORTANT] 51 | > Lorsque vous publiez des "Issue", veillez à inclure une étiquette "request". 52 | 53 | # À l'attention des ayants droit des services 54 | 55 | Veuillez envoyer un [message direct à SAWATSUKI](https://x.com/sawaratsuki1004) pour demander le retrait du logo. 56 | Le retrait du logo sera effectué immédiatement. 57 | Si vous souhaitez vendre votre produit officiellement, veuillez envoyer un [Message direct à SAWATSUKI](https://x.com/sawaratsuki1004) de la même manière ! 58 | 59 | # Outils utilisés pour la conception 60 | 61 | - Photoshop / Illustrator 62 | - Police d'écriture [Eureka Font] 63 | - La motivation et les sentiments de Sawaratsuki 64 | - Les retours de la communauté 65 | 66 | # Remerciements 67 | 68 | Ces logos sont des œuvres dérivées. 69 | Il n'y a rien de mieux qu'un logo utilisé par chaque représentant. 70 | Nous tenons à exprimer notre profonde gratitude aux personnes qui ont participé à cette publication. 71 | 72 | ## Liste des images 73 | 74 | 75 | 76 | | Name | Image | 77 | | ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | 78 | | 403Forbidden | Forbidden | 79 | | 404Notfound | NotFound | 80 | | 418I'mateapot | 418I%27mateapot | 81 | | 503ServiceUnavailable.png | ServiceUnavailable | 82 | | Angular | Angular Angular_Old | 83 | | ArchLinux | ArchLinux | 84 | | C | C | 85 | | C# | C%23 C%23%20Purple | 86 | | C++ | C%2B%2B | 87 | | C,C#,C++ | All | 88 | | Clion | Clion | 89 | | Cloudflare | Cloudflare | 90 | | Cobol | Cobol | 91 | | Crowdstrike | CroudStrike | 92 | | Discord | Discord | 93 | | Figma | Figma | 94 | | FlipperZero | FlipperZero | 95 | | Flutter | FlutterTransparent | 96 | | FORTRAN | FORTRAN | 97 | | GitHub | GitHub | 98 | | GitLab | GitLab | 99 | | Gnuemacs | GNUEmacs | 100 | | Go | Golang | 101 | | Haskell | Haskell Haskell%20%24 | 102 | | Hono | Hono | 103 | | Html | HTML | 104 | | Htmx | htmx | 105 | | IamSeries | IamDesigner%21 IamDesigner%21English IamProgrammer%21 IamProgrammerEnglish | 106 | | Java | Java | 107 | | Julia | Julia | 108 | | Juniper | Juniper | 109 | | Kernel Panic | KernelPanic | 110 | | Kotlin | Kotlin Kotlin_New | 111 | | Laravel | Laravel | 112 | | MS-DOS | MS-DOS | 113 | | Mui | Mui | 114 | | Next.js | Next.js | 115 | | Node.js | Node.js | 116 | | Photoshop | Photoshop | 117 | | Python | Python | 118 | | Qwik.js | Qwik | 119 | | RaspberryPi | Raspberry%20Pi | 120 | | React | React | 121 | | RhineLab | RhineLab | 122 | | Rider | Rider | 123 | | Rstudio | RStudio | 124 | | Ruby | Ruby | 125 | | Rust | Rust | 126 | | Streamloots | Streamloots | 127 | | Swift | Swift | 128 | | Tailwindcss | Tailwindcss6 | 129 | | Teamspeak | TeamSpeak | 130 | | Twitter | Twitter | 131 | | TypeScript | TypeScript | 132 | | Ubuntu | Ubuntu | 133 | | UnityBlender | UnityBlenderT | 134 | | Vim | VIM | 135 | | VisualStudioCode | VisualStudioCode VisualStudioCodeRound | 136 | | Vite | Vite | 137 | | Voicemod | Voicemod | 138 | | Vrchat | VRChat | 139 | | Vue | Vue | 140 | | Wallhack | WALLHACK | 141 | | X | X | 142 | 143 | 144 | 145 | En cas d'incohérence dans le README de chaque langue, le README japonais aura la priorité. 146 | --------------------------------------------------------------------------------