Move default tmp dirs, fix BLANK handling
[fanfix.git] / src / be / nikiroo / fanfix / bundles / Config.java
CommitLineData
08fe2e33
NR
1package be.nikiroo.fanfix.bundles;
2
3import be.nikiroo.utils.resources.Meta;
4
5/**
6 * The configuration options.
7 *
8 * @author niki
9 */
10public enum Config {
11 @Meta(what = "language", where = "", format = "language (example: en-GB) or nothing for default system language", info = "Force the language (can be overwritten again with the env variable $LANG)")
12 LANG, //
3727aae2
NR
13 @Meta(what = "reader type", where = "", format = "CLI or LOCAL", info = "Select the reader to use to read stories (CLI = simple output to console, LOCAL = use local system file handler)")
14 READER_TYPE, //
68e370a4 15 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to store temporary files, defaults to directory 'tmp' in the conig directory (usually $HOME/.fanfix)")
08fe2e33
NR
16 CACHE_DIR, //
17 @Meta(what = "delay in hours", where = "", format = "integer | 0: no cache | -1: infinite time cache which is default", info = "The delay after which a cached resource that is thought to change ~often is considered too old and triggers a refresh")
18 CACHE_MAX_TIME_CHANGING, //
19 @Meta(what = "delay in hours", where = "", format = "integer | 0: no cache | -1: infinite time cache which is default", info = "The delay after which a cached resource that is thought to change rarely is considered too old and triggers a refresh")
20 CACHE_MAX_TIME_STABLE, //
21 @Meta(what = "string", where = "", format = "", info = "The user-agent to use to download files")
22 USER_AGENT, //
23 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to get the default story covers")
24 DEFAULT_COVERS_DIR, //
25 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to store the library")
26 LIBRARY_DIR, //
27 @Meta(what = "boolean", where = "", format = "'true' or 'false'", info = "Show debug information on errors")
28 DEBUG_ERR, //
29 @Meta(what = "image format", where = "", format = "PNG, JPG, BMP...", info = "Image format to use for cover images")
30 IMAGE_FORMAT_COVER, //
31 @Meta(what = "image format", where = "", format = "PNG, JPG, BMP...", info = "Image format to use for content images")
32 IMAGE_FORMAT_CONTENT, //
33 @Meta(what = "", where = "", format = "not used", info = "This key is only present to allow access to suffixes")
34 LATEX_LANG, //
35 @Meta(what = "LaTeX output language", where = "LaTeX", format = "", info = "LaTeX full name for English")
36 LATEX_LANG_EN, //
37 @Meta(what = "LaTeX output language", where = "LaTeX", format = "", info = "LaTeX full name for French")
38 LATEX_LANG_FR, //
2206ef66 39 @Meta(what = "other 'by' prefixes before author name", where = "", format = "comma-separated list", info = "used to identify the author")
08fe2e33 40 BYS, //
2206ef66 41 @Meta(what = "Chapter identification languages", where = "", format = "comma-separated list", info = "used to identify a starting chapter in text mode")
08fe2e33
NR
42 CHAPTER, //
43 @Meta(what = "Chapter identification string", where = "", format = "", info = "used to identify a starting chapter in text mode")
44 CHAPTER_EN, //
45 @Meta(what = "Chapter identification string", where = "", format = "", info = "used to identify a starting chapter in text mode")
46 CHAPTER_FR, //
47}