Skip to content

Commit

Permalink
chore: release v2.0.0
Browse files Browse the repository at this point in the history
- (@GermanBluefox) Project was completely rewritten with TypeScript
- (@GermanBluefox) Better mobile layouts added
  • Loading branch information
GermanBluefox committed Jan 5, 2025
1 parent 179df7d commit 0b05d53
Show file tree
Hide file tree
Showing 11 changed files with 301 additions and 293 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ You can debug view charts locally with:
-->

## Changelog

### **WORK IN PROGRESS**
### 2.0.0 (2025-01-05)

- (@GermanBluefox) Project was completely rewritten with TypeScript
- (@GermanBluefox) Better mobile layouts added
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/chart/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
document.head.appendChild(script);
</script>
<title>Echarts [ioBroker]</title>
<script type="module" crossorigin src="./assets/index-eg0Cycky.js"></script>
<script type="module" crossorigin src="./assets/index-CEGXPVnF.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-VI9R7d-i.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion admin/tab.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
document.head.appendChild(script);
</script>
<title>Echarts [ioBroker]</title>
<script type="module" crossorigin src="./assets/index-DDrMdFmh.js"></script>
<script type="module" crossorigin src="./assets/index-B3QyvjYD.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-D5BB0j0i.css">
</head>
<body>
Expand Down
405 changes: 207 additions & 198 deletions io-package.json

Large diffs are not rendered by default.

170 changes: 85 additions & 85 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,87 +1,87 @@
{
"name": "iobroker.echarts",
"version": "1.9.5",
"description": "Build useful charts in ioBroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.echarts",
"license": "Apache-2.0",
"keywords": [
"charts",
"diagram",
"ioBroker"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.echarts"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"echarts": "^5.6.0",
"jsdom": "^25.0.1"
},
"dependencies": {
"moment": "^2.30.1",
"@iobroker/adapter-core": "^3.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-react-v5": "^7.4.10",
"@iobroker/build-tools": "^2.0.14",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/legacy-testing": "^2.0.1",
"@iobroker/testing": "^5.0.0",
"@iobroker/vis-2-widgets-react-dev": "^4.0.4",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"axios": "^1.7.9",
"chai": "^4.5.0",
"colorette": "^2.0.20",
"mocha": "^11.0.1",
"puppeteer": "^23.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"main": "build-backend/main.js",
"files": [
"admin/",
"img/",
"widgets/",
"www/",
"io-package.json",
"LICENSE",
"build-backend/"
],
"scripts": {
"test:package": "mocha test/package --exit",
"test:gui": "mocha ./test/*.gui.js --exit",
"test": "npm run test:package",
"prepublishOnly": "npm run build",
"tsc": "tsc -p tsconfig.build.json",
"build": "npm run build:widgets && npm run build:chart && npm run build:preview && npm run build:edit && npm run tsc",
"build:widgets": "node tasksWidgets",
"build:chart": "node tasksChart",
"build:preview": "node tasksPreview",
"build:edit": "node tasksEdit.js",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade && cd src && npx -y npm-check-updates --upgrade && cd ../src-chart && npx -y npm-check-updates --upgrade && cd ../src-preview && npx -y npm-check-updates --upgrade && cd ../src-widgets && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-chart && npm i -f && cd ../src-preview && npm i -f && cd ../src-widgets && npm i -f"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.echarts/issues"
},
"readmeFilename": "README.md"
"name": "iobroker.echarts",
"version": "2.0.0",
"description": "Build useful charts in ioBroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.echarts",
"license": "Apache-2.0",
"keywords": [
"charts",
"diagram",
"ioBroker"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.echarts"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"echarts": "^5.6.0",
"jsdom": "^25.0.1"
},
"dependencies": {
"moment": "^2.30.1",
"@iobroker/adapter-core": "^3.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-react-v5": "^7.4.10",
"@iobroker/build-tools": "^2.0.14",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/legacy-testing": "^2.0.1",
"@iobroker/testing": "^5.0.0",
"@iobroker/vis-2-widgets-react-dev": "^4.0.4",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"axios": "^1.7.9",
"chai": "^4.5.0",
"colorette": "^2.0.20",
"mocha": "^11.0.1",
"puppeteer": "^23.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"main": "build-backend/main.js",
"files": [
"admin/",
"img/",
"widgets/",
"www/",
"io-package.json",
"LICENSE",
"build-backend/"
],
"scripts": {
"test:package": "mocha test/package --exit",
"test:gui": "mocha ./test/*.gui.js --exit",
"test": "npm run test:package",
"prepublishOnly": "npm run build",
"tsc": "tsc -p tsconfig.build.json",
"build": "npm run build:widgets && npm run build:chart && npm run build:preview && npm run build:edit && npm run tsc",
"build:widgets": "node tasksWidgets",
"build:chart": "node tasksChart",
"build:preview": "node tasksPreview",
"build:edit": "node tasksEdit.js",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade && cd src && npx -y npm-check-updates --upgrade && cd ../src-chart && npx -y npm-check-updates --upgrade && cd ../src-preview && npx -y npm-check-updates --upgrade && cd ../src-widgets && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-chart && npm i -f && cd ../src-preview && npm i -f && cd ../src-widgets && npm i -f"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.echarts/issues"
},
"readmeFilename": "README.md"
}

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
document.head.appendChild(script);
</script>
<title>Echarts [ioBroker]</title>
<script type="module" crossorigin src="./assets/index-eg0Cycky.js"></script>
<script type="module" crossorigin src="./assets/index-CEGXPVnF.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-VI9R7d-i.css">
</head>
<body>
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/preview/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
document.head.appendChild(script);
</script>
<title>Echarts preview [ioBroker]</title>
<script type="module" crossorigin src="./assets/index-C8f3dDos.js"></script>
<script type="module" crossorigin src="./assets/index-CgqD6xas.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-VI9R7d-i.css">
</head>
<body>
Expand Down

0 comments on commit 0b05d53

Please sign in to comment.