diff --git a/me/help/__init__.py b/me/help/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/me/help/changelog.yaml b/me/help/changelog.yaml index 20ec0064..0b8ecaf1 100644 --- a/me/help/changelog.yaml +++ b/me/help/changelog.yaml @@ -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: | diff --git a/me/help/gen.py b/me/help/gen.py index 7fc7a854..d3b4da24 100644 --- a/me/help/gen.py +++ b/me/help/gen.py @@ -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) \ No newline at end of file +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)