-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changed behaviour of adding token property. Added JSON export #4972
Changed behaviour of adding token property. Added JSON export #4972
Conversation
When there is a table row selected, new property is inserted at that row instead of being appended.
@bubblobill maybe I am a bit daft, but whats the reasoning behind being able to export as JSON file if it can not be imported at a later time? |
I could use it in generating documentation for my add-on by exporting to a file and having my documentation include it and parse it to generate a table. I'll probably be parsing the content.xml of the unzipped .mtprops file instead though since I version control the properties of my add-on that way. |
JSON is considerably more human readable than xml. I've seen numerous requests where people want to see what's inside. For folk that want to get to grips with what's inside the box it's a friendlier place than exporting/unzipping/parsing xml/ then writing your own and reversing the process. |
yeah but all of these requests are so they can edit it :) |
It's a very non-obvious feature. You have to export the campaign and choose ".json" or ".txt" in the file filter dropdown to get it.
|
Identify the Bug or Feature request
resolves #4768
Description of the Change
When there is a table row selected and adding a new property, the new property is inserted at the selected row
Exporting campaign properties now allows exporting as JSON
Added message on JSON export advising they cannot be imported.
Possible Drawbacks
none
Documentation Notes
Changed addTokenProperty behaviour to insert at selected row (where appropriate) instead of appending to the list.
Exporting campaign properties now allows exporting as JSON
Added message on JSON export advising they cannot be imported.
Release Notes
Adding a token property in campaign properties now adds the property at the selected row.
Exporting campaign properties now allows exporting as JSON.
This change is