diff --git a/Extras/plugin_repository/_plugins/octolapse.md b/Extras/plugin_repository/_plugins/octolapse.md index 2f28ecea..aa2712ff 100644 --- a/Extras/plugin_repository/_plugins/octolapse.md +++ b/Extras/plugin_repository/_plugins/octolapse.md @@ -14,7 +14,7 @@ archive: https://github.com/FormerLurker/Octolapse/archive/master.zip tags: - timelapse - + featuredimage: /assets/img/plugins/octolapse/tab_mini.png compatibility: @@ -34,7 +34,7 @@ compatibility:
Octolapse Tab -
+
The Octolapse Tab

@@ -44,7 +44,7 @@ Octolapse is designed to make stabilized timelapses of your prints with as littl Octolapse moves the print bed and extruder into position before taking each snapshot, giving you a crisp image in every frame. Snapshots can be taken at each layer change, at specific height increments, after a period of time has elapsed, or when certain GCodes are detected. You can even combine multiple methods in a single timelapse. -**Important**: *Octolapse requires OctoPrint v1.3.7 or higher.* You can check your OctoPrint version by looking in the lower left hand corner of your OctoPrint server home page. +**Important**: *Octolapse requires OctoPrint v1.3.7 or higher.* You can check your OctoPrint version by looking in the lower left hand corner of your OctoPrint server home page. Octolapse is still in Beta but has been confirmed to work on several printers: @@ -62,29 +62,29 @@ Please note that some settings may need to be adjusted depending on your slicer
-
+
A timelapse of a double spiral vase made with Octolapse

-**Octolapse is provided without warranties of any kind. By installing Octolapse you agree to accept all liability for any damage caused directly or indirectly by Octolapse.** +**Octolapse is provided without warranties of any kind. By installing Octolapse you agree to accept all liability for any damage caused directly or indirectly by Octolapse.** Use caution and never leave your printer unattended. ## Octolapse was designed with print quality in mind * **Continuous tracking** of the X,Y, and Z axes. Octolapse knows where your extruder and bed will be at all times. -* **Extruder state detection** enables Octolapse to choose a good time take a snapshot, minimizing defects. +* **Extruder state detection** enables Octolapse to choose a good time take a snapshot, minimizing defects. * Choose from dozens of existing **presets,** or use a **custom configuration** to maximize quality for your specific application. * Customizable **Z-Hop and retract detection** to reduce stringing, maximizing quality. * **Configurable stabilizations** allow you complete control of the X and Y position of each snapshot. You can choose a position as close to or as far away from your part as you wish. * **Minimal impact on print time and print quality.** Octolapse normally takes between one and three seconds to take a snapshot. It even reports exactly how much time it's using after each snapshot! * Allow or prevent snapshots in certain areas with **snapshot position restrictions.** This can be used to prevent snapshots over critical areas of your print or a delicate part. -* If you have a multi-material printer, you can even **restrict snapshots movements to your wipe tower**, virtually eliminating any quality considerations! +* If you have a multi-material printer, you can even **restrict snapshots movements to your wipe tower**, virtually eliminating any quality considerations! * Octolapse can **calculate intersections** between the printer path and any snapshot position restriction, allowing a snapshot even in the middle of an extrusion. * **Stop the timelapse whenever you want!** If things go awry, you can prevent Octolapse from taking any further snapshots for the rest of the print. It will wait to render any snapshots that were already taken until after the print has finished. -* Use **test mode** to try out your timelapse settings without heating your bed or nozzle, turning on any fans, or extruding any filament. This saves time and plastic. It's also very useful for development and testing. +* Use **test mode** to try out your timelapse settings without heating your bed or nozzle, turning on any fans, or extruding any filament. This saves time and plastic. It's also very useful for development and testing. ## Octolapse was also designed to make great timelapses * **Synchronize your timelapses** with OctoPrint's built in plugin, keeping all of your videos in one place. * Choose between **fixed frame rate** or **fixed length rendering.** Octolapse will automatically adjust the frame rate to match any desired length. You can even set a minimum or maximum acceptable frame rate. @@ -101,7 +101,7 @@ Use caution and never leave your printer unattended.
-
+
The Milennium Falcon @@ -114,7 +114,7 @@ Use caution and never leave your printer unattended.
- + The Moon - Animated X Axis
@@ -124,7 +124,7 @@ Use caution and never leave your printer unattended.
-
+
The obligatory benchy diff --git a/octoprint_octolapse/__init__.py b/octoprint_octolapse/__init__.py index c1094c53..366a20a3 100644 --- a/octoprint_octolapse/__init__.py +++ b/octoprint_octolapse/__init__.py @@ -1105,10 +1105,6 @@ def get_assets(self): # ~~ software update hook def get_update_information(self): - # Define the configuration for your plugin to use with the Software Update - # Plugin here. See - # https://github.com/foosel/OctoPrint/wiki/Plugin:-Software-Update - # for details. return dict(octolapse=dict(displayName="Octolapse", displayVersion=self._plugin_version, # version check: github repository diff --git a/octoprint_octolapse/data/settings_default.json b/octoprint_octolapse/data/settings_default.json index 28aaa60e..eaabd72f 100644 --- a/octoprint_octolapse/data/settings_default.json +++ b/octoprint_octolapse/data/settings_default.json @@ -2125,7 +2125,7 @@ "powerline_frequency": 60 } ], - "version": "0.3.0", + "version": "0.3.1", "position_restriction_types": [ { "name": "Must be inside", diff --git a/setup.py b/setup.py index 771c9d5d..a915ff36 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ # plugin module plugin_name = "Octolapse" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "v0.3.0" +plugin_version = "v0.3.1" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module plugin_description = """Create stabilized timelapses of your 3d prints. Highly customizable, loads of presets, lots of fun."""