KyPass 2.4 was rejected by Apple! (part 3)

Rejected again.
iPad logon screen is not the same than iPhone… I need to add some lines.

In the webViewDidFinishLoad:(UIWebView *)webView function in the file GTMOAuth2ViewControllerTouch.m, The code modification are thus:

- (void)webViewDidFinishLoad:(UIWebView *)webView {

[self notifyWithName:kGTMOAuth2WebViewStoppedLoading webView:webView kind:kGTMOAuth2WebViewFinished];

// The line of code...
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('link-sign-up').style.display = 'none';"];
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByClassName('google-footer-bar')[0].style.display = 'none';"];
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByClassName('signup-button')[0].style.display = 'none';"];
  
[...]

CrocoDS for Open Emu

openemu - amstradOpen Emu is an open source project to bring game emulation to OS X as a first class citizen, leveraging modern OS X technologies such as Cocoa, Core Animation and Quartz, and 3rd party libraries like Sparkle for auto-updating. Open Emu is based on a modular architecture, allowing for game-engine plugins, this means Open Emu can support a host of different emulation engines and back-ends while retaining a familiar OS X native front-end. (text from their website: https://github.com/OpenEmu/OpenEmu).

Soon, CrocoDS, the greatest Amstrad emulator (yes, I know…), will be available for Open Emu.

It already run on my desktop but I have still some adjustments to do…

Arnold es el más grande, es el mejor! (as say our Spanish friends)

 

 

KyPass 2.4 was rejected by Apple! (part 2)

Just 1 line of code in the webViewDidFinishLoad:(UIWebView *)webView function in the file GTMOAuth2ViewControllerTouch.m

- (void)webViewDidFinishLoad:(UIWebView *)webView {

[self notifyWithName:kGTMOAuth2WebViewStoppedLoading webView:webView kind:kGTMOAuth2WebViewFinished];

// The line of code...
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('link-sign-up').style.display = 'none';"];

[...]

Hope it will be enough for Apple.