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.

6717 questions
3
votes
1 answer

Nuget installs wrong package version

SignalR version 1.0.0 is out, but I want to install the old version 1.0.0-rc1. I used this command but NuGet seems to ignore the version flag and install 1.0.0 anyway. PM> Install-Package Microsoft.AspNet.SignalR -Version 1.0.0-rc1 -Pre Attempting…
jcarpenter2
  • 5,312
  • 4
  • 22
  • 49
3
votes
2 answers

How to detect whether tomcat and ant are installed on linux machine

I am trying to install Tomcat and Ant on my linux machine, but before installing them i just need to check whether they are already installed or not. Regarding tomcat: I googled a lot and searched on my machine in the following directories for…
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
3
votes
1 answer

Akka and Typesafe config versions issue

I tried to use akka 2.1.0 on a Tomcat server. But I got an error asking me to put the config library on the classpath too. Well that's not the issue. I put the config library of Typesafe, version 1.0.0 (the latest) in the lib folder. However, I…
Taggiasco
  • 85
  • 1
  • 5
3
votes
5 answers

What are best development practices for multi JRE version support?

Our application needs to support 1.5 and 1.6 JVMs. The 1.5 support needs to stay clear of any 1.6 JRE dependencies, whereas the 1.6 support needs to exploit 1.6-only features. When we change our Eclipse project to use a 1.5 JRE, we get all the…
3
votes
2 answers

Migration versions across multiple directories

If I want to organize my migrations in multiple directories (let's say I'm using SQL migrations, and under the "sql" directory I have a "main" directory and then a "special" directory). So under sql/main I have "V1.1__some_change" etc. Then I want…
user2009267
  • 145
  • 3
  • 7
3
votes
3 answers

How do I query Tcl about its version?

There must be an easy way to do this, but I can't find it. What command can I run within Tcl to get it to introspect and report the version of itself that is running?
WilliamKF
  • 41,123
  • 68
  • 193
  • 295
3
votes
3 answers

android: Can't upgrade read-only database from version 0 to 1

I know there are many topic that have the same title, but I've tried all of them. I couldn't solve my problem. The error I get is exactly this: android.database.sqlite.SQLiteException: Can't upgrade read-only database from version 0 to 1:…
halilkaya
  • 467
  • 6
  • 21
3
votes
2 answers

Tool or approach for PHP product migration from PHP 5.2 to PHP 5.4

Existing product developed in core PHP is built in PHP 5.2 and now we want to migrate the product to PHP 5.4. CodeSniffer can detect compatibility for version and generate report with warnings and errors. Current approach could be: Scan whole…
Kulin Choksi
  • 761
  • 1
  • 11
  • 30
3
votes
4 answers

Why does JQuery.browser.version return 1.9.1.2 for Firefox 3.5.2

Does anybody know why JQuery.browser.version returns 1.9.1.2 for Firefox 3.5.2 What's the pattern? How to detect major versions? navigator.userAgent "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2" …
Jesper Rønn-Jensen
  • 106,591
  • 44
  • 118
  • 155
3
votes
2 answers

Version object is comparing two versions incorrectly

I am using the Version object in order to run a CompareTo against two version numbers and making X happen if the version is >= versionA. My issue is that in the below code, the CompareTo is declaring that VersionB is greater than VersionA. Version…
Chris Bohatka
  • 363
  • 1
  • 4
  • 14
3
votes
3 answers

SQL query to get sql year version

I'm using SQL Server and I need a SQL query which returns the year of the version. I'm familiar with the next methods: select @@version select SERVERPROPERTY('productversion') but I need a query that will return for example: 2008 or 2005 The…
elirandav
  • 1,913
  • 19
  • 27
3
votes
0 answers

same app, works on 2.2 up to 3.3 Android version but doesn't work on Android 4.0 and above

I'm testing a simple app, that use VideoView to play an http/rtsp video from internet. The app works fine into 2.2 versions up to 3.3, but when i test it on 4.0 and higher, crash!!! (tested both, on the emulator and real mobile :-/) Can anyone give…
lienmt
  • 147
  • 8
3
votes
1 answer

DDT on Eclipse Juno

Has anybody made DDT (D Development Tools) to work on Eclipse Juno? When I try to install DDT it complains about wrong version of the DLTK. Update: Since DDT verion 0.8 Eclipse Kepler and DLTK 5.0 is supported by default.
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
3
votes
2 answers

How should one maintain serialized objects?

I am creating a Serializable object descriptor that will store important state data for a non- Serailizable entity. How do I keep the old descriptors valid across application upgrades? I was thinking of opening all of the known previous state (on…
ahodder
  • 11,353
  • 14
  • 71
  • 114
3
votes
1 answer

How to invoke Powershell version 2 on remote computer via Invoke-Command

I'm trying to remotely setup websites on web servers using powershell. The web servers I'm attempting to configure are Windows Server 2008 R2 SP1 which has powershell v2 on it by default. To make things easier, I'm using the Snapin…
AvianFLU
  • 530
  • 5
  • 9
1 2 3
99
100