Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Birkbjo committed Dec 7, 2017
1 parent 548d3de commit f16d14f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion octoprint_themeify/static/less/discorded/discorded.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.discorded() {
body {
background-color: white;
background-color: @darkish;
color: @notquiteWhite;
font-weight: 400;
}
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"name": "Themeify",
"version": "1.0.0",
"description": "A plugin to change the looks of OctoPrint",
"license": "AGPL-3.0",
"scripts": {
"build": "webpack -p",
"clean": "rm -r octoprint_themeify/static/dist",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

plugin_name = "Themeify"

plugin_version = "0.3.1"
plugin_version = "1.0.0"

plugin_description = """Beautiful themes for octoprint"""

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const staticPath = path.resolve(__dirname, "octoprint_themeify/static");
module.exports = {
entry: [
path.join(staticPath, "js", "themeify.js"),
"./octoprint_themeify/static/less/base.less"
path.join(staticPath, "less", "base.less")
],
output: {
filename: "themeify.min.js",
Expand Down

0 comments on commit f16d14f

Please sign in to comment.