Re: Creating .ipa now that iTunes has depreciated apps.

2018-01-11 Thread Matthias Rebbe via use-livecode
I second that. AirLaunch makes it really easy to create and share the .ipa

Matthias


Matthias Rebbe
Tel +49 5741 31
‌https://matthiasrebbe.eu ‌

> Am 11.01.2018 um 23:22 schrieb Sannyasin Brahmanathaswami via use-livecode 
> >:
> 
> Or (shameless promotion) 
> 
> If you have a select group of registered iOS devices in your profile and you 
> don't want to deal with iTunes connect at all for beta testing 
> 
> pay Jacque the reasonable fee for her AirLaunch  "be done with it" 
> 
> http://www.hyperactivesw.com/airlaunch/index.html 
> 
> 
> Then enjoy your IPA while AirLaunch makes Apple's IPA and the web page you 
> send to your beta testers to open on Safari on their phones… "No Apple Corp 
> in between" [sic] 
> 
> On 1/10/18, 12:08 PM, "use-livecode on behalf of Bob Sneidar via 
> use-livecode"   on behalf of 
> use-livecode@lists.runrev.com > wrote:
> 
>I love a balanced IPA. ;-)
> 
>Bob S
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com 
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode 
> 


Matthias Rebbe
Tel +49 5741 31
‌https://matthiasrebbe.eu ‌

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Creating .ipa now that iTunes has depreciated apps.

2018-01-11 Thread Sannyasin Brahmanathaswami via use-livecode
Or (shameless promotion) 

If you have a select group of registered iOS devices in your profile and you 
don't want to deal with iTunes connect at all for beta testing 

pay Jacque the reasonable fee for her AirLaunch  "be done with it" 

http://www.hyperactivesw.com/airlaunch/index.html

Then enjoy your IPA while AirLaunch makes Apple's IPA and the web page you send 
to your beta testers to open on Safari on their phones… "No Apple Corp in 
between" [sic] 

On 1/10/18, 12:08 PM, "use-livecode on behalf of Bob Sneidar via use-livecode" 
 wrote:

I love a balanced IPA. ;-)

Bob S

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Creating .ipa now that iTunes has depreciated apps.

2018-01-11 Thread Richmond via use-livecode

Give me a good stout any day, as the International

Phonetic Association get on my nerves.


Richmond.


On 11.01.2018 00:08, Bob Sneidar via use-livecode wrote:

I love a balanced IPA. ;-)

Bob S



On Jan 10, 2018, at 09:42 , Ralph DiMola via use-livecode 
 wrote:

Well I finally updated iTunes and lost the ability to create an .ipa. I made
a right click context item in finder to get one click .ipa creation back.

If anyone want this:

1) Open up the Automater
2) Create new
3) Select "Run Shell Script" from left pane
4) Change "Pass input:" to "as arguments"
5) Paste in this script

current_path=$(dirname "$1")
cd "$current_path"

for f in "$@"
do
mkdir Payload
cp -r "$f" Payload/
base=$(basename $f)
base2="${base%.*}"
zip -r "$base2".zip Payload/
mv "$base2".zip "$base2".ipa
rm -R Payload/
done


6) Save and name it "Create ipa"


That's it.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Creating .ipa now that iTunes has depreciated apps.

2018-01-10 Thread Bob Sneidar via use-livecode
I love a balanced IPA. ;-)

Bob S


> On Jan 10, 2018, at 09:42 , Ralph DiMola via use-livecode 
>  wrote:
> 
> Well I finally updated iTunes and lost the ability to create an .ipa. I made
> a right click context item in finder to get one click .ipa creation back.
> 
> If anyone want this:
> 
> 1) Open up the Automater
> 2) Create new
> 3) Select "Run Shell Script" from left pane
> 4) Change "Pass input:" to "as arguments"
> 5) Paste in this script
> 
> current_path=$(dirname "$1")
> cd "$current_path"
> 
> for f in "$@"
> do
> mkdir Payload
> cp -r "$f" Payload/
> base=$(basename $f)
> base2="${base%.*}"
> zip -r "$base2".zip Payload/
> mv "$base2".zip "$base2".ipa
> rm -R Payload/
> done
> 
> 
> 6) Save and name it "Create ipa"
> 
> 
> That's it.
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Creating .ipa now that iTunes has depreciated apps.

2018-01-10 Thread Ralph DiMola via use-livecode
Well I finally updated iTunes and lost the ability to create an .ipa. I made
a right click context item in finder to get one click .ipa creation back.

If anyone want this:

1) Open up the Automater
2) Create new
3) Select "Run Shell Script" from left pane
4) Change "Pass input:" to "as arguments"
5) Paste in this script

current_path=$(dirname "$1")
cd "$current_path"

for f in "$@"
do
mkdir Payload
cp -r "$f" Payload/
base=$(basename $f)
base2="${base%.*}"
zip -r "$base2".zip Payload/
mv "$base2".zip "$base2".ipa
rm -R Payload/
done


6) Save and name it "Create ipa"


That's it.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode