version-detection Questions

8

Solved

I'm just reading this documentation about Javascript 1.2, but I'm wondering which version of Javascript is being used in the most popular browsers. http://www.tutorialspoint.com/javascript/javascr...
Litigious asked 24/11, 2010 at 21:8

2

Solved

I want to inform the user which python version they should use: import sys assert sys.version_info >= (3, 6), "Use Python 3.6 or newer" print(f"a format string") But instead...
Asci asked 19/9, 2020 at 14:4

4

Solved

Is it possible to check the minor version number of GCC in cmake? I want to do something like this: If (GCC_MAJOR >= 4 && GCC_MINOR >= 3)
Hans asked 30/10, 2010 at 11:52

9

Solved

This is related to the "fix" for position:fixed in older versions of iOS. However, if iOS5 or greater is installed, the fix breaks the page. I know how to detect iOS 5: navigator.userAgent.match(/...
Ceto asked 1/12, 2011 at 20:53

4

Solved

I'm checking the windows version in an installer (made with NSIS) by checking the following registry key: HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" "CurrentVersion" According to this p...
Tearle asked 26/6, 2015 at 11:53

6

Solved

What would the preferred way of programmatically determining which the currently installed version of Microsoft Internet Information Services (IIS) is? I know that it can be found by looking at th...
Utica asked 12/1, 2009 at 10:38

13

Solved

A similar question was asked here, but it was specific to .NET 3.5. Specifically, I'm looking for the following: What is the correct way to determine which .NET Framework versions and service pac...
Seng asked 13/10, 2008 at 21:22

4

Solved

I am using the following code to get the version of IE in a system. var browser = navigator.appName; var b_version = navigator.appVersion; var version = parseFloat(b_version); alert(vers...
Sybil asked 18/12, 2009 at 5:10

1

My approach now is … if ( preg_match( '~IIS/(\d+\.\d+)~', $_SERVER['SERVER_SOFTWARE'], $matches ) ) $version = $matches[1]; … but I have no experience with IIS, and after searching for a while ...
Sigrid asked 15/2, 2013 at 18:13

2

Solved

I'm working on a component installer (only for Delphi XE2) and I would like to detect if the Delphi XE2 IDE is running. How would you detect it? P.S. I know about the TAppBuilder window class name...
Aesir asked 4/2, 2012 at 16:56

3

Solved

Does anyone know of a good place where I can find the complete list of version defines for all the Delphi versions, right up to Delphi 2009?
Bangtail asked 15/4, 2009 at 8:37

4

Solved

Most modern browsers (Chrome 10, Firefox 4, IE9) are all shortening their UserAgent identifiers. As a result, the supported .NET versions are no longer sent to the server. In order to allow our cu...
Baliol asked 12/4, 2011 at 14:35

3

Solved

Is there GWT api that will tell me which browser version it detected? I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions.
Akeyla asked 17/6, 2010 at 18:16

4

Solved

I need to determine the highest .NET framework version installed on a desktop machine from C\C++ code. Looks like I can iterate the folders under %systemroot%\Microsoft.NET\Framework, but tha...
Freudberg asked 8/10, 2008 at 13:58
1

© 2022 - 2024 — McMap. All rights reserved.