Revert UTF8 change
This commit is contained in:
parent
02ee9bcc0b
commit
128f9361ff
4
Changes
4
Changes
|
@ -1,9 +1,5 @@
|
||||||
2.7 (to come)
|
2.7 (to come)
|
||||||
|
|
||||||
Breaking changes:
|
|
||||||
|
|
||||||
o -utf8 is now the default. Set -stripped to get old behaviour.
|
|
||||||
|
|
||||||
New features:
|
New features:
|
||||||
|
|
||||||
o Split files to max size with -split-max
|
o Split files to max size with -split-max
|
||||||
|
|
|
@ -599,7 +599,7 @@ let args =
|
||||||
process_struct_trees = true;
|
process_struct_trees = true;
|
||||||
remove_duplicate_fonts = false;
|
remove_duplicate_fonts = false;
|
||||||
remove_duplicate_streams = false;
|
remove_duplicate_streams = false;
|
||||||
encoding = Cpdfmetadata.UTF8;
|
encoding = Cpdfmetadata.Stripped;
|
||||||
scale = 1.;
|
scale = 1.;
|
||||||
copyfontpage = 1;
|
copyfontpage = 1;
|
||||||
copyfontname = None;
|
copyfontname = None;
|
||||||
|
@ -739,7 +739,7 @@ let reset_arguments () =
|
||||||
args.process_struct_trees <- true;
|
args.process_struct_trees <- true;
|
||||||
args.remove_duplicate_fonts <- false;
|
args.remove_duplicate_fonts <- false;
|
||||||
args.remove_duplicate_streams <- false;
|
args.remove_duplicate_streams <- false;
|
||||||
args.encoding <- Cpdfmetadata.UTF8;
|
args.encoding <- Cpdfmetadata.Stripped;
|
||||||
args.scale <- 1.;
|
args.scale <- 1.;
|
||||||
args.copyfontpage <- 1;
|
args.copyfontpage <- 1;
|
||||||
args.copyfontname <- None;
|
args.copyfontname <- None;
|
||||||
|
|
Loading…
Reference in New Issue