mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
force resource path to use /
This commit is contained in:
parent
6cedb7790a
commit
8dfb764199
@ -13,7 +13,7 @@ from shutil import copyfile, rmtree
|
|||||||
from time import sleep
|
from time import sleep
|
||||||
|
|
||||||
# to smooth the update process
|
# to smooth the update process
|
||||||
enhancer_version = '0.6.1~beta1'
|
enhancer_version = '0.6.1~beta2'
|
||||||
|
|
||||||
# for toggling notion visibility
|
# for toggling notion visibility
|
||||||
hotkey = 'CmdOrCtrl+Shift+A'
|
hotkey = 'CmdOrCtrl+Shift+A'
|
||||||
@ -37,7 +37,7 @@ try:
|
|||||||
.rstrip().decode('utf-8')[3:].replace('\\', '/') + '/Programs/Notion/resources'
|
.rstrip().decode('utf-8')[3:].replace('\\', '/') + '/Programs/Notion/resources'
|
||||||
drive = enhancer_folder[5].capitalize() if enhancer_folder.startswith(
|
drive = enhancer_folder[5].capitalize() if enhancer_folder.startswith(
|
||||||
'/mnt/') else 'C'
|
'/mnt/') else 'C'
|
||||||
enhancer_folder = drive + ':/' + enhancer_folder[6:]
|
enhancer_folder = drive + ':\\' + enhancer_folder[6:]
|
||||||
elif sys.platform == 'win32':
|
elif sys.platform == 'win32':
|
||||||
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
|
filepath = subprocess.run(['echo', '%localappdata%'], shell=True, capture_output=True).stdout \
|
||||||
.rstrip().decode('utf-8') + '\\Programs\\Notion\\resources'
|
.rstrip().decode('utf-8') + '\\Programs\\Notion\\resources'
|
||||||
@ -118,22 +118,22 @@ try:
|
|||||||
f' ...linking to {os.path.join(".", "resources", "user.css")}')
|
f' ...linking to {os.path.join(".", "resources", "user.css")}')
|
||||||
with open(os.path.join(__dirname__, 'resources', 'preload.js'), 'r', encoding='UTF-8') as insert:
|
with open(os.path.join(__dirname__, 'resources', 'preload.js'), 'r', encoding='UTF-8') as insert:
|
||||||
append.write(insert.read().replace(
|
append.write(insert.read().replace(
|
||||||
'☃☃☃assets☃☃☃', enhancer_folder + '/resources'))
|
'☃☃☃assets☃☃☃', os.path.join(enhancer_folder, 'resources').replace('\\', '/'))
|
||||||
else:
|
else:
|
||||||
print(
|
print(
|
||||||
f' * {os.path.join(filepath, "app","renderer","preload.js")} was not found: step skipped.')
|
f' * {os.path.join(filepath, "app","renderer","preload.js")} was not found: step skipped.')
|
||||||
|
|
||||||
if os.path.isfile(os.path.join(filepath, "app", "main", "createWindow.js")):
|
if os.path.isfile(os.path.join(filepath, "app", "main", "createWindow.js")):
|
||||||
with open(os.path.join(filepath, "app", "main", "createWindow.js"), 'r', encoding='UTF-8') as content:
|
with open(os.path.join(filepath, "app", "main", "createWindow.js"), 'r', encoding='UTF-8') as content:
|
||||||
content = content.read()
|
content=content.read()
|
||||||
print(
|
print(
|
||||||
f' ...making window frameless @ {os.path.join(filepath, "app", "main", "createWindow.js")}')
|
f' ...making window frameless @ {os.path.join(filepath, "app", "main", "createWindow.js")}')
|
||||||
if '{ frame: false, show: false' not in content:
|
if '{ frame: false, show: false' not in content:
|
||||||
content = content.replace(
|
content=content.replace(
|
||||||
'{ show: false', '{ frame: false, show: false')
|
'{ show: false', '{ frame: false, show: false')
|
||||||
print(
|
print(
|
||||||
f' ...adding "open hidden" capabilities to {os.path.join(filepath, "app", "main", "createWindow.js")}')
|
f' ...adding "open hidden" capabilities to {os.path.join(filepath, "app", "main", "createWindow.js")}')
|
||||||
content = re.sub('\\s*\\/\\* === INJECTION START === \\*\\/.*?\\/\\* === INJECTION END === \\*\\/\\s*',
|
content=re.sub('\\s*\\/\\* === INJECTION START === \\*\\/.*?\\/\\* === INJECTION END === \\*\\/\\s*',
|
||||||
'window.show()', content, flags=re.DOTALL).replace('window.show()', """
|
'window.show()', content, flags=re.DOTALL).replace('window.show()', """
|
||||||
/* === INJECTION START === */
|
/* === INJECTION START === */
|
||||||
const path = require('path'),
|
const path = require('path'),
|
||||||
@ -158,10 +158,10 @@ try:
|
|||||||
with open(os.path.join(filepath, "app", "renderer", "index.js"), 'r', encoding='UTF-8') as content:
|
with open(os.path.join(filepath, "app", "renderer", "index.js"), 'r', encoding='UTF-8') as content:
|
||||||
print(
|
print(
|
||||||
f' ...adjusting drag area for frameless window in {os.path.join(filepath, "app", "renderer", "index.js")}')
|
f' ...adjusting drag area for frameless window in {os.path.join(filepath, "app", "renderer", "index.js")}')
|
||||||
content = content.read()
|
content=content.read()
|
||||||
loc = content.rfind('dragRegionStyle')
|
loc=content.rfind('dragRegionStyle')
|
||||||
content = content[:loc] + content[loc:] \
|
content=content[:loc] + content[loc:]
|
||||||
.replace('top: 0', 'top: 1', 1) \
|
.replace('top: 0', 'top: 1', 1)
|
||||||
.replace('height: 34', 'height: 10', 1)
|
.replace('height: 34', 'height: 10', 1)
|
||||||
with open(os.path.join(filepath, "app", "renderer", "index.js"), 'w', encoding='UTF-8') as write:
|
with open(os.path.join(filepath, "app", "renderer", "index.js"), 'w', encoding='UTF-8') as write:
|
||||||
write.write(content)
|
write.write(content)
|
||||||
@ -175,11 +175,11 @@ try:
|
|||||||
f' ...adding tray support (inc. context menu with settings) to {os.path.join(filepath, "app", "main", "main.js")}')
|
f' ...adding tray support (inc. context menu with settings) to {os.path.join(filepath, "app", "main", "main.js")}')
|
||||||
print(
|
print(
|
||||||
f' ...adding window toggle hotkey to {os.path.join(filepath, "app", "main", "main.js")}')
|
f' ...adding window toggle hotkey to {os.path.join(filepath, "app", "main", "main.js")}')
|
||||||
content = content.read()
|
content=content.read()
|
||||||
with open(os.path.join(filepath, "app", "main", "main.js"), 'w', encoding='UTF-8') as write:
|
with open(os.path.join(filepath, "app", "main", "main.js"), 'w', encoding='UTF-8') as write:
|
||||||
if '/* === INJECTION MARKER === */' in content:
|
if '/* === INJECTION MARKER === */' in content:
|
||||||
print(' * tray.js already added. replacing it.')
|
print(' * tray.js already added. replacing it.')
|
||||||
original = []
|
original=[]
|
||||||
for line in content.splitlines():
|
for line in content.splitlines():
|
||||||
if '/* === INJECTION MARKER === */' in line:
|
if '/* === INJECTION MARKER === */' in line:
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user