forked from kennethjiang/OctoPrint-Slicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'kennethjiang/master'
- Loading branch information
Showing
7 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Submodule 3tk
deleted from
342220
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33044,7 +33044,7 @@ function OverridesViewModel(parameters, array_keys, enum_keys, item_keys, boolea | |
"support": ko.observableArray(["none", "buildplate", "everywhere"]), | ||
"platform_adhesion": ko.observableArray(["none", "brim", "raft"]) | ||
}, | ||
ITEM_KEYS = ["layer_height", "temperature", "bed_temperature", "print_bed_temperature", "fill_density", "wall_thickness", "print_speed", "solid_layer_thickness", "travel_speed", "outer_shell_speed", "inner_shell_speed", "infill_speed", "bottom_layer_speed", "filament_flow", "retraction_speed", "retraction_amount", "extrusion_multiplier", "fan_full_height", "fan_speed", "fan_speed_max"], | ||
ITEM_KEYS = ["layer_height", "temperature", "bed_temperature", "print_bed_temperature", "fill_density", "wall_thickness", "print_speed", "solid_layer_thickness", "travel_speed", "outer_shell_speed", "inner_shell_speed", "infill_speed", "bottom_layer_speed", "filament_flow", "retraction_speed", "retraction_amount", "extrusion_multiplier", "fan_full_height", "fan_speed", "fan_speed_max", "first_layer_temperature", "first_layer_bed_temperature", "brim_width"], | ||
BOOLEAN_KEYS = ["support_material", "overhangs", "retraction_enable", "fan_enabled", "cooling", "fan_always_on"]; | ||
var ALL_KEYS = BOOLEAN_KEYS.concat(ITEM_KEYS).concat(ARRAY_KEYS).concat(Object.keys(ENUM_KEYS)); | ||
|
||
|
@@ -34746,9 +34746,9 @@ function isDev() { | |
return window.location.hostname == "localhost"; | ||
} | ||
|
||
if (!isDev()) { | ||
if (!isDev() && typeof Raven !== 'undefined') { | ||
Raven.config('https://[email protected]/141297', { | ||
release: '1.2.5', | ||
release: '1.2.6', | ||
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(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,9 @@ function isDev() { | |
return window.location.hostname == "localhost"; | ||
} | ||
|
||
if ( ! isDev() ) { | ||
if ( ! isDev() && typeof(Raven) !== 'undefined' ) { | ||
Raven.config('https://[email protected]/141297', { | ||
release: '1.2.5', | ||
release: '1.2.6', | ||
ignoreErrors: [ | ||
"Failed to execute 'arc' on 'CanvasRenderingContext2D': The radius provided", | ||
"Cannot read property 'highlightFill' of undefined", | ||
|