fix #769
This commit is contained in:
parent
a7cedde721
commit
16077b3341
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
@ -60,6 +60,7 @@ jobs:
|
|||||||
|
|
||||||
Windows-build:
|
Windows-build:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
name: Build Windows Binary
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -22,7 +22,7 @@ class InvitesSignin(_PluginBase):
|
|||||||
# 插件图标
|
# 插件图标
|
||||||
plugin_icon = "invites.png"
|
plugin_icon = "invites.png"
|
||||||
# 主题色
|
# 主题色
|
||||||
plugin_color = "#4FB647"
|
plugin_color = "#FFFFFF"
|
||||||
# 插件版本
|
# 插件版本
|
||||||
plugin_version = "1.0"
|
plugin_version = "1.0"
|
||||||
# 插件作者
|
# 插件作者
|
||||||
|
@ -97,7 +97,7 @@ class SystemUtils:
|
|||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
# link到当前目录并改名
|
# link到当前目录并改名
|
||||||
tmp_path = (src.parent / dest.name).with_suffix(".mp")
|
tmp_path = src.parent / (dest.name + ".mp")
|
||||||
tmp_path.hardlink_to(src)
|
tmp_path.hardlink_to(src)
|
||||||
# 移动到目标目录
|
# 移动到目标目录
|
||||||
shutil.move(tmp_path, dest)
|
shutil.move(tmp_path, dest)
|
||||||
|
@ -1 +1 @@
|
|||||||
APP_VERSION = 'v1.2.9'
|
APP_VERSION = 'v1.3.0'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user