dgme help: "packagified" help and updated to 5.7.0.

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40269
This commit is contained in:
hsoft 2009-12-18 12:57:47 +00:00
parent cf819dc0a8
commit 6e226f32fd
3 changed files with 14 additions and 5 deletions

0
me/help/__init__.py Normal file
View File

View File

@ -1,3 +1,12 @@
- date: 2009-12-18
version: 5.7.0
description: |
* Added drag & drop support in the Directories panel. (#9)
* Fixed a bug causing dupeGuru to be confused if a scanned file was moved during the scan. (#72)
* Clarified how directories' state are set by painting a combo box in the state cells. [Windows]
(#76)
* Fixed some crashes. (#78 and #79)
* Dropped Mac OS X Tiger support.
- date: 2009-10-14
version: 5.6.6
description: |

View File

@ -5,10 +5,10 @@
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/hs_license
import os
import os.path as op
from hsdocgen import generate_help, filters
tix = filters.tixgen("https://hardcoded.lighthouseapp.com/projects/31699-dupeguru/tickets/{0}")
generate_help.main('.', 'dupeguru_me_help', force_render=True, tix=tix)
def generate(windows=False):
tix = filters.tixgen("https://hardcoded.lighthouseapp.com/projects/31699-dupeguru/tickets/{0}")
basepath = op.dirname(__file__)
generate_help.main(basepath, op.join(basepath, 'dupeguru_me_help'), force_render=True, tix=tix, windows=windows)