Changing app screenshots after submission

2014-09-18 Thread Rick Mann
I learned yesterday that you can't change the screenshots in the App Store after your app is approved. Has this always been the case? It seems ludicrous that I have to submit a new binary to change the screenshots (but that's exactly what iTunesConnect support told me). -- Rick Mann rm...@lat

Re: Heavy flickering on Retina Macs with Yosemite & NSVisualEffectView & overlay windows

2014-09-18 Thread Markus Spoettl
On 17/09/14 17:32, Kyle Sluder wrote: Your video won’t play on my phone. But honestly, if you’re not doing anything particularly advanced (as in the OpenGL or CGDirectDisplay level), then the symptoms you describe should not appear and you ought to file a bug. You might consider simply attaching

Re: Changing app screenshots after submission

2014-09-18 Thread Diederik Meijer | Ten Horses
Has been like this for about 15 months, before that you could change at will Op 18 Sep 2014, om 19:25 heeft Rick Mann het volgende geschreven: > I learned yesterday that you can't change the screenshots in the App Store > after your app is approved. Has this always been the case? It seems l

Updating iPad to 8.0 final

2014-09-18 Thread Rick Mann
I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), but iTunes refuses to update it, saying "The iPad “XXX” could not be updated because the firmware file is not compatible." Any ideas how I proceed? TIA

Re: Heavy flickering on Retina Macs with Yosemite & NSVisualEffectView & overlay windows

2014-09-18 Thread Kyle Sluder
When an OS gets towards release, I notice a sharp increase in the likelihood of my bug report getting intercepted and returned by bug screeners. This is a function of a management, not engineering, and I gather their job is to swat bugs away from the engineers so they can focus on getting the re

Re: Updating iPad to 8.0 final

2014-09-18 Thread Jim Adams
I downloaded that one for use with the iPad WITHOUT cellular. Check and make sure you got the right one. On 9/18/14, 1:36 PM, "Rick Mann" wrote: >I have an iPad, 3rd gen, Wi-Fi + Cellular (AT&T). It's model A1430. I >downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), >but i

Re: Changing app screenshots after submission

2014-09-18 Thread Todd Heberlein
> I learned yesterday that you can't change the screenshots in the App Store > after your app is approved. Has this always been the case? It seems ludicrous > that I have to submit a new binary to change the screenshots (but that's > exactly what iTunesConnect support told me). I don’t know why

Re: Changing app screenshots after submission

2014-09-18 Thread Jens Alfke
> On Sep 18, 2014, at 10:25 AM, Rick Mann wrote: > > I learned yesterday that you can't change the screenshots in the App Store > after your app is approved. Has this always been the case? It seems ludicrous > that I have to submit a new binary to change the screenshots (but that's > exactly

Re: Changing app screenshots after submission

2014-09-18 Thread Rick Mann
On Sep 18, 2014, at 10:57 , Jens Alfke wrote: > Apple added this restriction because scammy developers were submitting > accurate screenshots of their (crappy) apps during review, then after the app > went on sale they'd swap them out for screenshots taken from other (much > better) apps. So

Re: NSOutlineView not lazy when expanding items :(

2014-09-18 Thread Corbin Dunn
> On Sep 16, 2014, at 4:48 PM, Jerry Krinock wrote: > > > On 2014 Sep 16, at 15:23, Kyle Sluder wrote: > >> I'd try wrapping things in an NSAnimationContext with >> allowsImplicitAnimation=NO. Though I'm not sure where you would have the >> opportunity to wrap the built-in expand behavior.

Re: Heavy flickering on Retina Macs with Yosemite & NSVisualEffectView & overlay windows

2014-09-18 Thread Greg Parker
On Sep 18, 2014, at 10:29 AM, Markus Spoettl wrote: > On 17/09/14 17:32, Kyle Sluder wrote: >> Your video won’t play on my phone. But honestly, if you’re not doing anything >> particularly advanced (as in the OpenGL or CGDirectDisplay level), then the >> symptoms you describe should not appear and

Re: Still need help with Services. Is there sample code?

2014-09-18 Thread Daryle Walker
On Sep 16, 2014, at 10:17 AM, Keary Suska wrote: > On Sep 16, 2014, at 6:22 AM, Daryle Walker wrote: > >> Still can’t get my Service to trigger. >> >>> daryle$ /Applications/TextEdit.app/Contents/MacOS/TextEdit -NSDebugServices >>> io.github.me.MyApp >>> 2014-09-16 08:00:58.493 TextEdit[546:5

Re: Still need help with Services. Is there sample code?

2014-09-18 Thread Keary Suska
On Sep 18, 2014, at 3:22 PM, Daryle Walker wrote: > I removed the old style type (“NSStringPboardType”) and it still worked. When > I changed the “public.plain-text” to “public.url” and tested with the entry > field on Firefox, Safari’s “Open URL” service showed up, but my version > didn’t! Sa

Raw Swift

2014-09-18 Thread Gerriet M. Denkmann
This works fine in Xcode 6.0.1: import Cocoa enum ButtonTitle : String { case TitelStop = "Stop" case TitelDone = "Done" } let buttonMode = ButtonTitle.TitelDone let mode = ButtonTitle.toRaw( buttonMode )() But Xcode 6.1 beta 2 says: "error: 'ButtonTitle.Type' does not have

Re: Raw Swift

2014-09-18 Thread Roland King
> On 19 Sep 2014, at 8:45 am, Gerriet M. Denkmann wrote: > > This works fine in Xcode 6.0.1: > > import Cocoa > > enum ButtonTitle : String > { > case TitelStop = "Stop" > case TitelDone = "Done" > } > > let buttonMode = ButtonTitle.TitelDone > > let mode = ButtonTitle.toRaw( b

Re: Raw Swift

2014-09-18 Thread Gerriet M. Denkmann
On 19 Sep 2014, at 07:49, Roland King wrote: > >> On 19 Sep 2014, at 8:45 am, Gerriet M. Denkmann wrote: >> >> This works fine in Xcode 6.0.1: >> >> import Cocoa >> >> enum ButtonTitle : String >> { >> case TitelStop = "Stop" >> case TitelDone = "Done" >> } >> >> let buttonMode

Re: Raw Swift

2014-09-18 Thread Roland King
no you want the real release notes, the notes for Beta 1.2 release notes which should be somewhere near where you downloaded the beta from, not the stuff up in help which is and always has been just generic release notes. I found them here http://adcdownload.apple.com//Developer_Tools/xcode_6.1

Re: Raw Swift

2014-09-18 Thread Greg Parker
> On Sep 18, 2014, at 5:45 PM, Gerriet M. Denkmann wrote: > > This works fine in Xcode 6.0.1: > > import Cocoa > > enum ButtonTitle : String > { > case TitelStop = "Stop" > case TitelDone = "Done" > } > > let buttonMode = ButtonTitle.TitelDone > > let mode = ButtonTitle.toRaw(