-
-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Sanity check for icon extension if not available
Add Circle/CheckCircle icons for menus Add .menu-item-panel css to be sure mouse click is taken in account Comment some logs Add prettierrc for each extension Add code base for gcodeViewer extension - WIP
- Loading branch information
1 parent
d20ffd9
commit 8f7e11b
Showing
12 changed files
with
4,469 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"semi": false, | ||
"singleQuote": false, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "always", | ||
"requirePragma": false, | ||
"insertPragma": false, | ||
"proseWrap": "preserve", | ||
"overrides": [ | ||
{ | ||
"files": "*.js", | ||
"options": { | ||
"parser": "babel" | ||
} | ||
}, | ||
{"files": "*.css", | ||
"options": { | ||
"parser": "css" | ||
} | ||
}, | ||
{"files": "*.scss", | ||
"options": { | ||
"parser": "scss" | ||
} | ||
}, | ||
{"files": "*.json", | ||
"options": { | ||
"printWidth": 120, | ||
} | ||
} | ||
] | ||
} |
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 @@ | ||
{ | ||
"presets": ["@babel/preset-env"] | ||
} |
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,37 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 4, | ||
"useTabs": false, | ||
"semi": false, | ||
"singleQuote": false, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "always", | ||
"requirePragma": false, | ||
"insertPragma": false, | ||
"proseWrap": "preserve", | ||
"overrides": [ | ||
{ | ||
"files": "*.js", | ||
"options": { | ||
"parser": "babel" | ||
} | ||
}, | ||
{"files": "*.css", | ||
"options": { | ||
"parser": "css" | ||
} | ||
}, | ||
{"files": "*.scss", | ||
"options": { | ||
"parser": "scss" | ||
} | ||
}, | ||
{"files": "*.json", | ||
"options": { | ||
"printWidth": 120, | ||
} | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
extensions/gcodeViewer/dist/gcodeViewer.html/gcodeViewer.html
Large diffs are not rendered by default.
Oops, something went wrong.
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,25 @@ | ||
{ | ||
"name": "gcodeViewer", | ||
"version": "1.0.0", | ||
"description": "ESP3D-WEBUI extension", | ||
"main": "gcodeViewer.html", | ||
"scripts": { | ||
"build": "webpack --mode production" | ||
}, | ||
"keywords": [], | ||
"author": "Luc LEBOSSE", | ||
"license": "LGPL", | ||
"devDependencies": { | ||
"@babel/core": "^7.24.7", | ||
"@babel/preset-env": "^7.24.7", | ||
"babel-loader": "^9.1.3", | ||
"compression-webpack-plugin": "^11.1.0", | ||
"css-loader": "^7.1.2", | ||
"filemanager-webpack-plugin": "^8.0.0", | ||
"html-loader": "^5.0.0", | ||
"html-webpack-plugin": "^5.6.0", | ||
"style-loader": "^4.0.0", | ||
"webpack": "^5.92.0", | ||
"webpack-cli": "^5.1.4" | ||
} | ||
} |
Oops, something went wrong.