[bug] Add SVN identification to build ID

Suggestions and discussion of future versions
Post Reply
psyberOne
Member
Member
Posts: 12
Joined: Tue Sep 04, 2007 5:48 am

[bug] Add SVN identification to build ID

Post by psyberOne »

Currently Deluge identifies itself as the latest release up until the next one is released,

Example: After 0.5.5.95 every SVN build until 2057 had the build ID of 0.5.5.95.

The problem here is that if there is a bug in SVN, like the ratio bug, there's no way to distinguish between the stable 0.5.5, 0.5.5.95, 0.5.6 and the possibly buggy SVN build.

Proposed solution: Add "-svn" to the build ID in the SVN

Code: Select all

PROGRAM_NAME = "Deluge" 
PROGRAM_VERSION = "0.5.6.15-svn" 

CLIENT_CODE = "DE" 
then remove it for the stable trunk releases.

Code: Select all

PROGRAM_NAME = "Deluge" 
PROGRAM_VERSION = "0.5.7.15" 

CLIENT_CODE = "DE" 

This is currently filed as #563
Post Reply