Skip to content

Commit

Permalink
Fix typo thank @rondlh for pointing it
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-github committed Feb 5, 2024
1 parent de26747 commit 9c18702
Show file tree
Hide file tree
Showing 26 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion config/targets/Printer3D/Marlin-embedded/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const temperatures = {
},
],
P: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 0.5 }], //let say probe is 50% of extruder temperature
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redondant is same as extruder 0
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redundant is same as extruder 0
M: [{ value: roomTemperature, lastTime: -1, variation: 1 }], //the motherboard is same as room temperature +5/10 degres
}

Expand Down
2 changes: 1 addition & 1 deletion config/targets/Printer3D/Marlin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const temperatures = {
},
],
P: [{ value: roomTemperature, sameas: 'T', lastTime: -1, variation: 0.5 }], //let say probe is 50% of extruder temperature
R: [{ value: roomTemperature, sameas: 'T', lastTime: -1, variation: 1 }], //the redondant is same as extruder 0
R: [{ value: roomTemperature, sameas: 'T', lastTime: -1, variation: 1 }], //the redundant is same as extruder 0
M: [{ value: roomTemperature, lastTime: -1, variation: 1 }], //the motherboard is same as room temperature +5/10 degres
}

Expand Down
2 changes: 1 addition & 1 deletion config/targets/Printer3D/Repetier/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const temperatures = {
},
],
P: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 0.5 }], //let say probe is 50% of extruder temperature
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redondant is same as extruder 0
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redundant is same as extruder 0
M: [{ value: roomTemperature, lastTime: -1, variation: 1 }], //the motherboard is same as room temperature +5/10 degres
}

Expand Down
2 changes: 1 addition & 1 deletion config/targets/Printer3D/Smoothieware/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const temperatures = {
},
],
P: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 0.5 }], //let say probe is 50% of extruder temperature
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redondant is same as extruder 0
R: [{ value: roomTemperature, sameas: "T", lastTime: -1, variation: 1 }], //the redundant is same as extruder 0
M: [{ value: roomTemperature, lastTime: -1, variation: 1 }], //the motherboard is same as room temperature +5/10 degres
}

Expand Down
Binary file modified dist/CNC/GRBL/index.html.gz
Binary file not shown.
Binary file modified dist/CNC/GRBLHal/index.html.gz
Binary file not shown.
Binary file modified dist/Plotter/HP-GL/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Marlin-embedded/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Marlin/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Repetier/index.html.gz
Binary file not shown.
Binary file modified dist/Printer3D/Smoothieware/index.html.gz
Binary file not shown.
Binary file modified dist/SandTable/GRBL/index.html.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions languages/printerpack/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
"P41": "Extruder $",
"P42": "Probe",
"P43": "Chamber",
"P44": "Redondant",
"P44": "Redundant",
"P45": "Show Fans",
"P46": "Show Speed",
"P47": "Show Flow rate",
Expand Down Expand Up @@ -421,7 +421,7 @@
"P83": "Show Bed",
"P84": "Show Chamber",
"P85": "Show Probe",
"P86": "Show Redondant",
"P86": "Show Redundant",
"P87": "Show Board",
"P88": "Show Sensors",
"P89": "Waiting for temperatures list available from printer",
Expand Down
2 changes: 1 addition & 1 deletion src/components/App/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
import { h } from 'preact'
import { webUIbuild } from '../../targets'
export const webUIversion = '3.0.0-a51'
export const webUIversion = '3.0.0-a52'
export const Esp3dVersion = () => (
<span>
{webUIversion}.{webUIbuild}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Panels/Charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const charts = [
//extruders
T: [],

//redondant
//redundant
R: [],
},
},
Expand Down Expand Up @@ -102,7 +102,7 @@ const isVisible = (tool) => {
B: "showbedchart",
C: "showchamberchart",
P: "showprobechart",
R: "showredondantchart",
R: "showredundantchart",
M: "showboardchart",
S: "showsensorchart",
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Panels/Temperatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const isVisible = (tool) => {
B: "showbedctrls",
C: "showchamberctrls",
P: "showprobectrls",
R: "showredondantctrls",
R: "showredundantctrls",
M: "showboardctrls",
}
return setting[tool] != undefined
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Marlin-embedded/TargetContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const TargetContextProvider = ({ children }) => {
//Cooler: [], //0->1 is only for laser so out of scope
const [temperatures, setTemperatures] = useState({
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Marlin-embedded/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const getTemperatures = (str) => {
let result = null
const response = {
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Marlin/TargetContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const TargetContextProvider = ({ children }) => {
//Cooler: [], //0->1 is only for laser so out of scope
const [temperatures, setTemperatures] = useState({
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Marlin/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const getTemperatures = (str) => {
let result = null
const response = {
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Repetier/TargetContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const TargetContextProvider = ({ children }) => {
//Cooler: [], //0->1 is only for laser so out of scope
const [temperatures, setTemperatures] = useState({
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Repetier/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const getTemperatures = (str) => {
let result = null
const response = {
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Smoothieware/TargetContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const TargetContextProvider = ({ children }) => {
//Cooler: [], //0->1 is only for laser so out of scope
const [temperatures, setTemperatures] = useState({
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
2 changes: 1 addition & 1 deletion src/targets/Printer3D/Smoothieware/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const getTemperatures = (str) => {
let result = null
const response = {
T: [], //0->8 T0->T8 Extruders
R: [], //0->1 R Redondant
R: [], //0->1 R Redundant
B: [], //0->1 B Bed
C: [], //0->1 Chamber
P: [], //0->1 Probe
Expand Down
4 changes: 2 additions & 2 deletions src/targets/Printer3D/preferences.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"value": true
},
{
"id": "showredondantctrls",
"id": "showredundantctrls",
"type": "boolean",
"label": "P86",
"value": true
Expand Down Expand Up @@ -175,7 +175,7 @@
"value": true
},
{
"id": "showredondantchart",
"id": "showredundantchart",
"type": "boolean",
"label": "P86",
"value": true
Expand Down
4 changes: 2 additions & 2 deletions src/targets/Printer3D/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"P41": "Extruder $",
"P42": "Probe",
"P43": "Chamber",
"P44": "Redondant",
"P44": "Redundant",
"P45": "Show Fans",
"P46": "Show Speed",
"P47": "Show Flow rate",
Expand Down Expand Up @@ -78,7 +78,7 @@
"P83": "Show Bed",
"P84": "Show Chamber",
"P85": "Show Probe",
"P86": "Show Redondant",
"P86": "Show Redundant",
"P87": "Show Board",
"P88": "Show Sensors",
"P89": "Waiting for temperatures list available from printer",
Expand Down

0 comments on commit 9c18702

Please sign in to comment.