Enhanced Main Window Config

Anybody know what this means and how to fix it

Options

  1. copy and paste this code into notepad++ or another notepad that displays the numbers of lines, then fix the issue
  2. Restore the code to default values either by pressing “Restore Defaults” on this config tab or reinstalling the add-on
1 Like

Sorry to bother you but do you know what the actual issue is or what it means because I don’t code, I just copied it from someone :sweat_smile:

You can copy the code and post it here so we can help. Make sure to use the Preformatted text option in the toolbar of the forums’ post editor when pasting the code.


{
"book symbol": "{",
"cap value": null,
"color empty": "#FFFFFF",
"color empty descendant": "#FFFFFF",
"color zero": false,
"columns": [
{
"absolute": true,
"color": "#32CD32",
"description": "Number of reviews you will see today (new, review and learning)",
"header": "<p style='color: #FFFFFF'>Due</p>",
"name": "today",
"overlay": null,
"percent": false,
"present": true,
"subdeck": true
},
{
"absolute": true,
"color": "#87CEFA",
"description": "Unseen cards you will see today (what Anki calls New cards). Neither buried nor suspended.",
"header": "<p style='color: #FFFFFF'>New</p>",
"name": "new today",
"overlay": null,
"percent": false,
"present": true,
"subdeck": true
},
{
"description": "Percent bar to do today",
"header": "<p style='color: #FFFFFF'>Progress</p>",
"name": "bar",
"names": [
"reviewed today",
"learning now",
"new today",
"review today"
],
"overlay": null,
"present": true,
"subdeck": true
},
{
"absolute": true,
"color": "#8FBC8F",
"description": "Reviewed cards which are due tomorrow",
"header": "<p style='color: #FFFFFF'>Tomorrow</p>",
"name": "due tomorrow",
"overlay": null,
"percent": false,
"present": true,
"subdeck": true
},
{
"absolute": false,
"color": "#808080",
"description": "Number of reviewed cards with interval at least 3 weeks",
"header": "<p style='color:#808080'>Mature</p>",
"name": "mature",
"overlay": null,
"percent": true,
"present": true,
"subdeck": true
},
{
"absolute": true,
"color": "#808080",
"description": "Number of cards in the deck",
"header": "<p style='color:#808080'>Total</p>",
"name": "cards",
"overlay": null,
"percent": false,
"present": true,
"subdeck": true
},
{
"absolute": true,
"color": "red",
"description": "Cards you'll see today which are not new",
"header": null,
"name": "cards seen today",
"overlay": null,
"percent": false,
"present": false,
"subdeck": true
},
{
"absolute": true,
"color": "#778899",
"description": "Cards in learning (either new cards you see again, or cards which you have forgotten recently, assuming those cards didn't graduate)",
"header": null,
"name": "learning card",
"overlay": null,
"percent": false,
"present": false,
"subdeck": true
},
{
"absolute": true,
"color": "white",
"description": "Cards in learning which are due now (and in parentheses, the number of reviews which are due later)",
"header": null,
"name": "learning all",
"overlay": null,
"percent": false,
"present": false,
"subdeck": true
},

Here is the code ^Preformatted text

The code was missing ]} at the end. Try this updated code:

{
    "book symbol": "{",
    "cap value": null,
    "color empty": "#FFFFFF",
    "color empty descendant": "#FFFFFF",
    "color zero": false,
    "columns": [
        {
            "absolute": true,
            "color": "#32CD32",
            "description": "Number of reviews you will see today (new, review and learning)",
            "header": "<p style='color: #FFFFFF'>Due</p>",
            "name": "today",
            "overlay": null,
            "percent": false,
            "present": true,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "#87CEFA",
            "description": "Unseen cards you will see today (what Anki calls New cards). Neither buried nor suspended.",
            "header": "<p style='color: #FFFFFF'>New</p>",
            "name": "new today",
            "overlay": null,
            "percent": false,
            "present": true,
            "subdeck": true
        },
        {
            "description": "Percent bar to do today",
            "header": "<p style='color: #FFFFFF'>Progress</p>",
            "name": "bar",
            "names": [
                "reviewed today",
                "learning now",
                "new today",
                "review today"
            ],
            "overlay": null,
            "present": true,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "#8FBC8F",
            "description": "Reviewed cards which are due tomorrow",
            "header": "<p style='color: #FFFFFF'>Tomorrow</p>",
            "name": "due tomorrow",
            "overlay": null,
            "percent": false,
            "present": true,
            "subdeck": true
        },
        {
            "absolute": false,
            "color": "#808080",
            "description": "Number of reviewed cards with interval at least 3 weeks",
            "header": "<p style='color:#808080'>Mature</p>",
            "name": "mature",
            "overlay": null,
            "percent": true,
            "present": true,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "#808080",
            "description": "Number of cards in the deck",
            "header": "<p style='color:#808080'>Total</p>",
            "name": "cards",
            "overlay": null,
            "percent": false,
            "present": true,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "red",
            "description": "Cards you'll see today which are not new",
            "header": null,
            "name": "cards seen today",
            "overlay": null,
            "percent": false,
            "present": false,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "#778899",
            "description": "Cards in learning (either new cards you see again, or cards which you have forgotten recently, assuming those cards didn't graduate)",
            "header": null,
            "name": "learning card",
            "overlay": null,
            "percent": false,
            "present": false,
            "subdeck": true
        },
        {
            "absolute": true,
            "color": "white",
            "description": "Cards in learning which are due now (and in parentheses, the number of reviews which are due later)",
            "header": null,
            "name": "learning all",
            "overlay": null,
            "percent": false,
            "present": false,
            "subdeck": true
        }
    ]
}
3 Likes

Thank you so much it’s working now :blush: