From f16d14fe27323a683fd7d14c3b6fcdd8f079be26 Mon Sep 17 00:00:00 2001 From: Birk Johansson Date: Thu, 7 Dec 2017 20:57:00 +0100 Subject: [PATCH] 1.0.0 --- octoprint_themeify/static/less/discorded/discorded.less | 2 +- package.json | 4 ++++ setup.py | 2 +- webpack.config.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/octoprint_themeify/static/less/discorded/discorded.less b/octoprint_themeify/static/less/discorded/discorded.less index cfcbe33..e8c4ff5 100644 --- a/octoprint_themeify/static/less/discorded/discorded.less +++ b/octoprint_themeify/static/less/discorded/discorded.less @@ -4,7 +4,7 @@ .discorded() { body { - background-color: white; + background-color: @darkish; color: @notquiteWhite; font-weight: 400; } diff --git a/package.json b/package.json index 9c4cbc9..654a765 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/setup.py b/setup.py index e0061e4..989bf92 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ plugin_name = "Themeify" -plugin_version = "0.3.1" +plugin_version = "1.0.0" plugin_description = """Beautiful themes for octoprint""" diff --git a/webpack.config.js b/webpack.config.js index 4feff36..deda035 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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",