- Which fields should be copied from the template spool during adding a new new spool?
+ Which fields should be copied when creating a new spool from a template?
@@ -489,7 +489,7 @@ FPE; 2.16
diff --git a/setup.py b/setup.py
index 5dbc5022..7d3fb837 100644
--- a/setup.py
+++ b/setup.py
@@ -15,13 +15,18 @@
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
#
+<<<<<<< HEAD
plugin_version = "2.0.0"
+=======
+plugin_version = "1.7.3"
+>>>>>>> c2d52c7bfffb42a77e076dee05e6c79361355640
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
plugin_description = """Plugin to manage Spools"""
# The plugin's author. Can be overwritten within OctoPrint's internal data via __plugin_author__ in the plugin module
+<<<<<<< HEAD
plugin_author = "OllisGit, mdziekon"
# The plugin's author's mail address.
@@ -29,17 +34,35 @@
# The plugin's homepage URL. Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module
plugin_url = "https://github.com/mdziekon/OctoPrint-SpoolManager"
+=======
+plugin_author = "dojohnso"
+
+# The plugin's author's mail address.
+plugin_author_email = "doug@djohnson.tech"
+
+# The plugin's homepage URL. Can be overwritten within OctoPrint's internal data via __plugin_url__ in the plugin module
+plugin_url = "https://github.com/dojohnso/OctoPrint-SpoolManager"
+>>>>>>> c2d52c7bfffb42a77e076dee05e6c79361355640
# The plugin's license. Can be overwritten within OctoPrint's internal data via __plugin_license__ in the plugin module
plugin_license = "AGPLv3"
# Any additional requirements besides OctoPrint should be listed here
plugin_requires = [
+<<<<<<< HEAD
"Pillow>=9.3,<11",
"qrcode",
"peewee"
# "psycopg2-binary", # postgres - driver
# "pymysql", #mysql - driver
+=======
+ "pillow", # since 7.0.0 no Python 2.7 Support, see https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst
+ # "pillow >=6.2.0, <7.0.0", # since 7.0.0 no Python 2.7 Support, see https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst
+ "qrcode",
+ "peewee"
+ # "psycopg2-binary", # postgres - driver
+ # "pymysql", #mysql - driver
+>>>>>>> c2d52c7bfffb42a77e076dee05e6c79361355640
]
### --------------------------------------------------------------------------------------------------------------------
@@ -73,31 +96,31 @@
from setuptools import setup
try:
- import octoprint_setuptools
+ import octoprint_setuptools
except:
- print("Could not import OctoPrint's setuptools, are you sure you are running that under "
- "the same python installation that OctoPrint is installed under?")
- import sys
- sys.exit(-1)
+ print("Could not import OctoPrint's setuptools, are you sure you are running that under "
+ "the same python installation that OctoPrint is installed under?")
+ import sys
+ sys.exit(-1)
setup_parameters = octoprint_setuptools.create_plugin_setup_parameters(
- identifier=plugin_identifier,
- package=plugin_package,
- name=plugin_name,
- version=plugin_version,
- description=plugin_description,
- author=plugin_author,
- mail=plugin_author_email,
- url=plugin_url,
- license=plugin_license,
- requires=plugin_requires,
- additional_packages=plugin_additional_packages,
- ignored_packages=plugin_ignored_packages,
- additional_data=plugin_additional_data
+ identifier=plugin_identifier,
+ package=plugin_package,
+ name=plugin_name,
+ version=plugin_version,
+ description=plugin_description,
+ author=plugin_author,
+ mail=plugin_author_email,
+ url=plugin_url,
+ license=plugin_license,
+ requires=plugin_requires,
+ additional_packages=plugin_additional_packages,
+ ignored_packages=plugin_ignored_packages,
+ additional_data=plugin_additional_data
)
if len(additional_setup_parameters):
- from octoprint.util import dict_merge
- setup_parameters = dict_merge(setup_parameters, additional_setup_parameters)
+ from octoprint.util import dict_merge
+ setup_parameters = dict_merge(setup_parameters, additional_setup_parameters)
setup(**setup_parameters)