Skip to content

Commit

Permalink
fix #769
Browse files Browse the repository at this point in the history
  • Loading branch information
jxxghp committed Oct 9, 2023
1 parent a7cedde commit 16077b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:

Windows-build:
runs-on: windows-latest
name: Build Windows Binary
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion app/plugins/invitessignin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class InvitesSignin(_PluginBase):
# 插件图标
plugin_icon = "invites.png"
# 主题色
plugin_color = "#4FB647"
plugin_color = "#FFFFFF"
# 插件版本
plugin_version = "1.0"
# 插件作者
Expand Down
2 changes: 1 addition & 1 deletion app/utils/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def link(src: Path, dest: Path) -> Tuple[int, str]:
"""
try:
# link到当前目录并改名
tmp_path = (src.parent / dest.name).with_suffix(".mp")
tmp_path = src.parent / (dest.name + ".mp")
tmp_path.hardlink_to(src)
# 移动到目标目录
shutil.move(tmp_path, dest)
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
APP_VERSION = 'v1.2.9'
APP_VERSION = 'v1.3.0'

0 comments on commit 16077b3

Please sign in to comment.