From e70e17347b0c1a08762a6233da3034da6d9a0cb8 Mon Sep 17 00:00:00 2001 From: Leonard Kupper <leonard.kupper@mailbox.tu-dresden.de> Date: Sat, 14 Sep 2019 13:51:16 +0200 Subject: [PATCH] Remove margins from default. --- src/main/resources/config/default.properties | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/resources/config/default.properties b/src/main/resources/config/default.properties index f9ca6469..32f0a086 100644 --- a/src/main/resources/config/default.properties +++ b/src/main/resources/config/default.properties @@ -1,7 +1,7 @@ # JProperties Printer & Format Configuration # # Embosser: Default -# Version 1 Rev. 3 (19-09-11) +# Version 1 Rev. 5 (19-09-13) # # Description: # This is the default configuration file for the braille plot application. @@ -14,9 +14,11 @@ # are not overriding the defaults. printer.mode=normalprinter -#printer.brailletable=../mapping/eurobraille.properties printer.floatingDot.support=false +# Semantic Table: LibLouis String -> 6-Dot printer.semantictable=../mapping/kurzschrift_DE.properties +# Braille (Output Encoding) Table: 6-Dot -> Octet-Stream +printer.brailletable=../mapping/eurobraille.properties # The following values represent the fixed indentation and maximum technical printing area of the embosser. # If the outputs don't fit on the page you might want to tweak this values. (Check the format too.) @@ -47,9 +49,9 @@ printer.raster.dotDiameter=1.5 # Default Format Definition (assume A4 portrait) format.default.page.width=210 format.default.page.height=297 -format.default.margin.top=10 -format.default.margin.left=10 -format.default.margin.bottom=10 -format.default.margin.right=10 +format.default.margin.top=0 +format.default.margin.left=0 +format.default.margin.bottom=0 +format.default.margin.right=0 # This is a template. Do not define concrete formats in this file. Use the specific user config file for this purpose. \ No newline at end of file -- GitLab