Skip to content

Commit

Permalink
Added codicon font back
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Nov 14, 2024
1 parent 8bb3358 commit 9d75bd5
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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

Expand Down
6 changes: 6 additions & 0 deletions admin/vsFont/README.md
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.
1 change: 1 addition & 0 deletions admin/vsFont/codicon.json

Large diffs are not rendered by default.

Binary file added admin/vsFont/codicon.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions admin/vsFont/createJson.js
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));
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.2",
"@types/node": "^22.9.0",
"@types/node": "^18.19.64",
"axios": "^1.7.7",
"jsonata": "^2.0.5",
"jszip": "^3.10.1",
Expand All @@ -61,7 +61,7 @@
"@iobroker/build-tools": "^2.0.6",
"@iobroker/eslint-config": "^0.1.7",
"@iobroker/testing": "^5.0.0",
"@iobroker/types": "^7.0.3",
"@iobroker/types": "^6.0.11",
"@types/nodemailer": "^6.4.16",
"@types/node-schedule": "^2.1.7",
"@types/request": "^2.48.12",
Expand All @@ -75,17 +75,14 @@
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.javascript/issues"
},
"main": "src/main.ts",
"main": "build-backend/main.js",
"files": [
"admin/",
"lib/",
"build-backend/",
"docs/",
"install/",
"lib/",
"io-package.json",
"LICENSE",
"src/main.ts",
"admin/vsFont/codicon.json"
"LICENSE"
],
"scripts": {
"test:declarations": "tsc -p test/lib/TS/tsconfig.json && tsc -p test/lib/JS/tsconfig.json",
Expand Down

0 comments on commit 9d75bd5

Please sign in to comment.