Auto increment version number in iOS standalone settings
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Auto increment version number in iOS standalone settings
I'm at that stage where I'm constantly creating new builds to test on my devices. Is there a way to create a Livecode Script which would automatically change the number of the version in the standalone settings panel for iOS?
Greg (pink) Miller
MadPink, LLC
I'm Mad, Pink and Dangerous to Know
MadPink, LLC
I'm Mad, Pink and Dangerous to Know
Re: Auto increment version number in iOS standalone settings
Hi Greg,
Its great to see you're still with us after the conference
The following should give you a means of automatically increasing version number of your iOS stack. This script should go on your stack script and may need adjusted to whatever version numbering system you are using
Kind Regards,
Neil Roger
--
LiveCode Support Team ~ http://www.runrev.com
--
Its great to see you're still with us after the conference

The following should give you a means of automatically increasing version number of your iOS stack. This script should go on your stack script and may need adjusted to whatever version numbering system you are using

Code: Select all
on mobileStandaloneSaved
put the cRevStandaloneSettings["ios,bundle version"] of this stack into tVersion
set the itemdel to "."
add 1 to item 3 of tVersion
set the cRevStandaloneSettings["ios,bundle version"] of this stack to tVersion
end mobileStandaloneSaved
Neil Roger
--
LiveCode Support Team ~ http://www.runrev.com
--
Re: Auto increment version number in iOS standalone settings
perfect thanks!
Greg (pink) Miller
MadPink, LLC
I'm Mad, Pink and Dangerous to Know
MadPink, LLC
I'm Mad, Pink and Dangerous to Know