Questions tagged [version]

Version defines an unique state of a computer software or a file.

Versions and version control systems are widely used in software industry to keep track of different versions of a piece of software.

Following processes and techniques are often used in computer software engineering to keep track of different versions:

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software.

At a fine-grained level, revision control is often used for keeping track of incrementally different versions of electronic information, whether or not this information is actually computer software.

One of the forms of revision control is a versioning file system. Such a system is any computer file system which allows a computer file to exist in several versions at the same time.

5890 questions
2
votes
1 answer

(System.Web.UI.HtmlControls.HtmlGenericControl) is not compatible with the type of control (System.Web.UI.HtmlControls.HtmlIframe)

I have converted a .net 1.2 project to 4.5 and the error i am getting is :- The base class includes the field 'ifUC', but its type (System.Web.UI.HtmlControls.HtmlGenericControl) is not compatible with the type of control…
2
votes
1 answer

Minimum PHP version for running Magento Web Service APIs

Can anybody please suggest how to know the minimum PHP version, for working of the Magento v1.4.x.x Web Services? EDIT:- My problem is that I am trying to run an API Web Service (having tried both V2 & normal SOAP) for downloading Store Lists. But…
Knowledge Craving
  • 7,791
  • 12
  • 46
  • 90
2
votes
1 answer

Which version(s) of the redistributables do I need to distribute?

Two related questions: I have a 32-bit MFC program that I wish to distribute, and I want it to run under either 32- or 64-bit Windows. Can I include just the x86 redistributable because my program is 32-bit, or do I need to include both the x86 and…
2
votes
3 answers

I'm getting an error in wamp about PHP path

When I start wamp it shows me this error about the PHP path but I don't even have this PHP version on my computer. Sorry, There is an error. There is Wampserver path (c:/wamp64) into Windows PATH environnement variable:…
2
votes
1 answer

What is the best way to find a version of an androidx library, such as NavigationComponent, ViewModel, and so on?

About an hour trying to find the latest version of the navigation component library, but without success, so I wonder how I can quickly find the version of the package I need? Thank you.
Alex Smith
  • 21
  • 1
2
votes
4 answers

Register any version of assembly in ASP .NET page

How can I use any available version of an assembly on an ASP .NET page? For example, I use this tag before adding a Crystal Reports control on a web page on my computer: <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0,…
Dileep A
  • 108
  • 1
  • 1
  • 5
2
votes
1 answer

How to retrieve Poco libraries version from inside a C++ program?

Do C++ Poco libraries have any macro or constant in the source code returning the current version of the library?
Francesco Boi
  • 5,497
  • 8
  • 54
  • 83
2
votes
1 answer

Conan auto increment packet version

I started using Conan to handle my C++ code base and I do not understand if it offers a way to automatically increment a package version after uploading a release. I am talking about something like npm postpublish hook script that I use to execute…
Marco Stramezzi
  • 1,611
  • 2
  • 11
  • 28
2
votes
1 answer

Using support library version lower than compileSdkVersion

I work with android studio and in build.gradle file some dependencies are underlined in red. The message is : This support library should not use a different version (25) than the compileSdkVersion (26) I know how to resolve this (just use the same…
Seb
  • 23
  • 1
  • 6
2
votes
2 answers

Intellij IDEA 2018.2 does not recognize the JavaFX packages with JDK 10

I have searched but not found any detailed information about it. In http://www.oracle.com/technetwork/java/javafx/downloads/index.html it says As of JDK 7u6 JavaFX is included with the standard JDK and JRE bundles But I am getting error on…
user12043
  • 353
  • 1
  • 3
  • 11
2
votes
4 answers

How to have Git show a file's version history

I've been a CVS user in the past, and though I consider Git a good version control system, I am missing a feature I had in CVS. Specifically, I want to see a file's version history, such as the tags on it. How can I do that in Git?
wintige
  • 23
  • 1
  • 3
2
votes
0 answers

In Matlab's very old versions, what did "\" stand for in a conditional statement?

For my thesis work I was suggested to use a related code made in year 2000 on Matlab; when transcribing it I found the next syntax for some if loops: if \ min(x)>= 0 statement; end However it is not valid anymore for recent software's versions.…
Julio
  • 61
  • 9
2
votes
0 answers

Version of raise is a syntax error in Python 3

As a rookie, I just started to use the datareader library, in particular read_html function and came across the following error when trying to get a table from websites. import pandas as pd from pandas_datareader import data …
2
votes
1 answer

android, Accessing just to update of SDK

Accessing to android website is blocked in my country by Google and programmers who are staying in my country are not able to download SDK and use android website. I have bypassed this problem by uploading SDK on my host and let programmers to…
Hesam
  • 46,136
  • 63
  • 203
  • 340
2
votes
0 answers

How to add a schema version number to a node in xml using data contracts?

I am working with serialization using data contracts and want to add a version number(schema version number in my case) and a check for the same on the very root node of my serialized document. Something like this :
Jasmeet
  • 1,121
  • 6
  • 17