Category: MyDev
-
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
Open 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…
-
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.
-
CrocoDS 2.1 now available on GitHub
CrocoDS is a port of my Nintedo DS emulator for iPad/iPhone/iPod. It’s heavily based on WinCPC by Ludovic Deplanque. A lot of work has been done to make it usable on Nintendo DS 6 years ago. When I begin to develop on iPhone, it was the second application I do (The first is Doobs). It…
-
KyPass 2.4 was rejected by Apple!
The login web page for Google Drive services includes a “Create a Google Account” link. Apple doesn’t accept that anymore… I’m using the official Google Drive API and it’s not easy to remove this link. I keep searching…
-
KyPass Companion v0.8
Big change in KyPass Companion: The tree view was removed! At the place, a view will all your favorite groups (actually, the groups at the root). A future version will allow you to personalize this list. The group list is still available from the K button. This new user interface could add some new bugs.…