blackberry / webworks-gui

GUI Tool for WebWorks 2.0
https://developer.blackberry.com/html5/
Apache License 2.0
3 stars 5 forks source link

As a WebWorks developer, I will receive a message in the GUI that will indicate if a project upgrade should be considered #7

Open kwallis opened 10 years ago

kwallis commented 10 years ago

Tied to internal Jira CLI issue: https://jira.bbqnx.net/browse/BRWSR-15167

Acceptance Criteria

jsoref commented 10 years ago

The backend simply needs to do: cordova platform check

The output will be of the form: blackberry10 @ 3.2.0 could be updated to: 3.4.0

the first "word" (\S+) is the platform name. Everything else is more or less irrelevant for the purposes of offering an update button.

To update a platform: cordova platform $PLATFORM update

jsoref commented 10 years ago

I'm not going to implement the Confirmation dialog. It's unlikely that a user would accidentally hit this, and it's unlikely that updating would actually be harmful.

Users probably should be encouraged to use version control if they're really concerned...