~ubuntu-branches/ubuntu/saucy/unity-tweak-tool/saucy-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Barneedhar Vigneshwar, J Phani Mahesh, Barneedhar Vigneshwar
  • Date: 2013-09-16 19:34:38 UTC
  • Revision ID: package-import@ubuntu.com-20130916193438-dw14bzxkohvxub2y
Tags: 0.0.5
[ J Phani Mahesh ]
* New upstream release (LP: #1226059)
  - New application icon 
  - Show error dialog when schemas are missing instead of crashing
  - Trigger new build of pot files
* UnityTweakTool/section/unity.py
  - Fix Show recently used and more suggestions in dash search (LP: #1166294)
  - Fix Launcher reveal sensitivity scale update issues (LP: #1168863)
* UnityTweakTool/elements/colorchooser.py
  - Fix TypeError in get_rgba() (LP: #1165627)
  - Fix segmentation fault on selecting custom launcher (LP: #1190398)
* UnityTweakTool/elements/option.py
  - Fix "Restore defaults" button (LP: #1186634)
* UnityTweakTool/__init__.py  
  - Fix unity-tweak-tool crashed with dbus.exceptions.DBusException in
  call_blocking() (LP: #1168738)
  - Fix FileNotFoundError (LP: #1225463)
  - Fix dbus.exceptions.DBusException (LP: #1170571)
* data/unity.ui
  - Remove Panel transparency switch (LP: #1168836)
  - Remove Launcher transparency switch (LP: #1168834)

[ Barneedhar Vigneshwar ]
* UnityTweakTool/section/unity.py
  - Fix 'Can't set background blur to static' (LP: #1167343)
  - Fix non-working Launcher only on primary desktop (LP: #1173977)
* UnityTweakTool/section/sphagetti/compiz.py
  - Fix TypeError in color_to_hash() (LP: #1166884)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
try:
38
38
    import DistUtilsExtra.auto
39
39
except ImportError:
40
 
    print >> sys.stderr, 'To build unity-tweak-tool you need https://launchpad.net/python-distutils-extra'
 
40
    print >> sys.stderr, 'To build unity-tweak-tool you need python3-distutils-extra (https://launchpad.net/python-distutils-extra)'
41
41
    sys.exit(1)
42
42
assert DistUtilsExtra.auto.__version__ >= '2.18', 'needs DistUtilsExtra.auto >= 2.18'
43
43
 
44
44
def update_config_old(libdir, values = {}):
45
45
 
46
 
    filename = os.path.join(libdir, 'UnityTweakTool/section/sphagetti/unitytweakconfig.py')
 
46
    filename = os.path.join(libdir, 'UnityTweakTool/section/spaghetti/unitytweakconfig.py')
47
47
    oldvalues = {}
48
48
    try:
49
49
        fin = open(filename, 'r')
185
185
 
186
186
DistUtilsExtra.auto.setup(
187
187
    name='unity-tweak-tool',
188
 
    version='0.0.4',
 
188
    version='0.0.5',
189
189
    license='GPL-3',
190
190
    author='Freyja Development Team',
191
191
    #author_email='email@ubuntu.com',