Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit ae6d9c1

Browse files
committed
chore: rename to kipdayo
1 parent a36bdc5 commit ae6d9c1

File tree

9 files changed

+14
-13
lines changed

9 files changed

+14
-13
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
EXE_PATH="${{ steps.get-installer.outputs.exe_path }}"
6363
EXE_DIR=$(dirname "$EXE_PATH")
64-
NEW_NAME="vidio_v${{ inputs.version }}.exe"
64+
NEW_NAME="kipdayo_v${{ inputs.version }}.exe"
6565
mv "$EXE_PATH" "$EXE_DIR/$NEW_NAME"
6666
echo "Renamed to: $NEW_NAME"
6767
echo "new_exe_name=$NEW_NAME" >> $GITHUB_ENV
@@ -71,7 +71,7 @@ jobs:
7171
if: inputs.release == false
7272
uses: actions/upload-artifact@v4
7373
with:
74-
name: vidio-windows
74+
name: kipdayo-windows
7575
path: ${{ steps.get-installer.outputs.exe_path }}
7676
retention-days: 1
7777

@@ -80,7 +80,7 @@ jobs:
8080
uses: softprops/action-gh-release@v2
8181
with:
8282
tag_name: v${{ inputs.version }}
83-
name: Vidio v${{ inputs.version }}
83+
name: Kipdayo v${{ inputs.version }}
8484
draft: false
8585
prerelease: false
8686
files: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Vidio - VRChat Bilibili Video Parser
1+
# Kipdayo - VRChat Bilibili Video Parser
22

33
A desktop application that parses Bilibili video links for playback in VRChat world video players.
44

55
## Download
66

7-
Get the latest version from the [Releases](https://github.com/xn-sakina/vrchat-vidio/releases) page.
7+
Get the latest version from the [Releases](https://github.com/xn-sakina/kipdayo/releases) page.
88

99
## Disclaimer
1010

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Vidio</title>
6+
<title>Kipdayo</title>
77
</head>
88

99
<body>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vidio",
2+
"name": "kipdayo",
33
"private": true,
44
"version": "1.0.0",
55
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "vidio"
2+
name = "kipdayo"
33
version = "0.1.0"
44
description = "A Tauri App"
55
authors = ["you"]
@@ -11,7 +11,7 @@ edition = "2021"
1111
# The `_lib` suffix may seem redundant but it is necessary
1212
# to make the lib name unique and wouldn't conflict with the bin name.
1313
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
14-
name = "vidio_lib"
14+
name = "kipdayo_lib"
1515
crate-type = ["staticlib", "cdylib", "rlib"]
1616

1717
[build-dependencies]

src-tauri/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
33

44
fn main() {
5-
vidio_lib::run()
5+
kipdayo_lib::run()
66
}

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
3-
"productName": "vidio",
3+
"productName": "kipdayo",
44
"version": "1.1.0",
55
"identifier": "dev.kanamio.vrchat.vidio",
66
"build": {
@@ -12,7 +12,7 @@
1212
"app": {
1313
"windows": [
1414
{
15-
"title": "Vidio",
15+
"title": "Kipdayo",
1616
"width": 800,
1717
"height": 680
1818
}

src/lib/crypto.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55

66
// 固定的盐值(用于密钥派生)
7+
// NOTE: keep the legacy `vidio` name for compatibility
78
const SALT = "vidio-bilibili-parser-v1-salt-2025";
89

910
// 从盐值派生密钥

0 commit comments

Comments
 (0)