1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-08 20:41:59 +00:00

frontend: batch: for @ use + instead of * on Windows as * not allowed

in filenames
GUI: sequence: similarly for * use + instead of * on Windows
This commit is contained in:
gitlost
2022-07-04 21:55:06 +01:00
parent d6dddfa2ce
commit 8525597b81
6 changed files with 40 additions and 24 deletions

View File

@@ -502,10 +502,10 @@ format of the automatically generated sequence where characters have the
meanings as given below:
Character Effect
--------------------- --------------------------
# Insert leading spaces
--------------------- -----------------------------------------------------
$ Insert leading zeroes
* Insert leading asterisks
# Insert leading spaces
* Insert leading asterisks (or plus signs on Windows)
Any other character Interpreted literally
: Table : Sequence Format Characters:
@@ -1319,10 +1319,10 @@ By default Zint will output numbered filenames starting with 00001.png,
below:
Input Character Interpretation
----------------- --------------------------
----------------- ----------------------------------------
~ Insert a number or 0
# Insert a number or space
@ Insert a number or *
@ Insert a number or * (or + on Windows)
Any other Insert literally
: Table : Batch Filename Formatting:
@@ -1330,9 +1330,10 @@ below:
The following table shows some examples to clarify this method:
Input Filenames Generated
----------------- --------------------------------------------
----------------- -----------------------------------------------
-o file~~~.svg file001.svg, file002.svg, file003.svg
-o @@@@bar.png ***1.png, ***2.png, ***3.png
-o @@@@bar.png ***1.png, ***2.png, ***3.png (except Windows)
-o @@@@bar.png +++1.png, +++2.png, +++3.png (on Windows)
-o my~~~bar.eps my001.bar.eps, my002.bar.eps, my003bar.eps
-o t@es~t~.png t*es0t1.png, t*es0t2.png, t*es0t3.png