From f15eae5e4014e4766da38f646b23668044e4d5a2 Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 24 Nov 2014 15:30:06 +0100 Subject: [PATCH 1/5] ignoring .directory settings --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d7dbe1f7..91e6981c 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,5 @@ OctoPrint.egg-info *.orig *.codekit -/nbproject/private/ \ No newline at end of file +/nbproject/private/ +.directory From a4864b85089bdbdcf3b92e7be74a7d8d518a6612 Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 24 Nov 2014 15:47:12 +0100 Subject: [PATCH 2/5] disabled sd support --- src/octoprint/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index 5691d502..f71cda21 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -78,10 +78,10 @@ default_settings = { "maxExtruders": 10 }, "feature": { - "temperatureGraph": True, + "temperatureGraph": False, "waitForStartOnConnect": False, "alwaysSendChecksum": False, - "sdSupport": True, + "sdSupport": False, "sdAlwaysAvailable": False, "swallowOkAfterResend": True, "repetierTargetTemp": False, @@ -117,7 +117,7 @@ default_settings = { {"x": 0.0, "y": 0.0} ], "bedDimensions": { - "x": 200.0, "y": 200.0, "r": 100, "circular": False + "x": 435.0, "y": 300.0, "r": 100, "circular": False }, "defaultExtrusionLength": 5 }, From 913172e008cfb4fcec80e5650b348bc3db36a84b Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 24 Nov 2014 16:09:59 +0100 Subject: [PATCH 3/5] label updates: print -> laser --- src/octoprint/templates/index.jinja2 | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/octoprint/templates/index.jinja2 b/src/octoprint/templates/index.jinja2 index 0ff2da6b..f8629c06 100644 --- a/src/octoprint/templates/index.jinja2 +++ b/src/octoprint/templates/index.jinja2 @@ -151,23 +151,23 @@
{{ _('Machine State') }}:
{{ _('File') }}:  (SD)
- {{ _('Timelapse') }}:
+ -
+ - {{ _('Approx. Total Print Time') }}:
- {{ _('Print Time') }}:
- {{ _('Print Time Left') }}:
- {{ _('Printed') }}:
+ {{ _('Approx. Total Job Time') }}:
+ + {{ _('Processed') }}:
@@ -228,7 +228,7 @@
-
+
@@ -248,7 +248,7 @@
{{ _('Size') }}:
-
+
@@ -539,7 +539,7 @@

Warning

- You've selected for printing which has a size of + You've selected which has a size of . Depending on your machine this might be too large for rendering and cause your browser to become unresponsive or crash.

From 81ca42cd87392595a1ffb4ac3228ccd90f7b3c98 Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 24 Nov 2014 16:13:00 +0100 Subject: [PATCH 4/5] ignoring nbproject --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 91e6981c..ed470dab 100644 --- a/.gitignore +++ b/.gitignore @@ -22,5 +22,5 @@ OctoPrint.egg-info *.orig *.codekit -/nbproject/private/ +/nbproject/ .directory From af327129d20b0a75510170ed3f36ff5aa9ed9ca8 Mon Sep 17 00:00:00 2001 From: Teja Date: Mon, 24 Nov 2014 16:38:36 +0100 Subject: [PATCH 5/5] default settings for file list: no filtering --- src/octoprint/static/js/app/viewmodels/files.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/static/js/app/viewmodels/files.js b/src/octoprint/static/js/app/viewmodels/files.js index 2bb97ff7..32f4cf32 100644 --- a/src/octoprint/static/js/app/viewmodels/files.js +++ b/src/octoprint/static/js/app/viewmodels/files.js @@ -67,7 +67,7 @@ function GcodeFilesViewModel(printerStateViewModel, loginStateViewModel, slicing } }, "name", - ["machinecode"], + [], [["sd", "local"], ["machinecode", "model"]], 0 );