-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bb3358
commit 9d75bd5
Showing
6 changed files
with
21 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,14 +28,17 @@ Executes Javascript, Typescript Scripts. | |
<!-- | ||
### **WORK IN PROGRESS** | ||
--> | ||
### **WORK IN PROGRESS** | ||
- (@GermanBluefox) Backend re-written to typescript | ||
- (@GermanBluefox) Removed the `request` module from the default modules | ||
|
||
### 8.8.3 (2024-09-05) | ||
|
||
- (bluefox) Fixed object selector in rules | ||
- (@GermanBluefox) Fixed object selector in rules | ||
|
||
### 8.8.2 (2024-08-07) | ||
|
||
- (bluefox) updated dependencies | ||
- (@GermanBluefox) updated dependencies | ||
|
||
### 8.8.0 (2024-08-05) | ||
|
||
|
@@ -55,7 +58,7 @@ Executes Javascript, Typescript Scripts. | |
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014-2024 bluefox <[email protected]>, | ||
Copyright (c) 2014-2024 @GermanBluefox <[email protected]>, | ||
|
||
Copyright (c) 2014 hobbyquaker | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# codicon.json | ||
This file is Buffer of `codicon.zip` with `codicon.ttf` inside. | ||
|
||
# codicon.ttf | ||
The Size of `codicon.ttf` must be 70.750. | ||
If the size is other, it is wrong. |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const fs = require('node:fs'); | ||
const data = fs.readFileSync(`${__dirname}/codicon.zip`, 'base64'); | ||
fs.writeFileSync(`${__dirname}/codicon.json`, JSON.stringify(data)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters