Skip to content

Commit

Permalink
🚀 v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Dec 3, 2024
1 parent 2f8f779 commit 1e47b4f
Show file tree
Hide file tree
Showing 10 changed files with 134 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.13.2
version: 9.14.4
- name: Install frontend dependencies
run: pnpm install

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.13.2
version: 9.14.4
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: "Qodana Scan"
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@
Author: 目棃
Description: CHANGELOG
Date: 2024-10-09
Update: 2024-11-19
Update: 2024-12-03
---

> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter)[MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-10-09 15:51:43`
>
> 更新于 `2024-11-19 17:06:05`
> 更新于 `2024-12-03 19:57:50`
## [0.6.4](https://github.com/BTMuli/TeyvatGuide/releases/v0.6.4) (2024-12-03)

- 🐛 修复子回复渲染异常
- ✏️ 祈愿记录将验证非空ID
- 🐛 修复战绩分享图渲染异常
- 🐛 修复`dialog`组件`input`默认值无效
- 🎨 调整帖子查找overlay逻辑
- ✨ 分享图生成阈值自定义
- 👽️ 全量刷新时清理旧数据,修复由于米哈游数据异常导致的重复数据

## [0.6.3](https://github.com/BTMuli/TeyvatGuide/releases/v0.6.3) (2024-11-19)

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "teyvatguide",
"version": "0.6.3",
"version": "0.6.4",
"description": "Game Tool for GenshinImpact player",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "tauri build",
Expand Down
42 changes: 22 additions & 20 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "TeyvatGuide"
version = "0.6.3"
version = "0.6.4"
description = "Game Tool for Genshin Impact player"
authors = ["BTMuli <[email protected]>"]
license = "MIT"
Expand All @@ -24,63 +24,63 @@ walkdir = "2.5.0"

# deep link 插件
[dependencies.tauri-plugin-deep-link]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# dialog 插件
[dependencies.tauri-plugin-dialog]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# fs 插件
[dependencies.tauri-plugin-fs]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# http 插件
[dependencies.tauri-plugin-http]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"
features = ["unsafe-headers"]

# log 插件
[dependencies.tauri-plugin-log]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# os 插件
[dependencies.tauri-plugin-os]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# process 插件
[dependencies.tauri-plugin-process]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# shell 插件
[dependencies.tauri-plugin-shell]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# single-instance 插件
[dependencies.tauri-plugin-single-instance]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"

# sqlite 插件
[dependencies.tauri-plugin-sql]
git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
#git = "https://github.com/tauri-apps/plugins-workspace.git"
#git = "ssh://[email protected]/tauri-apps/plugins-workspace.git"
git = "https://github.com/tauri-apps/plugins-workspace.git"
branch = "v2"
features = ["sqlite"]

Expand Down
31 changes: 26 additions & 5 deletions src-tauri/gen/schemas/acl-manifests.json
Original file line number Diff line number Diff line change
Expand Up @@ -1815,7 +1815,7 @@
"allow-read-text-file-lines": {
"identifier": "allow-read-text-file-lines",
"description": "Enables the read_text_file_lines command without any pre-configured scope.",
"commands": { "allow": ["read_text_file_lines"], "deny": [] }
"commands": { "allow": ["read_text_file_lines", "read_text_file_lines_next"], "deny": [] }
},
"allow-read-text-file-lines-next": {
"identifier": "allow-read-text-file-lines-next",
Expand All @@ -1837,6 +1837,11 @@
"description": "Enables the seek command without any pre-configured scope.",
"commands": { "allow": ["seek"], "deny": [] }
},
"allow-size": {
"identifier": "allow-size",
"description": "Enables the size command without any pre-configured scope.",
"commands": { "allow": ["size"], "deny": [] }
},
"allow-stat": {
"identifier": "allow-stat",
"description": "Enables the stat command without any pre-configured scope.",
Expand Down Expand Up @@ -1865,7 +1870,7 @@
"allow-write-file": {
"identifier": "allow-write-file",
"description": "Enables the write_file command without any pre-configured scope.",
"commands": { "allow": ["write_file"], "deny": [] }
"commands": { "allow": ["write_file", "open", "write"], "deny": [] }
},
"allow-write-text-file": {
"identifier": "allow-write-text-file",
Expand Down Expand Up @@ -1962,6 +1967,11 @@
"description": "Denies the seek command without any pre-configured scope.",
"commands": { "allow": [], "deny": ["seek"] }
},
"deny-size": {
"identifier": "deny-size",
"description": "Denies the size command without any pre-configured scope.",
"commands": { "allow": [], "deny": ["size"] }
},
"deny-stat": {
"identifier": "deny-stat",
"description": "Denies the stat command without any pre-configured scope.",
Expand Down Expand Up @@ -2074,7 +2084,10 @@
"read-meta": {
"identifier": "read-meta",
"description": "This enables all index or metadata related commands without any pre-configured accessible paths.",
"commands": { "allow": ["read_dir", "stat", "lstat", "fstat", "exists"], "deny": [] }
"commands": {
"allow": ["read_dir", "stat", "lstat", "fstat", "exists", "size"],
"deny": []
}
},
"scope": {
"identifier": "scope",
Expand Down Expand Up @@ -3363,9 +3376,17 @@
"global_scope_schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"anyOf": [
{ "description": "FS scope path.", "type": "string" },
{
"properties": { "path": { "description": "FS scope path.", "type": "string" } },
"description": "A path that can be accessed by the webview when using the fs APIs. FS scope path pattern.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
"type": "string"
},
{
"properties": {
"path": {
"description": "A path that can be accessed by the webview when using the fs APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
"type": "string"
}
},
"required": ["path"],
"type": "object"
}
Expand Down
Loading

0 comments on commit 1e47b4f

Please sign in to comment.