Hello community,

here is the log from the commit of package cura-engine-lulzbot for 
openSUSE:Factory checked in at 2018-07-09 13:28:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cura-engine-lulzbot (Old)
 and      /work/SRC/openSUSE:Factory/.cura-engine-lulzbot.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cura-engine-lulzbot"

Mon Jul  9 13:28:59 2018 rev:4 rq:621272 version:3.2.22

Changes:
--------
--- /work/SRC/openSUSE:Factory/cura-engine-lulzbot/cura-engine-lulzbot.changes  
2018-05-15 10:34:16.870250748 +0200
+++ 
/work/SRC/openSUSE:Factory/.cura-engine-lulzbot.new/cura-engine-lulzbot.changes 
    2018-07-09 13:29:49.118674993 +0200
@@ -1,0 +2,12 @@
+Tue Jul  3 13:03:52 UTC 2018 - [email protected]
+
+- update to version 3.2.22
+  * added backlash_fading option
+
+-------------------------------------------------------------------
+Wed May 30 06:31:09 UTC 2018 - [email protected]
+
+- update to version 3.2.21
+  * version update only
+
+-------------------------------------------------------------------

Old:
----
  CuraEngine-3.2.20.obscpio

New:
----
  CuraEngine-3.2.22.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cura-engine-lulzbot.spec ++++++
--- /var/tmp/diff_new_pack.bNQv1Q/_old  2018-07-09 13:29:50.566672063 +0200
+++ /var/tmp/diff_new_pack.bNQv1Q/_new  2018-07-09 13:29:50.578672038 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           cura-engine-lulzbot
-Version:        3.2.20
+Version:        3.2.22
 Release:        0
 Summary:        3D printer control software
 License:        AGPL-3.0-only
@@ -65,7 +65,8 @@
 mv %buildroot%_bindir/CuraEngine{,-lulzbot}
 
 %files
-%defattr(-,root,root,-)
+%doc README.md Changelog.md
+%license LICENSE
 %_bindir/CuraEngine-lulzbot
 
 %_mandir/man1/CuraEngine-lulzbot.1*

++++++ CuraEngine-3.2.20.obscpio -> CuraEngine-3.2.22.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CuraEngine-3.2.20/src/LayerPlan.cpp 
new/CuraEngine-3.2.22/src/LayerPlan.cpp
--- old/CuraEngine-3.2.20/src/LayerPlan.cpp     2018-03-29 13:57:15.000000000 
+0200
+++ new/CuraEngine-3.2.22/src/LayerPlan.cpp     2018-06-20 07:50:48.000000000 
+0200
@@ -763,6 +763,22 @@
     
     gcode.writeLayerComment(layer_nr);
 
+    // Z-backlash fading
+    if (storage.getSettingInMillimeters("backlash_fading_distance")) {
+        int64_t backlash_fading_dist = 
MM2INT(storage.getSettingInMillimeters("backlash_fading_distance"));
+        if (backlash_fading_dist > 0) {
+            std::ostringstream tmp;
+            tmp << "M425 F";
+            if (layer_nr==0)
+                tmp << "1.0";
+            else if (z > backlash_fading_dist)
+                tmp << "0.0";
+            else
+                tmp << 1.0 - (double) z/backlash_fading_dist;
+            gcode.writeLine(tmp.str().c_str()); 
+        }
+    }
+
     // flow-rate compensation
     
gcode.setFlowRateExtrusionSettings(storage.getSettingInMillimeters("flow_rate_max_extrusion_offset"),
 storage.getSettingInPercentage("flow_rate_extrusion_offset_factor") / 100);
 

++++++ CuraEngine.obsinfo ++++++
--- /var/tmp/diff_new_pack.bNQv1Q/_old  2018-07-09 13:29:50.726671739 +0200
+++ /var/tmp/diff_new_pack.bNQv1Q/_new  2018-07-09 13:29:50.726671739 +0200
@@ -1,5 +1,5 @@
 name: CuraEngine
-version: 3.2.20
-mtime: 1522324635
-commit: aa837d656a2a8afe186e1165e60429e3bf80c314
+version: 3.2.22
+mtime: 1529473848
+commit: 25aec5bb6a766779409a283379ead395c80a0a9a
 

++++++ _service ++++++
--- /var/tmp/diff_new_pack.bNQv1Q/_old  2018-07-09 13:29:50.738671715 +0200
+++ /var/tmp/diff_new_pack.bNQv1Q/_new  2018-07-09 13:29:50.738671715 +0200
@@ -2,8 +2,8 @@
   <service name="obs_scm" mode="disabled">
     <param 
name="url">https://code.alephobjects.com/diffusion/CTE/cura-engine.git</param>
     <param name="scm">git</param>
-    <param name="revision">v3.2.20</param>
-    <param name="version">3.2.20</param>
+    <param name="revision">v3.2.22</param>
+    <param name="version">3.2.22</param>
     <param name="submodules">disable</param>
     <param name="filename">CuraEngine</param>
   </service>


Reply via email to