Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.1 #497

Merged
merged 37 commits into from
Jan 1, 2022
Merged

1.1.1 #497

Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
be88dab
Removed numpy (#410)
EvilGremlin Mar 20, 2021
083e0f1
bump version
jneilliii Mar 20, 2021
b9df494
switch to partial plotly bundle
jneilliii Mar 25, 2021
e395642
add camera position option, #377
jneilliii May 2, 2021
fc39413
add `Camera Position` doc examples
jneilliii May 2, 2021
d0bb780
Fixed circular mask, improved debug output
EvilGremlin May 7, 2021
9f75817
Merge pull request #428 from EvilGremlin/rc
jneilliii May 8, 2021
e8080ef
enforce float on offset for parsing relative offsets, #424
jneilliii May 8, 2021
14da462
update wiki and readme, add missing plotly js library
jneilliii May 8, 2021
02bca7b
minor updates
jneilliii May 8, 2021
642343f
default date locale setting to `en-US`, #432
jneilliii May 16, 2021
3e0265a
fix issues with blank date locale string for auto-detection from browser
jneilliii May 16, 2021
bddcf96
add custom action command `BEDLEVELVISUALIZER_LEVELBED` to allow use …
jneilliii May 23, 2021
b7abda8
Fix width of settings UI
cp2004 Jun 1, 2021
ef845c3
Merge pull request #442 from cp2004/patch-1
jneilliii Jun 1, 2021
4289073
added BLVPROCESSINGON/BLVPROCESSINGOFF received gcode commands via M1…
jneilliii Jun 20, 2021
b9221eb
Merge branch 'rc' of https://github.com/jneilliii/OctoPrint-BedLevelV…
jneilliii Jun 20, 2021
e44ed85
don't show settings button for non admins, #445
jneilliii Jun 20, 2021
6e1fe9b
Update bedlevelvisualizer.js
jneilliii Jun 20, 2021
7183551
update plotly.js to version 2.1.0 gl3d bundle
jneilliii Jun 20, 2021
dea247e
update plotly.js and a little clean-up
jneilliii Jul 24, 2021
66f76ff
prep release
jneilliii Jul 31, 2021
6d03d4f
add ability to configure graph height in visualization settings, #462
jneilliii Aug 27, 2021
1a61d29
Merge branch 'feature/graph_height' into rc
jneilliii Aug 27, 2021
9689578
add min, max, and variance values of graphed mesh, #470
jneilliii Sep 18, 2021
0dfb76e
added fullscreen mode to tab, for use with OctoDash.
jneilliii Oct 2, 2021
1bc8a9f
different approach for OctoDash compatibility
jneilliii Nov 7, 2021
964103a
include missing plotly library
jneilliii Nov 9, 2021
7236308
update plotly
jneilliii Nov 9, 2021
27b00fa
Merge branch 'master' of https://github.com/jneilliii/OctoPrint-BedLe…
jneilliii Nov 13, 2021
d85d2ce
include bootstrap style for better button appearance
jneilliii Nov 13, 2021
8975b79
adjust the tables for better theme support, #479
jneilliii Jan 1, 2022
4098553
add Prusa adjustment values to graph (still needs verification), #242
jneilliii Jan 1, 2022
b1ce5cf
move prusa correction option to corrections tab
jneilliii Jan 1, 2022
54c1989
add appearance > title setting to automatically downloaded snapshots,…
jneilliii Jan 1, 2022
bc7058e
update docs and screenshots, #335, #358, #468
jneilliii Jan 1, 2022
538ef30
bump version, prep for release
jneilliii Jan 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update plotly
  • Loading branch information
jneilliii committed Nov 9, 2021
commit 72363088eb0d2ad0d465b944fe215269d09aa787
2 changes: 1 addition & 1 deletion octoprint_bedlevelvisualizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def get_assets(self):
"js/knockout-sortable.1.2.0.js",
"js/fontawesome-iconpicker.js",
"js/ko.iconpicker.js",
"js/plotly-2.4.2.min.js",
"js/plotly.min.js",
"js/bedlevelvisualizer.js",
],
css=[
Expand Down
65 changes: 65 additions & 0 deletions octoprint_bedlevelvisualizer/static/js/plotly.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<div class="container">
{% if not error %}
{% if mesh %}
<script src="{{ url_for("plugin.bedlevelvisualizer.static", filename="js/plotly-2.4.2.min.js") }}"></script>
<script src="{{ url_for("plugin.bedlevelvisualizer.static", filename="js/plotly.min.js") }}"></script>
<div id="bedlevelvisualizer_graph"></div>
<script type="application/javascript">
let None = '';
Expand Down