mirror of
https://github.com/vrc-get/vrc-get.git
synced 2026-06-21 09:58:08 +00:00
chore(gui): rename to ALCOM
This commit is contained in:
parent
195f5b46dd
commit
9273102a5c
8 changed files with 19 additions and 19 deletions
|
|
@ -1,16 +1,16 @@
|
|||
# vrc-get-gui (experimental)
|
||||
# ALCOM (experimental)
|
||||
|
||||
This folder contains the experimental GUI version of vrc-get.
|
||||
This folder contains the experimental GUI version of vrc-get, ALCOM.
|
||||
|
||||
## Installation
|
||||
|
||||
The recommended way to install vrc-get-gui is download from [GitHub Releases][vrc-get-gui-releases].
|
||||
The recommended way to install ALCOM is download from [GitHub Releases][alcom-releases].
|
||||
|
||||
[vrc-get-gui-releases]: https://github.com/anatawa12/vrc-get/releases?q=gui-v0
|
||||
[alcom-releases]: https://github.com/anatawa12/vrc-get/releases?q=gui-v0
|
||||
|
||||
## Requirements (building)
|
||||
|
||||
To build vrc-get-gui, you need to have the following installed:
|
||||
To build ALCOM, you need to have the following installed:
|
||||
|
||||
- [Node.js] v20 (to build the web part of the project)
|
||||
- [npm] (to install the dependencies of the web part)
|
||||
|
|
@ -34,6 +34,6 @@ npm run tauri build
|
|||
|
||||
## Development
|
||||
|
||||
vrc-get-gui is currently based on tauri and next.js.
|
||||
ALCOM is currently based on tauri and next.js.
|
||||
|
||||
Run `npm run tauri dev` to start the development server and gui.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ devPath = "http://localhost:3000"
|
|||
distDir = "out"
|
||||
|
||||
[package]
|
||||
productName = "vrc-get-gui"
|
||||
productName = "ALCOM"
|
||||
|
||||
[tauri]
|
||||
|
||||
|
|
@ -31,7 +31,7 @@ targets = [
|
|||
|
||||
"updater", # auto update
|
||||
]
|
||||
longDescription = "vrc-get-gui is a fast and open-source alternative VCC (VRChat Creator Companion) written in rust and tauri."
|
||||
longDescription = "ALCOM is a fast and open-source alternative VCC (VRChat Creator Companion) written in rust and tauri."
|
||||
shortDescription = "an alternative VCC"
|
||||
identifier = "com.anataw12.vrc-get"
|
||||
category = "DeveloperTool"
|
||||
|
|
|
|||
|
|
@ -343,7 +343,7 @@ function EnteringRepositoryInfo(
|
|||
// ; field-value = ([\x21-\x7E\x80-\xFF]([\t\x20-\x7E\x80-\xFF]+[\x21-\x7E\x80-\xFF])?)*
|
||||
// ; = [\t\x20-\x7E\x80-\xFF]* in trimmed value
|
||||
|
||||
// in vrc-get-gui, non-ascii characters are encoded as utf-8 so any non-ascii characters are fit in [\x80-\xFF]
|
||||
// in vrc-get, non-ascii characters are encoded as utf-8 so any non-ascii characters are fit in [\x80-\xFF]
|
||||
if (!trimedValue.match(/^[\t\x20-\x7E\u0080-\uFFFF]*$/)) {
|
||||
foundHeaderValueError = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ function Settings(
|
|||
<div className="mt-2">
|
||||
<h3>{tc("backup path")}</h3>
|
||||
<Typography className={"whitespace-normal"}>
|
||||
{tc("the backup path is the directory where vrc-get-gui will create backup zips of the projects.")}
|
||||
{tc("the backup path is the directory where alcom will create backup zips of the projects.")}
|
||||
</Typography>
|
||||
<div className={"flex gap-1"}>
|
||||
<Input className="flex-auto" value={settings.project_backup_path} disabled/>
|
||||
|
|
@ -275,7 +275,7 @@ function Settings(
|
|||
<Card className={"flex-shrink-0 p-4"}>
|
||||
<h2>{tc("licenses")}</h2>
|
||||
<Typography className={"whitespace-normal"}>
|
||||
{tc("click <l>here</l> to view licenses of the projects used in vrc-get-gui", {}, {
|
||||
{tc("click <l>here</l> to view licenses of the projects used in alcom", {}, {
|
||||
components: {l: <Link href={"/settings/licenses"} className={"underline"}/>}
|
||||
})}
|
||||
</Typography>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ export async function openUnity(projectPath: string) {
|
|||
toastError(i18next.t("we couldn't detect suitable unity installations"));
|
||||
break;
|
||||
case "NoMatchingUnityFound":
|
||||
toastError(i18next.t("no matching unity version found. please install or add a unity version in the vrc-get-gui settings"));
|
||||
toastError(i18next.t("no matching unity version found. please install or add a unity version in the alcom settings"));
|
||||
break;
|
||||
case "Success":
|
||||
toastNormal(i18next.t("opening unity..."));
|
||||
|
|
|
|||
|
|
@ -156,7 +156,7 @@
|
|||
"packages:": "Packages:",
|
||||
"error loading settings": "Error loading settings",
|
||||
"licenses": "Licenses",
|
||||
"click <l>here</l> to view licenses of the projects used in vrc-get-gui": "Click <l>here</l> to view licenses of the projects used in vrc-get-gui",
|
||||
"click <l>here</l> to view licenses of the projects used in alcom": "Click <l>here</l> to view licenses of the projects used in ALCOM",
|
||||
"selected file is invalid as a unity hub": "Selected file is invalid as a Unity Hub",
|
||||
"updated unity hub successfully!": "Updated Unity Hub successfully!",
|
||||
"selected file is invalid as a unity": "Selected file is invalid as a Unity",
|
||||
|
|
@ -173,7 +173,7 @@
|
|||
"default project path": "Default Project Path",
|
||||
"the default project path is the directory where new projects are created in.": "The default project path is the directory where new projects are created in.",
|
||||
"backup path": "Backup Path",
|
||||
"the backup path is the directory where vrc-get-gui will create backup zips of the projects.": "The backup path is the directory where vrc-get-gui will create backup zips of the projects.",
|
||||
"the backup path is the directory where alcom will create backup zips of the projects.": "The backup path is the directory where ALCOM will create backup zips of the projects.",
|
||||
"backup archive format:": "Backup archive format:",
|
||||
"backup_format:default": "Default (Uncompressed zip)",
|
||||
"backup_format:zip-store": "Uncompressed zip (Fast)",
|
||||
|
|
@ -186,7 +186,7 @@
|
|||
"manual": "Manual",
|
||||
"{{name}} is not supported yet": "{{name}} is not supported yet",
|
||||
"we couldn't detect suitable unity installations": "We couldn't detect suitable Unity installations",
|
||||
"no matching unity version found. please install or add a unity version in the vrc-get-gui settings": "No matching Unity version found. Please install or add a Unity version in the vrc-get-gui settings",
|
||||
"no matching unity version found. please install or add a unity version in the alcom settings": "No matching Unity version found. Please install or add a Unity version in the ALCOM settings",
|
||||
"opening unity...": "Opening Unity...",
|
||||
"selecting file or folder": "Selecting file or folder",
|
||||
"please select a file or folder": "Please select a file or folder",
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@
|
|||
"packages:": "パッケージ:",
|
||||
"error loading settings": "設定の読み込みに失敗しました。",
|
||||
"licenses": "ライセンス",
|
||||
"click <l>here</l> to view licenses of the projects used in vrc-get-gui": "vrc-get-guiで利用しているプロジェクトのライセンスを表示するには、<l>ここをクリック</l>",
|
||||
"click <l>here</l> to view licenses of the projects used in alcom": "ALCOMで利用しているプロジェクトのライセンスを表示するには、<l>ここをクリック</l>",
|
||||
"selected file is invalid as a unity hub": "選択されたファイルはUnity Hubではありません。",
|
||||
"updated unity hub successfully!": "Unity Hubの情報を更新しました。",
|
||||
"selected file is invalid as a unity": "選択されたファイルはUnityではありません。",
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
"default project path": "プロジェクト作成時の保存先",
|
||||
"the default project path is the directory where new projects are created in.": "",
|
||||
"backup path": "バックアップの保存先",
|
||||
"the backup path is the directory where vrc-get-gui will create backup zips of the projects.": "vrc-get-guiで作成した、プロジェクトのバックアップの保存先",
|
||||
"the backup path is the directory where alcom will create backup zips of the projects.": "ALCOMで作成した、プロジェクトのバックアップの保存先",
|
||||
"backup archive format:": "バックアップの保存形式:",
|
||||
"backup_format:default": "デフォルト (無圧縮zip)",
|
||||
"backup_format:zip-store": "無圧縮zip (高速)",
|
||||
|
|
@ -177,7 +177,7 @@
|
|||
"manual": "手動登録",
|
||||
"{{name}} is not supported yet": "{{name}}はまだ実装されていません。",
|
||||
"we couldn't detect suitable unity installations": "プロジェクトのUnityバージョン指定が不正です。",
|
||||
"no matching unity version found. please install or add a unity version in the vrc-get-gui settings": "対応したバージョンのUnityを見つけることが出来ませんでした。該当するUnityをインストールするか、vrc-get-guiに登録してください。",
|
||||
"no matching unity version found. please install or add a unity version in the alcom settings": "対応したバージョンのUnityを見つけることが出来ませんでした。該当するUnityをインストールするか、ALCOMに登録してください。",
|
||||
"opening unity...": "Unityを起動中...",
|
||||
"selecting file or folder": "ファイルまたはフォルダを選択",
|
||||
"please select a file or folder": "ファイルまたはフォルダを選択してください。",
|
||||
|
|
|
|||
|
|
@ -225,7 +225,7 @@ pub(crate) fn startup(app: &mut App) {
|
|||
"main", /* the unique window label */
|
||||
tauri::WindowUrl::App("/projects".into()),
|
||||
)
|
||||
.title("vrc-get-gui")
|
||||
.title("ALCOM")
|
||||
.resizable(true)
|
||||
.on_navigation(|url| {
|
||||
if cfg!(debug_assertions) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue