Fix: do not sysout/syserr in TUI mode + some fixes
[nikiroo-utils.git] / src / be / nikiroo / fanfix / bundles / Config.java
index 63e6465a3bdb6f7da95427098982ba6a100f0b29..bd27edffc31589abb8346dfa0d59b8428c2da587 100644 (file)
@@ -29,6 +29,8 @@ public enum Config {
        LIBRARY_DIR, //
        @Meta(description = "boolean", format = Format.BOOLEAN, info = "Show debug information on errors")
        DEBUG_ERR, //
+       @Meta(description = "boolean", format = Format.BOOLEAN, info = "Show debug trace information")
+       DEBUG_TRACE, //
        @Meta(description = "image format", format = Format.COMBO_LIST, list = {
                        "PNG", "JPG", "BMP" }, info = "Image format to use for cover images")
        IMAGE_FORMAT_COVER, //
@@ -54,5 +56,13 @@ public enum Config {
        @Meta(description = "Login information (password) for YiffStar to have access to all the stories (should not be necessary anymore)", format = Format.PASSWORD)
        LOGIN_YIFFSTAR_PASS, //
        @Meta(description = "If the last update check was done at least that many days, check for updates at startup (-1 for 'no checks' -- default is 1 day)", format = Format.INT)
-       UPDATE_INTERVAL,
+       UPDATE_INTERVAL, //
+       @Meta(description = "An API key required to create a token from FimFiction", format = Format.STRING)
+       LOGIN_FIMFICTION_APIKEY_CLIENT_ID, //
+       @Meta(description = "An API key required to create a token from FimFiction", format = Format.PASSWORD)
+       LOGIN_FIMFICTION_APIKEY_CLIENT_SECRET, //
+       @Meta(description = "Do not use the new API, even if we have a token, and force HTML scraping (default is false, use API if token or ID present)", format = Format.BOOLEAN)
+       LOGIN_FIMFICTION_APIKEY_FORCE_HTML, //
+       @Meta(description = "A token is required to use the beta APIv2 from FimFiction (see APIKEY_CLIENT_*)", format = Format.PASSWORD)
+       LOGIN_FIMFICTION_APIKEY_TOKEN, //
 }