Codebase list congruity / 7786715
New upstream version 20 Scott Talbert 5 years ago
4 changed file(s) with 9 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 * 2018-06-14 Scott Talbert <swt@techie.net>
1 - congruity-20 is released
2 - congruity/mhgui: fix installation with Python 2 (thanks Chris Mayo)
3
04 * 2018-06-09 Scott Talbert <swt@techie.net>
15 - congruity-19 is released
26 - mhgui: Numerous updates to WSDL/XSD to match Logitech changes
2828 import wx
2929 import wx.lib.dialogs
3030
31 version = "19"
31 version = "20"
3232
3333 try:
3434 import libconcord
4747 from mhmanager import SaveActivityTemplate
4848 from mhmanager import Secrets
4949
50 version = "19"
50 version = "20"
5151
5252 HARMONY_350_SKIN_ID = "104"
5353 HARMONY_LINK_SKIN_ID = 82
2727 ]
2828
2929 def initialize_options(self):
30 super().initialize_options()
30 setuptools.command.install.install.initialize_options(self)
3131 self.skip_update_desktop_db = None
3232
3333 def run(self):
34 super().run()
34 setuptools.command.install.install.run(self)
3535 if not self.skip_update_desktop_db:
3636 os.system('update-desktop-database >/dev/null 2>&1')
3737
3838 setup(
3939 name='congruity',
40 version='19',
40 version='20',
4141 description='Applications for programming Logitech Harmony remote controls',
4242 url='https://sourceforge.net/projects/congruity/',
4343 packages=['congruity'],