diff --git a/README.md b/README.md index 4b5caed..d863bcf 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Simply drop the text ``%VAR_NEXT-RECORD%`` in your document between each data en Scribus Generator will automatically load the next record when it reaches the end of your template... so don't add the ``%VAR_NEXT-RECORD%`` at the end of your last page. -A full example to generate Monsters Game Cards based on [Dungeon World](http://www.dungeon-world.com/) is available in the [MonsterCards](https://github.com/berteh/ScribusGenerator/tree/master/example/MonsterCards) directory, created by Dustin Andrews: +A full example to generate Monsters Game Cards based on [Dungeon World](http://www.dungeon-world.com/) is available in the [MonsterCards](https://github.com/berteh/ScribusGenerator/tree/master/example/MonsterCards) directory, created by [Dustin Andrews](https://github.com/dustinandrews): [![Illustration: Example card deck of monsters, by Dustin Andrew](pic/MonsterCards_partial.png)](https://github.com/berteh/ScribusGenerator/raw/master/example/MonsterCards/MonsterCards_partial.pdf) diff --git a/ScribusGeneratorBackend.py b/ScribusGeneratorBackend.py index 6680851..4e79766 100644 --- a/ScribusGeneratorBackend.py +++ b/ScribusGeneratorBackend.py @@ -6,6 +6,7 @@ # For further information (manual, description, etc.) please visit: # https://github.com/berteh/ScribusGenerator/ # +# v2.6 (2018-04-07): bug fix (dynamic output file directory, linked frames limit, Python 3.6 syntax) # v2.5 (2017-03-27): support for multiple records on same page (Next-Record mechanism), bug fix (multiple SGAttributes) # v2.3 (2016-08-10): various bug fix (logging location in windows, dynamic colors in Scribus 1.5.2 and some more) # v2.0 (2015-12-02): added features (merge, range, clean, save/load) diff --git a/ScribusGeneratorCLI.py b/ScribusGeneratorCLI.py index d5a6b92..6969a77 100755 --- a/ScribusGeneratorCLI.py +++ b/ScribusGeneratorCLI.py @@ -65,7 +65,7 @@ #parser.add_argument('-f', '--fast', '--noPdf', action='store_true', default=False, # commented utile Scribus allows pdf generation from command line # help='no PDF generation, scribus SLA only (much faster)') parser.add_argument('-n', '--outName', default=CONST.EMPTY, - help='name of the generated files, with no extension. Default is a simple incremental index.') + help='name of the generated files, with no extension. Default is a simple incremental index. Using SG variables is allowed to define the name of generated documents.') parser.add_argument('-o', '--outDir', default=None, help='directory were generated files are stored. Default is the directory of the scribus source file. outputDir will be created if it does not exist.') #parser.add_argument('-p', '--pdfOnly', '--noSla', action='store_true', default=False, # for pdf from CLI