Merge pull request #2 from etnperlong/master

Fix issue #1: gbk codec can't decode
This commit is contained in:
dragonwocky 2020-05-31 00:09:39 +10:00 committed by GitHub
commit 1f3b7fc20f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ try:
if os.path.isfile(filepath + '/app/renderer/preload.js'): if os.path.isfile(filepath + '/app/renderer/preload.js'):
print(f' ...adding preload.js to {filepath}/app/renderer/preload.js') print(f' ...adding preload.js to {filepath}/app/renderer/preload.js')
with open(filepath + '/app/renderer/preload.js') as content: with open(filepath + '/app/renderer/preload.js', 'r', encoding='UTF-8') as content:
if '/* === INJECTION MARKER === */' in content.read(): if '/* === INJECTION MARKER === */' in content.read():
print(' * preload.js already added. replacing it.') print(' * preload.js already added. replacing it.')
content.seek(0) content.seek(0)
@ -70,14 +70,14 @@ try:
if '/* === INJECTION MARKER === */' in line: if '/* === INJECTION MARKER === */' in line:
break break
original += line original += line
with open(filepath + '/app/renderer/preload.js', 'w') as write: with open(filepath + '/app/renderer/preload.js', 'w', encoding='UTF-8') as write:
write.writelines(original) write.writelines(original)
else: else:
with open(filepath + '/app/renderer/preload.js', 'a') as append: with open(filepath + '/app/renderer/preload.js', 'a', encoding='UTF-8') as append:
append.write('\n\n') append.write('\n\n')
with open(filepath + '/app/renderer/preload.js', 'a') as append: with open(filepath + '/app/renderer/preload.js', 'a', encoding='UTF-8') as append:
print(' ...linking to ./resources/user.css') print(' ...linking to ./resources/user.css')
with open('./resources/preload.js') as insert: with open('./resources/preload.js', 'r', encoding='UTF-8') as insert:
append.write(insert.read().replace( append.write(insert.read().replace(
'___user.css___', __folder__ '___user.css___', __folder__
+ '/resources/user.css')) + '/resources/user.css'))
@ -86,7 +86,7 @@ try:
f' * {filepath}/app/renderer/preload.js was not found: step skipped.') f' * {filepath}/app/renderer/preload.js was not found: step skipped.')
if os.path.isfile(filepath + '/app/main/createWindow.js'): if os.path.isfile(filepath + '/app/main/createWindow.js'):
with open(filepath + '/app/main/createWindow.js') as content: with open(filepath + '/app/main/createWindow.js', 'r', encoding='UTF-8') as content:
content = content.read() content = content.read()
print( print(
f' ...making window frameless @ {filepath}/app/main/createWindow.js') f' ...making window frameless @ {filepath}/app/main/createWindow.js')
@ -110,14 +110,14 @@ try:
{ window.show(); if (store.get('maximised')) window.maximize(); } { window.show(); if (store.get('maximised')) window.maximize(); }
/* === INJECTION END === */ /* === INJECTION END === */
""") """)
with open(filepath + '/app/main/createWindow.js', 'w') as write: with open(filepath + '/app/main/createWindow.js', 'w', encoding='UTF-8') as write:
write.write(content) write.write(content)
else: else:
print( print(
f' * {filepath}/app/main/createWindow.js was not found: step skipped.') f' * {filepath}/app/main/createWindow.js was not found: step skipped.')
if os.path.isfile(filepath + '/app/renderer/index.js'): if os.path.isfile(filepath + '/app/renderer/index.js'):
with open(filepath + '/app/renderer/index.js') as content: with open(filepath + '/app/renderer/index.js', 'r', encoding='UTF-8') as content:
print( print(
f' ...adjusting drag area for frameless window in {filepath}/app/renderer/index.js') f' ...adjusting drag area for frameless window in {filepath}/app/renderer/index.js')
content = content.read() content = content.read()
@ -126,20 +126,20 @@ try:
'right: 0', 'right: 420').replace( 'right: 0', 'right: 420').replace(
'top: 0', 'top: 1 ').replace( 'top: 0', 'top: 1 ').replace(
'height: 34', 'height: 16') 'height: 34', 'height: 16')
with open(filepath + '/app/renderer/index.js', 'w') as write: with open(filepath + '/app/renderer/index.js', 'w', encoding='UTF-8') as write:
write.write(content) write.write(content)
else: else:
print( print(
f' * {filepath}/app/renderer/index.js was not found: step skipped.') f' * {filepath}/app/renderer/index.js was not found: step skipped.')
if os.path.isfile(filepath + '/app/main/main.js'): if os.path.isfile(filepath + '/app/main/main.js'):
with open(filepath + '/app/main/main.js') as content: with open(filepath + '/app/main/main.js', 'r', encoding='UTF-8') as content:
print( print(
f' ...adding tray support (inc. context menu with settings) to {filepath}/app/main/main.js') f' ...adding tray support (inc. context menu with settings) to {filepath}/app/main/main.js')
print( print(
f' ...adding window toggle hotkey to {filepath}/app/main/main.js') f' ...adding window toggle hotkey to {filepath}/app/main/main.js')
content = content.read() content = content.read()
with open(filepath + '/app/main/main.js', 'w') as write: with open(filepath + '/app/main/main.js', 'w', encoding='UTF-8') as write:
if '/* === INJECTION MARKER === */' in content: if '/* === INJECTION MARKER === */' in content:
print(' * hotkey.js already added. replacing it.') print(' * hotkey.js already added. replacing it.')
original = [] original = []
@ -152,8 +152,8 @@ try:
write.write(content.replace( write.write(content.replace(
'electron_1.app.on("ready", handleReady);', 'electron_1.app.on("ready", handleReady);',
'electron_1.app.on("ready", () => handleReady() && enhancements());') + '\n') 'electron_1.app.on("ready", () => handleReady() && enhancements());') + '\n')
with open(filepath + '/app/main/main.js', 'a') as append: with open(filepath + '/app/main/main.js', 'a', encoding='UTF-8') as append:
with open('./resources/hotkey.js') as insert: with open('./resources/hotkey.js', 'r', encoding='UTF-8') as insert:
append.write('\n' + insert.read().replace( append.write('\n' + insert.read().replace(
'___hotkey___', hotkey)) '___hotkey___', hotkey))
print( print(