Skip to content

Commit

Permalink
Closes #100. bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethjiang committed May 17, 2017
1 parent 7cdb862 commit 1831090
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Binary file modified octoprint_slicer/static/img/remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added octoprint_slicer/static/img/removeall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions octoprint_slicer/static/js/octoprint_slicer.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -32464,7 +32464,7 @@ function isDev() {

if (!isDev() && typeof Raven !== 'undefined') {
Raven.config('https://[email protected]/141297', {
release: '1.2.7',
release: '1.2.8',
ignoreErrors: ["Failed to execute 'arc' on 'CanvasRenderingContext2D': The radius provided", "Cannot read property 'highlightFill' of undefined", "Argument 1 of SVGMatrix.translate is not a finite floating-point value", /_jp.*is not a function/, "chrome is not defined", "You cannot apply bindings multiple times to the same element.", "SVG_MATRIX_NOT_INVERTABLE", "The index is not in the allowed range."]
}).install();
}
Expand Down Expand Up @@ -32602,7 +32602,7 @@ function SlicerViewModel(parameters) {
<button class="rotate disabled btn" title="Rotate"><img src="' + PLUGIN_BASEURL + 'slicer/static/img/rotate.png"></button>\
<button class="scale disabled btn" title="Scale"><img src="' + PLUGIN_BASEURL + 'slicer/static/img/scale.png"></button>\
<button class="remove disabled btn" title="Remove"><img src="' + PLUGIN_BASEURL + 'slicer/static/img/remove.png"></button>\
<button class="removeall disabled btn" title="Remove all"><img src="' + PLUGIN_BASEURL + 'slicer/static/img/remove.png"></button>\
<button class="removeall disabled btn" title="Remove all"><img src="' + PLUGIN_BASEURL + 'slicer/static/img/removeall.png"></button>\
<button class="more disabled btn" title="More..."><img src="' + PLUGIN_BASEURL + 'slicer/static/img/more.png"></button>\
</div>\
<div class="values rotate">\
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-Slicer"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "1.2.7"
plugin_version = "1.2.8"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down
4 changes: 2 additions & 2 deletions src/slicer.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function isDev() {

if ( ! isDev() && typeof(Raven) !== 'undefined' ) {
Raven.config('https://[email protected]/141297', {
release: '1.2.7',
release: '1.2.8',
ignoreErrors: [
"Failed to execute 'arc' on 'CanvasRenderingContext2D': The radius provided",
"Cannot read property 'highlightFill' of undefined",
Expand Down Expand Up @@ -178,7 +178,7 @@ function SlicerViewModel(parameters) {
+ 'slicer/static/img/remove.png"></button>\
<button class="removeall disabled btn" title="Remove all"><img src="'
+ PLUGIN_BASEURL
+ 'slicer/static/img/remove.png"></button>\
+ 'slicer/static/img/removeall.png"></button>\
<button class="more disabled btn" title="More..."><img src="'
+ PLUGIN_BASEURL
+ 'slicer/static/img/more.png"></button>\
Expand Down

0 comments on commit 1831090

Please sign in to comment.