Merge pull request #27 from lanyeeee/develop

Develop
This commit is contained in:
lanyeeee
2025-12-03 05:12:08 +08:00
committed by GitHub
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
<!--
PR请提交至 develop 分支
如果想新加一个功能,请先开个 issue 或 discussion 讨论一下,避免无效工作
其他情况的PR欢迎直接提交,比如:
1.🔧 对原有功能的改进
2.🐛 修复BUG
3.⚡ 使用更轻量的库实现原有功能
4.📝 修订文档
5.⬆️ 升级、更新依赖的PR也会被接受
-->
+1 -1
View File
@@ -955,7 +955,7 @@ impl BiliClient {
pub fn get_cookie(&self) -> String {
let sessdata = self.app.get_config().read().sessdata.clone();
format!("SESSDATA={sessdata}")
format!("SESSDATA={}", sessdata.trim_end_matches(';'))
}
}
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "bilibili-video-downloader",
"version": "0.1.0",
"version": "0.1.1",
"identifier": "com.lanyeeee.bilibili-video-downloader",
"build": {
"beforeDevCommand": "pnpm dev",