AndyB
Well-known member
A few of my new XF2 addons will need to be upgraded should anyone have the XF1 version already installed. My question is in regards to the addons.json file and the "legacy_addon_id" part:
This is how I have it now:
I assume I should change it to this:
Is this correct?
This is how I have it now:
Code:
{
"legacy_addon_id": "",
"title": "Calendar",
"description": "",
"version_id": 10,
"version_string": "1.0",
"dev": "",
"dev_url": "",
"faq_url": "",
"support_url": "",
"extra_urls": [],
"require": [],
"icon": ""
}
I assume I should change it to this:
Code:
{
"legacy_addon_id": "Andy/Calendar",
"title": "Calendar",
"description": "",
"version_id": 10,
"version_string": "1.0",
"dev": "",
"dev_url": "",
"faq_url": "",
"support_url": "",
"extra_urls": [],
"require": [],
"icon": ""
}
Is this correct?