… | |
… | |
25 | # The verbosity of the libary |
25 | # The verbosity of the libary |
26 | # This determines how much output the library generates, especially when it |
26 | # This determines how much output the library generates, especially when it |
27 | # is parsing Psion files. |
27 | # is parsing Psion files. |
28 | # There are four levels of verbosity; higher numbers generate more output: |
28 | # There are four levels of verbosity; higher numbers generate more output: |
29 | # 1: Only display fatal errors |
29 | # 1: Only display fatal errors |
|
|
30 | # 2: Display errors |
30 | # 2: Display warnings and errors |
31 | # 3: Display warnings |
31 | # 3: Display progress information |
32 | # 4: Display progress information |
32 | # 4: Display debug information |
33 | # 5: Display debug information |
33 | # Programs can use their own error/information reporting routines; by default, |
34 | # Programs can use their own error/information reporting routines; by default, |
34 | # everything is logged to stderr. |
35 | # everything is logged to stderr. |
35 | #Verbosity = 2 |
36 | #Verbosity = 3 |
36 | |
37 | |
37 | #################### |
38 | #################### |
38 | # Display settings # |
39 | # Display settings # |
39 | #################### |
40 | #################### |
40 | |
41 | |
… | |
… | |
55 | # If you have a greyscale display, these settings are ignored. |
56 | # If you have a greyscale display, these settings are ignored. |
56 | #RedBits = 0 |
57 | #RedBits = 0 |
57 | #GreenBits = 0 |
58 | #GreenBits = 0 |
58 | #BlueBits = 0 |
59 | #BlueBits = 0 |
59 | |
60 | |
|
|
61 | ############################ |
|
|
62 | # Character table settings # |
|
|
63 | ############################ |
|
|
64 | |
|
|
65 | # Settings to determine the used character set |
|
|
66 | |
|
|
67 | # The character set used in EPOC files (individual characters can be |
|
|
68 | # changed below) |
|
|
69 | # 0: IBM Codepage 1252 (Western Europe Psions) |
|
|
70 | # If you have another characterset, please let me know, and I will add it here. |
|
|
71 | #CharacterSet = 0 |
|
|
72 | |
|
|
73 | # if the character set specified above does not completely match, you can |
|
|
74 | # change individual characters here. The number in the variable name is the |
|
|
75 | # number of the EPOC format character; the number in the value is the |
|
|
76 | # corresponding Unicode codepoint. |
|
|
77 | #Char130 = 33304 |
|
|
78 | |
|
|
79 | # The unknown character placeholder (EPOC format) |
|
|
80 | # When translating from Unicode back to EPOC format, the Unicode character |
|
|
81 | # may not be presentable. This is the Psion codepage character number to |
|
|
82 | # use in this case. The default below is a question mark. |
|
|
83 | # Allowed values: 0 to 255 |
|
|
84 | #UnknownEPOCChar = 63 |
|
|
85 | |
|
|
86 | # The unknown character placeholder (Unicode format) |
|
|
87 | # When translating from EPOC format to Unicode, the EPOC character |
|
|
88 | # may not be known. This is the Unicode character number to |
|
|
89 | # use in this case. The default below is a question mark. |
|
|
90 | # Allowed values: 0 to 65535 |
|
|
91 | #UnknownUnicodeChar = 63 |
|
|
92 | |
|
|
93 | |
60 | #################################### |
94 | #################################### |
61 | # DEFAULTS FOR THE PSION 5 AND 5MX # |
95 | # DEFAULTS FOR THE PSION 5 AND 5MX # |
62 | #################################### |
96 | #################################### |
63 | |
97 | |
64 | Color = 0 |
98 | Color = 0 |
65 | ColorDepth = 2 |
99 | ColorDepth = 2 |
66 | #RedBits = 0 |
100 | #RedBits = 0 |
67 | #GreenBits = 0 |
101 | #GreenBits = 0 |
68 | #BlueBits = 0 |
102 | #BlueBits = 0 |
|
|
103 | CharacterSet = 1 |
|
|
104 | UnknownUnicodeChar = 63 |
|
|
105 | UnknownEPOCChar = 63 |
69 | |
106 | |
|
|
107 | ########################### |
|
|
108 | # ADD YOUR SETTINGS BELOW # |
|
|
109 | ########################### |