...
How to add screenshots
How to add versioning
Version Release notes is completely optional. Not having these preferences will keep uPortal behaving the same as pre-marketplace.
...
Code Block |
---|
<portlet-preference> <name>Version</name> <readOnly>true</readOnly> <value>1.0.0</value> </portlet-preference> <portlet-preference> <name>Release_Date</name> <readOnly>true</readOnly> <value>Feb 5, 2014</value> </portlet-preference> <portlet-preference> <name>Release_Notes</name> <readOnly>true</readOnly> <value>Responsive Design!</value> <value>Doesn't Break</value> <value>Adds the ability to have Screenshots</value> <value>Adds the ability for version notes</value> <value>Search works</value> <value>See your favorite apps</value> </portlet-preference> |
...
Release Date is optional. If not added, nothing will show. If for some reason, the value is blank, but the preference is still there, this will not show. Release date is a Joda Time DateTime field. The value of it should be "dd-MM-yyyy HH:mm:ss".
Release Notes is optional and also can be of any length. After 3 notes, the front end will not show until the more button is clicked on the entry page. When clicked, all notes will be shown and the link will change text to 'Less'. When clicked, this will once again hide the extra notes, and the text will once again display 'More'. If any value is blank, a blank line with a dash will appear.
...