Skip to content

Commit b48b18c

Browse files
committed
Fix missing smoothieware Z position
Be sure SD file list is not generated at start in case of printer printing
1 parent 25eefd5 commit b48b18c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

index.html.gz

3 Bytes
Binary file not shown.

www/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<title>ESP3D WebUI</title>
88
<script>var target_firmware="";</script>
9-
<script>var web_ui_version="0.9.80LE";</script>
9+
<script>var web_ui_version="0.9.81LE";</script>
1010
<script>var direct_sd=false;</script>
1111
<script>var fw_version="";</script>
1212
<script>var primary_sd= "/ext/";</script>

www/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function initUI() {
8787
init_extruder_panel();
8888
init_command_panel();
8989
init_controls_panel();
90-
init_files_panel();
90+
init_files_panel(false);
9191
//check if we need setup
9292
if ( target_firmware == "???"){
9393
setupdlg();

www/js/controls.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function get_Position(){
105105
var pos2 = result_data.indexOf(" ", pos1);
106106
if (pos2 > -1){
107107
result = result_data.substring(pos1,pos2);
108-
}
108+
} else result = result_data.substring(pos1);
109109
}
110110
return result.trim();
111111
}

0 commit comments

Comments
 (0)