diff --git a/.gitignore b/.gitignore index 78c37a8..3c11a40 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ __pycache__/ build/ dist/ venv/ +icons/ *.log archive_viewer.spec config.ini diff --git a/_constants.py b/_constants.py index 7034ca1..ff23fed 100644 --- a/_constants.py +++ b/_constants.py @@ -1,4 +1,4 @@ VERSION = "1.5.3" -BUILD_DATE = "2018-10-15T14:53:18.894522" +BUILD_DATE = "2018-10-15T17:46:49.912974" AUTHOR = "Sawyer McLane" DEBUGGING = True \ No newline at end of file diff --git a/default.ini b/default.ini index 19029d2..03609f8 100644 --- a/default.ini +++ b/default.ini @@ -10,4 +10,4 @@ defaultmonitor = get_primary_monitor() [Info] version = 1.5.3 author = Sawyer McLane -builddate = 2018-10-15T14:53:18.894522 +builddate = 2018-10-15T17:46:49.912974 diff --git a/gui.pyw b/gui.pyw index 5f26fc0..7622c88 100644 --- a/gui.pyw +++ b/gui.pyw @@ -260,7 +260,8 @@ class LifxFrame(ttk.Frame): def show_about(self): messagebox.showinfo("About", "LIFX-Control-Panel\n" "Version {}\n" - "{}, {}".format(VERSION, AUTHOR, BUILD_DATE)) + "{}, {}\n" + "Bulb Icons by DJW".format(VERSION, AUTHOR, BUILD_DATE)) def on_closing(self): self.logger.info('Shutting down.\n')