Skip to content

Commit bc6e164

Browse files
committed
Security Patch
- Updated Packages - Switched from npm to pnpm - Fixed mac link on website; - Switched from ctrl to cmd on mac
1 parent 25a4111 commit bc6e164

8 files changed

Lines changed: 4004 additions & 6024 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- name: Download Repository
1717
uses: actions/checkout@v4
1818
- name: Install Modules
19-
run: npm install
19+
run: pnpm install
2020
- name: Release
21-
run: npm run package
21+
run: pnpm run package
2222
env:
2323
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- name: Download Repository
1717
uses: actions/checkout@v4
1818
- name: Install Modules
19-
run: npm install
19+
run: pnpm install
2020
- name: Test
21-
run: npm run test-build
21+
run: pnpm run test-build

docs/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -232,19 +232,19 @@ <h3>Instructions</h3>
232232

233233

234234
keybindings
235-
ctrl + o Open a file
236-
ctrl + b Build and run the current file
237-
ctrl + s Save the current file
238-
ctrl + n Open a new editor window
239-
ctrl + i Open settings
240-
ctrl + p Export the preview window as PDF
241-
ctrl + t Open a hello world tamplate for the current language
242-
ctrl + m Evaluate a mathematical equation on the selected line
243-
ctrl + , Open editor settings
244-
ctrl + shift + b Beautify the document
245-
ctrl + shift + s Save the current document as new file
246-
ctrl + shift + x Open/close terminal panel
247-
ctrl + shift + t Open/close preview panel
235+
[ctrl/cmd] + o Open a file
236+
[ctrl/cmd] + b Build and run the current file
237+
[ctrl/cmd] + s Save the current file
238+
[ctrl/cmd] + n Open a new editor window
239+
[ctrl/cmd] + i Open settings
240+
[ctrl/cmd] + p Export the preview window as PDF
241+
[ctrl/cmd] + t Open a hello world tamplate for the current language
242+
[ctrl/cmd] + m Evaluate a mathematical equation on the selected line
243+
[ctrl/cmd] + , Open editor settings
244+
[ctrl/cmd] + shift + b Beautify the document
245+
[ctrl/cmd] + shift + s Save the current document as new file
246+
[ctrl/cmd] + shift + x Open/close terminal panel
247+
[ctrl/cmd] + shift + t Open/close preview panel
248248
</pre>
249249
</div>
250250
</div>
@@ -263,7 +263,7 @@ <h3>Instructions</h3>
263263
const root_url = "https://github.com/Haeri/monolith-code/releases/latest/download";
264264

265265
document.getElementById("download-win").href = `${root_url}/monolith-code-Setup-${version}.exe`;
266-
document.getElementById("download-mac").href = `${root_url}/monolith-code-${version}-mac.zip`;
266+
document.getElementById("download-mac").href = `${root_url}/monolith-code-${version}-arm64-mac.zip`;
267267
document.getElementById("download-linux").href = `${root_url}/monolith-code-${version}.AppImage`;
268268
});
269269
}

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const userPrefStore = new Store({
3232
configName: 'user-preferences',
3333
defaults: {
3434
window_config: {
35-
native_frame: false,
35+
native_frame: true,
3636
},
3737
editor_config: {
3838
theme: 'ace/theme/monokai',

0 commit comments

Comments
 (0)