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

Fix UI #1

Open
wants to merge 24 commits into
base: Alpha-V0.0.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8a5b639
add bootstrap2.3.2 for styling
ianku-ulendo Apr 2, 2024
c6b977d
update plotly to 2.3
ianku-ulendo Apr 2, 2024
1071c57
add bootstrap files
ianku-ulendo Apr 2, 2024
f52acac
test deployment
ianku-ulendo Apr 2, 2024
6bb1817
Revert "test deployment"
ianku-ulendo Apr 2, 2024
a232101
button arrangements and css
ianku-ulendo Apr 2, 2024
1b6ed51
added flexbox properties and center alignment
ianku-ulendo Apr 3, 2024
dcae947
added background to plotly
ianku-ulendo Apr 3, 2024
3de1bca
pushing changes to fix plotly encoding issue
ianku-ulendo Apr 3, 2024
287875b
add calibration labels
ianku-ulendo Apr 3, 2024
b0c9874
add label logic for status
ianku-ulendo Apr 3, 2024
9a88124
change labels class name and comment
ianku-ulendo Apr 3, 2024
ebf8ba0
remove dropdown of calibration selection and fix state label logic
ianku-ulendo Apr 4, 2024
1cd05b1
change calibration loading button, save button. add instruction block…
ianku-ulendo Apr 4, 2024
d19bca7
Merge remote-tracking branch 'refs/remotes/origin/fix-ui' into fix-ui
ianku-ulendo Apr 5, 2024
8e87072
remove unused code
ianku-ulendo Apr 5, 2024
d9056ee
remove unused code
ianku-ulendo Apr 5, 2024
d1ebd42
branch clean up
ianku-ulendo Apr 5, 2024
6c01f4d
remove unused class imports
ianku-ulendo Apr 5, 2024
f9dddd4
remove unused import
ianku-ulendo Apr 5, 2024
7c073ee
Merge branch 'fix-ui' of https://github.com/S2AUlendo/UlendoCaaS into…
ianku-ulendo Apr 8, 2024
f6ea570
remove unused bootstrap dependencies and fix minor ui bugs
ianku-ulendo Apr 8, 2024
166294a
remove glyphicons
ianku-ulendo Apr 8, 2024
9ee3257
add input checking to settings page
ianku-ulendo Apr 8, 2024
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
7 changes: 5 additions & 2 deletions octoprint_autocal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,11 @@ def get_assets(self):
# Define your plugin's asset files to automatically include in the
# core UI here.
return {
"js": ["js/autocal.js", "js/plotly.js"],
"css": ["css/autocal.css"]
"js": ["js/autocal.js",
"js/plotly.js"
],
"css": ["css/autocal.css"
]
# "less": ["less/autocal.less"]
}

Expand Down
Loading