Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
OK, I've started adding version numbers to this script now to avoid confusion. :~! Latest 'update' is v1.3 (fixed: the 'choose folder' option now works correctly): I don't think this is the last version...there's at least one outstanding problem one person's having that I'm waiting to here

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
On Feb 10, 2016, at 07:39, diede...@tenhorses.com wrote: You can do that in the terminal, I found this terminal command online: find /Applications -name Sparkle.framework | awk -F'/' '{print $3}' | awk -F'.' '{print $1}' Here’s an AppleScript that will output the insecure http apps from

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
On Feb 10, 2016, at 07:39, diede...@tenhorses.com wrote: You can do that in the terminal, I found this terminal command online: find /Applications -name Sparkle.framework | awk -F'/' '{print $3}' | awk -F'.' '{print $1}' Sorry, some posting problems. Here’s the latest version of the

Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Konidaris Christos
I cannot get contextual menus to work inside the cells of my view-based NSOutlineView. In my cell view I have one standard NSImageView and one NSTextFieldCell. I set the menu for the outline view in IB. When I (right) click on a cell outside the two views the contextual menu appears. When I

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
I've removed some duplications in the code, but functionally identical to the last version. Again, I'll point out that this is only going to show you apps in /Applications, and it's not going to find those that hide the appcast url in the binary (DriveDx, for one, but there are others). Bear

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
On 10 Feb 2016, at 22:55, Peter Teeson wrote: find /Applications -path '*Autoupdate.app/Contents/Info.plist' -exec echo {} \; -exec grep -A1 CFBundleShortVersionString '{}' \; | grep -v CFBundleShortVersionString That produces a list of apps that are on earlier

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Peter Teeson
This worked for me: find /Applications -path '*Autoupdate.app/Contents/Info.plist' -exec echo {} \; -exec grep -A1 CFBundleShortVersionString '{}' \; | grep -v CFBundleShortVersionString and I got it from this link:

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Jens Alfke
> On Feb 10, 2016, at 12:17 PM, brodhage wrote: > > Why? Because any application accessing web content via the WebView framework > (Sparkle, Safari and many other apps) might allow to "launch special / > default behaviour" (for example "file://" or "ftp://; or Safari which

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread brodhage
May be I am wrong (or it is off-topic) - but is this (just) a Sparkle problem? I have read "Vulnerable Security - There's a lot of vulnerable OS X applications out there" (https://vulnsec.com/2016/osx-apps-vulnerabilities/) - and if I got the idea then browsing the web is insecure. Why?

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Ken Thomases
Any connection you make from a table cell view to something outside of the table column is suspect. It probably doesn't work. The views "inside" of a table column are actually in a sub-NIB. There's a NIB archived to a data blob that's embedded in the NIB holding the outline view. That NIB

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Konidaris Christos
Thanks for the insight Ken. I’ll try setting the menu manually tomorrow (it’s half past midnight here) and let you know. But shouldn’t the -menuForEvent:(NSEvent *)event for my NSTableCellView subclass work instead ? - Christos > On 11 Feb 2016, at 00:18, Ken Thomases

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Lee Ann Rucker
Did you set the menu's delegate? It doesn't know about the outlineView's delegate. > On Feb 10, 2016, at 9:10 AM, Konidaris Christos wrote: > > I cannot get contextual menus to work inside the cells of my view-based > NSOutlineView. > > In my cell view I have one standard

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Konidaris Christos
Yes I did set it, to the outlineView’s delegate object. > On 10 Feb 2016, at 23:32, Lee Ann Rucker wrote: > > Did you set the menu's delegate? It doesn't know about the outlineView's > delegate. > >> On Feb 10, 2016, at 9:10 AM, Konidaris Christos wrote:

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Ken Thomases
On Feb 10, 2016, at 4:26 PM, Konidaris Christos wrote: > > Thanks for the insight Ken. I’ll try setting the menu manually tomorrow (it’s > half past midnight here) and let you know. But shouldn’t the > -menuForEvent:(NSEvent *)event for my NSTableCellView subclass work instead

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Jean-Daniel Dupas
> Le 10 févr. 2016 à 05:48, Trygve Inda a écrit : > >> If your hosting provider still charges an arm and a leg for SSL, switch. > > I need SSL for multiple subdomains. My host (Pair Networks) charges $449/yr > for such a certificate. That seems really expensive. What

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Gary L. Wade
I just checked to see what happens when visiting your web site at https://xenonium.com and found on the current latest release of iOS and OS X under Safari I get a "Cannot Verify Server Identity" alert, so maybe you set it up wrong, support for that authority is forthcoming, or you get what you

Responsiveness issue in WKWebView

2016-02-10 Thread Rick Mann
We have a very complex Javascript/WebGL app. I've recently had to embed that in an iOS app. For that I use WKWebView, and for the most part, it works very well, particularly in iOS 9.x. Unfortunately, on iOS 8.4, changing the device orientation, which causes the web view to be resized, results

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread sqwarqDev
On 10 Feb 2016, at 13:59, diede...@tenhorses.com wrote: tell them how they can find out which apps use Sparkle?? On 10 Feb 2016, at 13:59, diede...@tenhorses.com wrote: tell them how they can find out which apps use Sparkle?? I was thinking of writing a script for this, checking for

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread diederik
You can do that in the terminal, I found this terminal command online: find /Applications -name Sparkle.framework | awk -F'/' '{print $3}' | awk -F'.' '{print $1}' This returns: Cornerstone Sequel Pro on my Mac Book Pro... Important note: I did not come up with this myself and was a bit

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread dangerwillrobinsondanger
An app could also have plugins or embedded frameworks that have distinct Sparkle updaters. Sent from my iPhone > On Feb 10, 2016, at 9:39 PM, diede...@tenhorses.com wrote: > > You can do that in the terminal, I found this terminal command online: > > find /Applications -name

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Sandor Szatmari
It looks safe... > On Feb 10, 2016, at 07:39, diede...@tenhorses.com wrote: > > You can do that in the terminal, I found this terminal command online: > > find /Applications -name Sparkle.framework | awk -F'/' '{print $3}' | awk > -F'.' '{print $1}' This finds all files named Sparkle.framework

Re: Contextual menu for NSTableCellView in NSOutlineView

2016-02-10 Thread Matt Reagan
> Also, does a Control-click behave differently than a right-click? Control-clicks will behave differently than a right-click in NSView (though I'm not sure if that's Konidaris' problem). A control click on a child NSView won't show the parent's -menuForEvent as a right mouse down does. I wrote

Revisiting that "(redraw)" NSView property behavior

2016-02-10 Thread Jens Alfke
A few weeks ago Graham was asking how to make instances of his NSView subclass redraw themselves automatically when their custom properties were changed. During the discussion he said something like “wouldn’t it be great if you could declare a property as “(redraw)” and then it would

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Ben Kennedy
If you actually took a look at the details, you'd see that the cert is for "ssl13.ovh.net" rather than "xenonium.com". If you visit https://ssl13.ovh.net in Safari you will see no such problem. Jean-Daniel did not expressly state that he's trying to serve anything at https://xenonium.com. -b

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Jens Alfke
> On Feb 10, 2016, at 4:35 PM, Gary L. Wade > wrote: > > I just checked to see what happens when visiting your web site at > https://xenonium.com and found on the current latest > release of iOS and OS X under Safari I get a "Cannot

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Gary L. Wade
You've made my point. None of my friends would even bother with looking at the certificate for his site (assuming that's his site from his email address) and move on. At worst, they'd call me and I'd say don't go there since I don't want them to screenshot that and text it to me to figure it

Re: PSA: Does your app use Sparkle? Update it, or use an HTTPS server

2016-02-10 Thread Ben Kennedy
> On 10 Feb 2016, at 5:00 pm, Gary L. Wade wrote: > > You've made my point. None of my friends would even bother with looking at > the certificate for his site (assuming that's his site from his email > address) and move on. At worst, they'd call me and I'd say