Skip to content

Commit 5d376f5

Browse files
committed
fix: fix py-pkger outdated
1 parent 5d54948 commit 5d376f5

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

.pkg/py-pkger.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
with warnings.catch_warnings():
1111
warnings.simplefilter('ignore', DeprecationWarning)
12-
import imp
1312
from modulefinder import ModuleFinder
1413

1514
ROOT_PATH = os.path.split(os.path.realpath(sys.argv[0]))[0]
@@ -83,11 +82,12 @@ def files(path, frmt="*", OTH=["", "pyc", "DS_Store"]):
8382

8483

8584
# 修复 ModuleFinder 可能 BUG
85+
_PY_SOURCE = 1
8686
class ModuleFinderR(ModuleFinder):
8787
def run_script(self, pathname):
8888
self.msg(2, "run_script", pathname)
8989
with open(pathname, encoding="utf-8") as fp:
90-
stuff = ("", "r", imp.PY_SOURCE)
90+
stuff = ("", "rb", _PY_SOURCE)
9191
self.load_module('__main__', fp, pathname, stuff)
9292

9393

@@ -126,7 +126,10 @@ def run_script(self, pathname):
126126
oargs.append(f"--add-data {ori[1:]}{BET}{dest[1:]}")
127127
# 分析动态加载文件中所使用的包
128128
if x[2] == "py":
129-
finder.run_script(x[0])
129+
try:
130+
finder.run_script(x[0])
131+
except:
132+
continue
130133
for name, mod in finder.modules.items():
131134
module = name.split(".")[0] if os.name == "nt" else name
132135
if module[0] == "_" and module[1:] in hiddenImport:

app/config/language/en.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -11,44 +11,44 @@ app.core.biu:
1111
hint_exist_new: "A new version is available"
1212
fail_to_check: "Failed to check for update"
1313
fail_to_check_duo_to_network: "Failed to check for update, probably because the server didn't respond for a long time"
14-
tell_to_download: "Visit https://biu.tls.moe/ to download"
15-
press_to_use_old: "Press any key to continue using this old version..."
14+
tell_to_download: "Go https://biu.tls.moe/ and download"
15+
press_to_use_old: "Press any key to continue with the old version..."
1616
network:
1717
hint_in_check: "Checking network status..."
1818
fail_pixiv_and_use_bypass: "Cannot connect to Pixiv, enable bypassSNI route (may not be available temporarily)"
1919
loginHelper:
20-
hint_token_only: "Since Pixiv disables password login, you can only use Token to login for now"
20+
hint_token_only: "Since Pixiv disables password login, you can only use token to login for now"
2121
hint_before_start: "Network detection is about to start, this process can reduce the probability of not being able to use PixivBiu due to network problems"
22-
fail_to_get_token_due_to_network: "Your network is not working properly for Pixiv Token login, please adjust it and try again."
23-
fail_to_get_token_anyway: "There was an error getting the Token, please try again."
22+
fail_to_get_token_due_to_network: "Your network is not working properly for Pixiv token login, please adjust it and try again."
23+
fail_to_get_token_anyway: "There was an error getting the token, please try again."
2424
fail_by_cloudflare_captcha: "Encountered Cloudflare protection when logging in, it may be caused by network environment issues. You can try to get the token again, or wait a while and log in again"
2525
is_need_to_get_token: "Continue? (y / n): "
2626
ready:
2727
hint_run: "Run"
28-
hint_how_to_use: "Enter the address into a modern browser"
28+
hint_how_to_use: "Visit the address in a modern browser"
2929
hint_version: "Version"
3030
hint_function_types: "Function Types"
3131
hint_image_service: "Image Service"
32-
hint_download_path: "Download Save Path"
33-
hint_program_path: "Program Directory"
34-
done_init: "Initialization completed"
32+
hint_download_path: "Download Folder"
33+
hint_program_path: "PixivBiuFolder"
34+
done_init: "Init Done"
3535
others:
36-
hint_in_update_token: "Trying to update token"
36+
hint_in_update_token: "Try to update token"
3737

3838
app.common.loginHelper:
3939
network:
40-
press_need_to_type_proxy: "Please enter the proxy listener address (can be blank): "
41-
hint_in_check: "Starting network detection..."
42-
hint_detect_proxy: "Proxy listener address (%s) detected, do you want to change it? (y / n): "
40+
press_need_to_type_proxy: "Please enter the proxy address (can be blank): "
41+
hint_in_check: "Doing network detection..."
42+
hint_detect_proxy: "Proxy address (%s) detected, do you want to change it? (y / n): "
4343
is_need_to_type_proxy: "The system proxy address was not detected, do you need to set it manually? (y / n): "
4444
login:
45-
hint_intro_step_head: "[Login] Please follow these steps:"
45+
hint_intro_step_head: "[Login] Please follow steps below:"
4646
hint_intro_step_1: "1. Visit: %s?%s"
4747
hint_intro_step_2: "2. Open the browser's [Developer Tools / F12] and switch to the [Network] tab"
4848
hint_intro_step_3: "3. Turn on [Preserve log]"
4949
hint_intro_step_4: "4. Type [callback?] in the [Filter] input box"
5050
hint_intro_step_5: "5. Login to your Pixiv account"
5151
hint_intro_step_6: "6. After successfully logging in, there will be a message like [https://app-api.pixiv.net/...&code=...]"
5252
hint_intro_step_7: "7. Enter the parameter after [code] into this program"
53-
fail_code_918: "Code error. Please note that the program requires a different code each time it starts, and cannot reuse the previous one, and the Code doesn't contain quotation marks."
54-
fail_code_1508: "Code has expired. Please hurry up while doing the code fetching operation."
53+
fail_code_918: "Code error. Please note that the program requires a different code each time it starts, and the Code doesn't contain quotation marks."
54+
fail_code_1508: "Code is expired. Please get a bit faster while doing the code fetching operation."

0 commit comments

Comments
 (0)