diff --git a/hue_plus/hue_ui.py b/hue_plus/hue_ui.py index c575cc9..3146ce7 100755 --- a/hue_plus/hue_ui.py +++ b/hue_plus/hue_ui.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -VERSION="1.4.0" +VERSION="1.4.1" import sys from time import sleep import os @@ -205,7 +205,7 @@ def error(self, message): def get_port(self): ports = [] for port in list_ports.comports(): - if 'MCP2200' in port[1] or 'USB Serial Device' in port[1]: + if 'MCP2200' in port[1] or 'USB Serial Device' in port[1] or 'USB Serial Port' in port[1]: ports.append(port[0]) if ports: return ports[0] diff --git a/installer.cfg b/installer.cfg index 540608d..65fb483 100644 --- a/installer.cfg +++ b/installer.cfg @@ -1,6 +1,6 @@ [Application] name=hue_plus -version=1.4.0 +version=1.4.1 publisher=Gustav Hansen # How to launch the app - this calls the 'main' function from the 'myapp' package: entry_point=hue_plus.hue_ui:main diff --git a/setup.py b/setup.py index 3ee090f..f8c2ad8 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os setup(name='hue_plus', - version='1.4.0', + version='1.4.1', description='A utility to control the NZXT Hue+ in Linux', classifiers=[ 'Development Status :: 5 - Production/Stable', diff --git a/version b/version index 88c5fb8..347f583 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.4.0 +1.4.1