Tag: Kypass

  • Webdav support in KyPass v2.4

    Now that KyPass have full webdav support, you could synchronize with box.com and mydrive.ch. For box.com, You have to enter https://<your email>:<your password>@dav.box.com/dav (be sure to replace the @ by %40 in your email) For mydrive.ch, You have to enter  https://<your login>:<your password>@webdav.mydrive.ch You have another webdav configuration for known cloud provider? Don’t hesitate to add it in the comments.

  • KyPass v2.4 is finally approved!

    What’s new ? View attachements (Excel, Keynote, Numbers, Page, Powerpoint, Word, Rich Text Format, PDF and Images) Display custom icon (in entry and group) Fix a bug that corrupt kdbx database (if you have a corrupted database with older version of KyPass, just reopen it, modify an entry and leave the database) Add group/entry bug…

  • KyPass 2.4 was rejected by Apple! (part 4)

    Last week, I have installed Google Play Books on my iPhone. This application doesn’t have the signup link! I don’t think that Google remove link as I do. Thus, I have installed Charles Proxy to spy the https connection between my iPhone and my Mac. And bing! Google Play Books doesn’t use the official link…

  • 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’;”];   …

  • 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.

  • 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…