Re: the systemversion shows wrong version # on Mac

2021-05-13 Thread Sean Cole (Pi) via use-livecode
On Thu, 13 May 2021 at 14:57, Ben Rubinstein via use-livecode < use-livecode@lists.runrev.com> wrote: > Do we need a "detailed systemversion" ? > +1 Great idea. For Windows also this could return from ' systeminfo | findstr /B /C:"OS Name" /C:"OS Version" ' which would give the build number inste

Re: the systemversion shows wrong version # on Mac

2021-05-13 Thread Ben Rubinstein via use-livecode
Do we need a "detailed systemversion" ? On 07/05/2021 18:07, panagiotis merakos via use-livecode wrote: Hello all, Yeap, what Phil said: function mySystemVersion get shell("sw_vers -productVersion") return it end mySystemVersion This will return 11.2.3 on a Mac running Big Sur 11.2.3

Re: the systemversion shows wrong version # on Mac

2021-05-07 Thread panagiotis merakos via use-livecode
Hello all, Yeap, what Phil said: function mySystemVersion get shell("sw_vers -productVersion") return it end mySystemVersion This will return 11.2.3 on a Mac running Big Sur 11.2.3 See https://quality.livecode.com/show_bug.cgi?id=22887 Cheers, Panos -- On Fri, 7 May 2021 at 19:43, Phil

Re: the systemversion shows wrong version # on Mac

2021-05-07 Thread Phil Davis via use-livecode
If you want the actual macOS system version, you can use the 'sw_vers' shell command. phils-macbook-pro:~ pdslabs2$ sw_vers -productVersion 10.15.7 or phils-macbook-pro:~ pdslabs2$ sw_vers ProductName:    Mac OS X ProductVersion:    10.15.7 BuildVersion:    19H1030 P

Re: the systemversion shows wrong version # on Mac

2021-05-07 Thread Andre Garzia via use-livecode
Tiemo, This is not a bug. MacOS Big Sur will identify itself as both 10.16.0 and 11.x. This is by design so that scripts checking for version compatibility can see Big Sur as just a minor version of 10.x The version seen depends on both which SDK was used to compile the app, and also on the v

the systemversion shows wrong version # on Mac

2021-05-07 Thread Tiemo via use-livecode
Hello, I am on macOS 11.2.3 and the systemversion shows 10.16.0? It shows the same at least going back to 8.1.7 Do I have to multiply the systemversion by 1.1053 to get the real one? Tiemo ___ use-livecode mailing list use-liveco