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
3 answers

Retrieving OS name

Is there any way to get the OS name the user is currently using?
Hanny
  • 155
  • 1
  • 1
  • 3
3
votes
2 answers

If condition for PHP Version ignore new code

So I've got a script that needs to run on several sites. I've got one version of the script that is optimised with some new PHP 5.3 functions, however some sites are 5.2 etc. This code: if (version_compare(PHP_VERSION, '5.3.0') >= 0) { Do the…
Alexander Wigmore
  • 3,157
  • 4
  • 38
  • 60
3
votes
2 answers

How do I skip a carrierwave store callback when processing versions

I have a callback defined in my video uploader class of carrierwave after :store, :my_method and I have three versions of the files. original,standard,low my_method executes when each version is processed ie, three times, I just need the callback to…
Ojash
  • 1,234
  • 8
  • 20
3
votes
3 answers

Nuspec snippet to install dependencies' latest version

Introduction According to this documentation it is possible to specify dependencies including versions per package as follows: Question Which Nuspec snippet needs…
030
  • 10,842
  • 12
  • 78
  • 123
3
votes
1 answer

google app engine: new version doesn't appear

I have made an update on Google App Engine with a small fix and I got: Closing update: new version is ready to start serving. However, when I open the website, there is still old version. I have changed version to 2 in app.yaml, before running…
gruszczy
  • 40,948
  • 31
  • 128
  • 181
3
votes
2 answers

How to check perl version

the default Perl version installed on my machine is the 5.8.7. When I run my script internally switch to another perl version (v5.10.1) doing this: my $perl_5_10 = "/opt/perl_5.10.1/bin"; $ENV{'PATH'} = $perl_5_10 ":" . $ENV{'PATH'}; Now, I…
Kasper
  • 685
  • 2
  • 11
  • 30
3
votes
0 answers

how can I remove Visual Studio 2013 product key?

I have a copy of Visual Studio 2013 Pro on my machine with a aerial key that I'm no longer suppose to use because I have to use another one.
Dev_08
  • 29
  • 1
3
votes
1 answer

Rails -v saying wrong rails version on Mac OSX

I've been trying to uninstall rails because it was on 4.1.0.rc1 and I wanted 4.0.0, so I ran gem uninstall rails -v 4.1.0.rc1 And it said it was uninstalled successfully but typing rails -v still gives me 4.1.0.rc1 I tried running gem…
Jordan
  • 2,393
  • 4
  • 30
  • 60
3
votes
4 answers

Zend Server Version?

How can I receive the Zend Server version by a PHP script running on this Zend Server? phpinfo() and the commandline php -v does not tell the Zend Server version!
powtac
  • 40,542
  • 28
  • 115
  • 170
3
votes
1 answer

WAR, manifest.mf and version

I have a WAR file, and inside a /META-INF/MANIFEST.MF containing my product version info: Implementation-Version: 1.0.0.0 At my index.jsp I have this code to print the version: <% String version =…
Beto Neto
  • 3,962
  • 7
  • 47
  • 81
3
votes
6 answers

Chruby install Ruby 1.8.7

I'm using chruby for version management and am cloning a project that is unfortunately in Ruby 1.8.7. Is it possible to install Ruby 1.8.7 with chruby? I'm having trouble finding resources for this process.
andy4thehuynh
  • 2,042
  • 3
  • 27
  • 37
3
votes
3 answers

Get Java version from PowerShell of remote server

I am trying to write a script in PowerShell that will use the invoke command with credentials on a remote machine to execute code that will return a string containing the Java version on that machine. Java is not installed, sometimes it is just…
alexfvolk
  • 1,810
  • 4
  • 20
  • 40
3
votes
0 answers

Teamcity display data about build in project overview

I'm setting up our TeamCity 7 environment to allow managers to fetch artifacts, version data etc. easily from TeamCity. However, upon downloading artifacts, I need them to be able to easily see the version and build number. If you click to see the…
Ronnie
  • 31
  • 1
3
votes
1 answer

Unable to open NetCDF version 4 files in R

It seems that the current version of the ncdf package is not able to open NetCDF Version 4 files. See: Error when trying to import NetCDF to R In the resolution to that question, Johannes explained that he managed to run the ncdf4 package on a…
Erin
  • 31
  • 5
3
votes
4 answers

Motivation for k-medoids

Why would one use kmedoids algoirthm rather then kmeans? Is it only the fact that the number of metrics that can be used in kmeans is very limited or is there something more? Is there an example of data, for which it makes much more sense to choose…
Antoine
  • 862
  • 7
  • 22