QuackieMackie
Member
I haven't seen this yet, but I'd love to see an option for developers to be able to write change logs.
As the only current way I can see users can see whats changed is by checking the site it's downloaded from.
So when for example I update addon
It would bring up a value from the json.
An example could be:
As the only current way I can see users can see whats changed is by checking the site it's downloaded from.
So when for example I update addon
Demo/Test
from version 1.0.2 -> 1.0.3 it would appear when I hit the upgrade button in the admin control panel.It would bring up a value from the json.
An example could be:
JSON:
{
"legacy_addon_id": "",
"title": "Demo - Test",
"description": "This is a test addon.",
"version_id": 1000030,
"version_string": "1.0.3",
"dev": "QuackieMackie",
"dev_url": "",
"faq_url": "",
"support_url": "",
"extra_urls": [],
"require": [],
"icon": "fa-user",
"changelog": {
"1000030": [
"Fixed bug where databse table wasn't being created.",
"Added new options:<ul><li>By category</li><li>By date</li></ul>",
"Changed icon from <b>fa-cog</b> -> <b>fa-user</b>"
],
"1000020": [
"Minor tweaks in wording."
],
"1000010": [
"Initial release of the test addon."
]
}
}
Upvote
1