-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add settings, controls, uploads and logs features with configuration …
…based building system
- Loading branch information
1 parent
ff13211
commit d006e34
Showing
195 changed files
with
11,136 additions
and
17,147 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 |
---|---|---|
|
@@ -5,3 +5,4 @@ dist/ | |
src/views/ | ||
.husky/ | ||
src/locales/locales.json | ||
config.custom.js |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
draft/* | ||
src/views/* | ||
src/locales/locales.json | ||
src/locales/locales.json |
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,64 @@ | ||
# Changelog | ||
|
||
## 2021-09-23 (3.0.0) | ||
|
||
* Add configuration based build system | ||
* Update fonts includes | ||
|
||
## 2021-09-09 (0.5.0) | ||
|
||
* Add printer control page | ||
|
||
## 2021-08-11 (0.4.0) | ||
|
||
* Add advanced upload widget | ||
|
||
|
||
## 2021-07-26 (0.3.5) | ||
|
||
* Add debug outputs to investigate project picture collision | ||
|
||
|
||
## 2021-07-20 (0.3.4) | ||
|
||
* Removed unnecessary colon after hostname in Dashboard | ||
* Switched from data.link to data.printer for settings end point | ||
|
||
|
||
## 2021-07-14 (0.3.3) | ||
|
||
* All not available project properties are hidden | ||
* Toaster messages are now sticky to window bottom | ||
* Increased padding between the preview widget and bottom content | ||
* Fixed printing time estimations missmatching | ||
* No log file will be selected by default anymore | ||
* Files with size above 100MB won't be loaded into textarea | ||
* Added missing Czech translations | ||
|
||
|
||
## 2021-07-12 (0.3.2) | ||
|
||
* Fixed log viewer | ||
* Added possibility to change user login and password | ||
* Added possibility to change printer name and location | ||
|
||
|
||
## 2021-07-01 (0.3.1) | ||
|
||
* Fixed padding for preview widget on Dashboard and Projects page | ||
|
||
|
||
## 2021-06-30 (0.3.0) | ||
|
||
* Fixed progress bar behavior when printing is finished | ||
* Fixed error handling for periodic requests | ||
* Page heading is sticky now | ||
* Telemetry sidebar is sticky now | ||
* Added frontend version to the Settings page | ||
* Fixed 'undefined' error pop up heading in some cases | ||
|
||
|
||
## 2021-06-25 | ||
|
||
* Added persistent `/api/job` polling without a rely on the `state.flags.printing` | ||
|
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
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,15 @@ | ||
const webpackConfig = require("./webpack.config"); | ||
|
||
module.exports = (env, args) => { | ||
const config = { | ||
PRINTER_NAME: "Original Prusa Mini", | ||
PRINTER_TYPE: "fdm", | ||
|
||
WITH_SETTINGS: false, | ||
WITH_CONTROLS: false, | ||
WITH_LOGS: false, | ||
WITH_FONT: false, | ||
...env, | ||
}; | ||
return webpackConfig(config, args); | ||
} |
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,15 @@ | ||
const webpackConfig = require("./webpack.config"); | ||
|
||
module.exports = (env, args) => { | ||
const config = { | ||
PRINTER_NAME: "Original Prusa SL1", | ||
PRINTER_TYPE: "sla", | ||
|
||
WITH_SETTINGS: false, | ||
WITH_CONTROLS: false, | ||
WITH_LOGS: false, | ||
WITH_FONT: true, | ||
...env, | ||
}; | ||
return webpackConfig(config, args); | ||
} |
Oops, something went wrong.