version

How can I embed a version into a DLL?

I have a project that is mainly Java, but also uses some C, which is built into a DLL, using ant for the whole build. I want to add versioning, so that the same version is embedded in the jar files, and also in the dll files. For the jars it was simple, but how can I do this for the dlls? I know you can embed different resources like a ...

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 dependencies flagged as errors. This is useful to see where our dependencies are, but is not u...

Get software versions and information via API

Is there any free/commercial API to get information about software. The best would be to get as much info as possible but at least what is the current version and so on would be fine. I have tried to look on sites like http://wakoopa.com (They only have per user) and http://www.versiontracker.com/ but can't find exactly what im looking f...

How to sync Publish Version to Assembly Version in a .NET ClickOnce app?

In my C# ClickOnce app, there is an auto-incremented Publish Version in the Project->Properties->Publish tab. I'd like to display that version in my Help->About box, but the code I'm using apparently accesses the Assembly Version, which is different. The Assembly Version can be changed manually in the Project->Propteries->Application->...

Handling data migration from 'lite' to 'pro' version of iPhone app...

I am near the end stages of developing an iPhone application and will be releasing it as both a 'lite' (ad-supported) version and a 'pro' (ad-free, likely with additional functionality at some point) version. I've followed suggestions here and elsewhere about creating multiple targets, etc. and am able to build these without any problem...

Version Roll Back

I am doing a concept in linux in which i want to do version rollback for an app installed in linux. Is it possible?? For eg I have an application named X with version 1.1 I get an update. It changes it to version 1.2 I note what all the packages in the app going to be modified. Then i save them and apply the changes. Now after sometime ...

Where to specify version number in ASP.NET Web Site

So I have an ASP.NET 'Web Site' (as opposed to a Web Application) which has no AssemblyInfo.cs file or Bin folder or anything like that. I want to have a way to specify an Assembly version number (e.g. 7.0.2.0). In a Web Application you would do this in an AssemblyInfo.cs file. I've tried adding a Properties folder with an AssemblyInfo...

how to update iphone Simulator and Device to 3.1?

Hi, I have Xcode version 3.1.3 and in that Simulator and Device is supported till 3.0. I want to update the Simulator and Device for 3.1.After that i will be able to put my data from Xcode to My Real Device OS 3.1. how to update from 3.0 to 3.1 in Xcode in Mac mini? If any body has any resolution or any other way ,which would apprecia...

Can I run grails 1.2-M3 with groovy 1.7 beta 1?

Hi, I have groovy 1.7 beta 1 in my path and GROOVY_HOME pointing to same groovy 1.7 beta 1 directory. I have installed grails 1.2-M3, and set GRAILS_HOME to point to grails 1.2-M3. I would like to try some groovy 1.7 features in my grails app, anonymous inner classes to be precise. I am receiving a compiler error even though this feat...

Workflow for maintaining different versions of codebase for different versions of Python

I'm developing an open source application called GarlicSim. Up to now I've been developing it only for Python 2.6. It seems not to work on any other version. I decided it's important to produce versions of it that will support other versions of Python. I'm thinking I'll make a version for 2.5, 3.1 and maybe 2.4. So I have several ques...

iphone : Managing version updates of a native app

Hi, I'd like to make sure a user uses a good version of the iphone app. The idea I had was that whenever a user opens the native iphone application he sends a request to the server with the version number of the application. Depending on the server response, it would activate or not the application. Does Apple demand that the applicat...

Mantis - Add version field

Is it possible to have a version number for each defect/issue raised in Mantis and track its value during the lifetime of the defect? e.g v0.1 - Issue reported v0.2 - Issue assigned v0.5 - Issue resolved v0.6 - Issue closed I have never used custom fields in Mantis - can they be employed for such a purpose? UPDATE: In the meantime,...

Using different versions of DLL in one application

I have a Silverlight Class Library that is being used by both Silverlight application and a regular C# WCF Service. The Silverlight application calls the WCF service to read/write some data. They both use the common library to manipulate the data being passed. Everything compiles fine, but when we run the application, the webservice t...

How do I find Assembly Version of Calling Program?

I am using C# for this application. I have a DLL that gets included within my application. From this DLL, I need to find the Assembly Version of the main program in which this DLL is included. System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() does not return what I want. This returns the Assembly version o...

How do I get a description of the current OS version in windows?

I need to get a simple description of the OS, such as "Windows XP (SP2)" or "Windows 2000 Professional" to include in some debugging code. Ideally, I'd like to simply retrieve it by calling a "GetOSDisplayName" function. Is there such a function available for C++ win32 programming? ...

Can I use multiple versions of jQuery on the same page?

A project I'm working on requires the use of jQuery on customers' Web pages. Customers will insert a chunk of code that we'll supply which includes a few <script> elements that build a widget in a <script>-created <iframe>. If they aren't already using the latest version of jQuery, this will also include (most likely) a <script> for Goog...

What version is 5.2.0-8+etch13 really?

It is probably and stupid question, but what version of PHP5 is 5.2.0-8+etch13 ? Is it really 5.2.0 ? Because maybe it is just the debian version that covers something else. ...

How do I set the version of a DLL built in C, compiled with CL.EXE ?

If I compile the source for a C-language DLL with CL.exe, how do I set the file properties including File version Product name, Product version, Copyright and so on, so that I can view these properties in Windows Explorer? In a .NET application written in C#, I could do this with assembly attributes like [assembly: AssemblyVersion("1...

Using git as a centralized version server

Hi, I currently use svn at work. Our setup is: everyone has a working copy and we commit to a svn server served by apache2. So I commit changed, the other update, and everyone can work on the copy as they wish. So it's pretty easy to deploy. But now, I'd like to do the same thing but with Git. Would it be possible? I'd like to have ...

Resolve multiple versions of rubygems

I have what looks like multiple versions of rubygems installed on my machine, when i gem list i see all my gems, but when i go to run scripts, i get error messages like Missing these required gems: SystemTimer Is there any methodology I can follow to remove all versions of rubygems but one? Ideally i would like to be able to access ...