/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Lucas Shrewsbury
  • Date: 2009-08-24 05:45:14 UTC
  • mto: This revision was merged to the branch mainline in revision 663.
  • Revision ID: rollbak@gmail.com-20090824054514-x5cteatkygzhw1ls
Fix #294632 by adding ignored emblem and correct status.
Fix #417966 by setting not emblem and correcting status.

* nautilus-bzr.py:
(BzrExtension.update_file_info): added check for ignored and unversioned files.

* setup.py: 
(data_files): added ignored emblem image.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
setup(
139
139
    name = "bzr-gtk",
140
 
    version = "0.97.0",
 
140
    version = "0.96.2",
141
141
    maintainer = "Jelmer Vernooij",
142
142
    maintainer_email = "jelmer@samba.org",
143
143
    description = "GTK+ Frontends for various Bazaar commands",
196
196
                        'icons/emblem-bzr-conflict.svg', 
197
197
                        'icons/emblem-bzr-controlled.svg', 
198
198
                        'icons/emblem-bzr-modified.svg',
199
 
                        'icons/emblem-bzr-removed.svg'])
 
199
                        'icons/emblem-bzr-removed.svg',
 
200
                        'icons/emblem-bzr-ignored.svg'])
200
201
               ],
201
202
    cmdclass={'install_data': InstallData,
202
203
              'build_credits': CreateCredits,