diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-07 15:32:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-07 15:32:37 +0800 |
| commit | 197363c9ed2b285db220988590dfc13edcbbad41 (patch) | |
| tree | 6152f0f71844afe25c193d710a97662c458095b1 | |
| parent | 0044c072e2a55c09feb041d60251e184c8d1f2a1 (diff) | |
Move resources to resources directory
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | README_zh_CN.md | 2 | ||||
| -rw-r--r-- | resources/images/Header.png (renamed from docs/images/Header.png) | bin | 1669 -> 1669 bytes | |||
| -rw-r--r-- | resources/images/Header_Large.png (renamed from docs/images/Header_Large.png) | bin | 7995 -> 7995 bytes | |||
| -rw-r--r-- | resources/images/Yizi.ico (renamed from docs/images/Yizi.ico) | bin | 270622 -> 270622 bytes | |||
| -rw-r--r-- | resources/locales/en.yml (renamed from locales/help_docs/en.yml) | 0 | ||||
| -rw-r--r-- | resources/locales/zh-CN.yml (renamed from locales/help_docs/zh-CN.yml) | 0 | ||||
| -rw-r--r-- | src/bin/jv.rs | 2 | ||||
| -rw-r--r-- | src/bin/jvii.rs | 2 | ||||
| -rw-r--r-- | src/bin/jvv.rs | 2 | ||||
| -rw-r--r-- | templates/setup_jv_cli.iss | 2 |
11 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ <p align="center"> <a href="https://github.com/JustEnoughVCS/CommandLine"> - <img alt="JustEnoughVCS" src="docs/images/Header_Large.png" width="100%"> + <img alt="JustEnoughVCS" src="resources/images/Header_Large.png" width="100%"> </a> </p> diff --git a/README_zh_CN.md b/README_zh_CN.md index e129640..5fb207c 100644 --- a/README_zh_CN.md +++ b/README_zh_CN.md @@ -1,6 +1,6 @@ <p align="center"> <a href="https://github.com/JustEnoughVCS/CommandLine"> - <img alt="JustEnoughVCS" src="docs/images/Header_Large.png" width="100%"> + <img alt="JustEnoughVCS" src="resources/images/Header_Large.png" width="100%"> </a> </p> diff --git a/docs/images/Header.png b/resources/images/Header.png Binary files differindex ad9e156..ad9e156 100644 --- a/docs/images/Header.png +++ b/resources/images/Header.png diff --git a/docs/images/Header_Large.png b/resources/images/Header_Large.png Binary files differindex 4c39fc5..4c39fc5 100644 --- a/docs/images/Header_Large.png +++ b/resources/images/Header_Large.png diff --git a/docs/images/Yizi.ico b/resources/images/Yizi.ico Binary files differindex 24a2d00..24a2d00 100644 --- a/docs/images/Yizi.ico +++ b/resources/images/Yizi.ico diff --git a/locales/help_docs/en.yml b/resources/locales/en.yml index be88c60..be88c60 100644 --- a/locales/help_docs/en.yml +++ b/resources/locales/en.yml diff --git a/locales/help_docs/zh-CN.yml b/resources/locales/zh-CN.yml index 50441ff..50441ff 100644 --- a/locales/help_docs/zh-CN.yml +++ b/resources/locales/zh-CN.yml diff --git a/src/bin/jv.rs b/src/bin/jv.rs index dde0c9e..ae71432 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -105,7 +105,7 @@ use tokio::{ }; // Import i18n files -rust_i18n::i18n!("locales", fallback = "en"); +rust_i18n::i18n!("resources/locales", fallback = "en"); #[derive(Parser, Debug)] #[command( diff --git a/src/bin/jvii.rs b/src/bin/jvii.rs index e18a592..2dfbeb7 100644 --- a/src/bin/jvii.rs +++ b/src/bin/jvii.rs @@ -25,7 +25,7 @@ use rust_i18n::t; use tokio::time::Instant; // Import i18n files -rust_i18n::i18n!("locales", fallback = "en"); +rust_i18n::i18n!("resources/locales", fallback = "en"); #[derive(Parser, Debug)] #[command( diff --git a/src/bin/jvv.rs b/src/bin/jvv.rs index 54979d5..412eebe 100644 --- a/src/bin/jvv.rs +++ b/src/bin/jvv.rs @@ -28,7 +28,7 @@ use rust_i18n::{set_locale, t}; use tokio::fs::{self}; // Import i18n files -rust_i18n::i18n!("locales/help_docs", fallback = "en"); +rust_i18n::i18n!("resources/locales", fallback = "en"); #[derive(Parser, Debug)] #[command( diff --git a/templates/setup_jv_cli.iss b/templates/setup_jv_cli.iss index b6d497d..6763248 100644 --- a/templates/setup_jv_cli.iss +++ b/templates/setup_jv_cli.iss @@ -18,7 +18,7 @@ LicenseFile=..\..\LICENSE PrivilegesRequired=lowest OutputDir=..\..\.temp\deploy\setup OutputBaseFilename=JustEnoughVCS For Windows -SetupIconFile=..\..\docs\images\Yizi.ico +SetupIconFile=..\..\resources\images\Yizi.ico SolidCompression=yes WizardStyle=modern dynamic |
