mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
move enhancer_version.txt into app folder
This commit is contained in:
parent
0f066316cc
commit
3a617933aa
@ -52,8 +52,8 @@ try:
|
|||||||
unpacking_asar = False
|
unpacking_asar = False
|
||||||
print(' * app.asar was already unpacked: checking version.')
|
print(' * app.asar was already unpacked: checking version.')
|
||||||
cleaning_asar = True
|
cleaning_asar = True
|
||||||
if os.path.isfile(filepath + '/ENHANCER_VERSION.txt'):
|
if os.path.isfile(filepath + '/app/ENHANCER_VERSION.txt'):
|
||||||
with open(filepath + '/ENHANCER_VERSION.txt', 'r', encoding='UTF-8') as content:
|
with open(filepath + '/app/ENHANCER_VERSION.txt', 'r', encoding='UTF-8') as content:
|
||||||
if content.read() == enhancer_version:
|
if content.read() == enhancer_version:
|
||||||
cleaning_asar = False
|
cleaning_asar = False
|
||||||
if cleaning_asar:
|
if cleaning_asar:
|
||||||
@ -86,7 +86,7 @@ try:
|
|||||||
'/app.asar', filepath + '/app'], shell=(True if sys.platform == 'win32' else False))
|
'/app.asar', filepath + '/app'], shell=(True if sys.platform == 'win32' else False))
|
||||||
print(' ...renaming asar.app to asar.app.bak')
|
print(' ...renaming asar.app to asar.app.bak')
|
||||||
os.rename(filepath + '/app.asar', filepath + '/app.asar.bak')
|
os.rename(filepath + '/app.asar', filepath + '/app.asar.bak')
|
||||||
with open(filepath + '/ENHANCER_VERSION.txt', 'w', encoding='UTF-8') as write:
|
with open(filepath + '/app/ENHANCER_VERSION.txt', 'w', encoding='UTF-8') as write:
|
||||||
write.write(enhancer_version)
|
write.write(enhancer_version)
|
||||||
|
|
||||||
if os.path.isfile(filepath + '/app/renderer/preload.js'):
|
if os.path.isfile(filepath + '/app/renderer/preload.js'):
|
||||||
|
Loading…
Reference in New Issue
Block a user