On 13/05/2015 14:02, Claude Frantz wrote:

Hi Claude,
> On 05/13/2015 02:45 PM, Michael Black wrote:
>
>> When you branch the revision numbers branch too.  That's why one branch can
>> be ahead of another by rev#.
> When I enter "svn info", I get....
>
> $ svn info
> Path: .
> Working Copy Root Path: /home/claude/ham/JoeTaylor/wsjtx
> URL: svn://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx
> Relative URL: ^/branches/wsjtx
> Repository Root: svn://svn.code.sf.net/p/wsjt/wsjt
> Repository UUID: ab8295b8-cf94-4d9e-aec4-7959e3be5d79
> Revision: 5371
> Node Kind: directory
> Schedule: normal
> Last Changed Author: bsomervi
> Last Changed Rev: 5371
> Last Changed Date: 2015-05-13 02:15:08 +0200 (Wed, 13 May 2015)
>
> There is no mention of a version number. I confess, that I do not
> understand this matter.
The WSJT-X identification of a build version is determined by a file in 
the source. That file is Versions.cmake and that is where the vM.m.p  
(Major, minor and, patch) release name is derived.

So in your case you have checked out the development branch 
^/branches/wsjtx and the Versions.cmake file there looks like:

# Version number components
set (WSJTX_VERSION_MAJOR 1)
set (WSJTX_VERSION_MINOR 6)
set (WSJTX_VERSION_PATCH 0)
set (WSJTX_RC 0)                 # release candidate number, comment out 
or zero for development versions
set (WSJTX_VERSION_IS_RELEASE 0) # set to 1 for final release build

If you switch to a different branch, for example:

$ svn switch ^/branches/wsjtx_exp

you will then see Versions.cmake as:

# Version number components
set (WSJTX_VERSION_MAJOR 1)
set (WSJTX_VERSION_MINOR 6)
set (WSJTX_VERSION_PATCH 1)
set (WSJTX_RC 0)                 # release candidate number, comment out 
or zero for development versions
set (WSJTX_VERSION_IS_RELEASE 0) # set to 1 for final release build

and if you build that you will get Joe's latest features including WSPR.
>
> Many thanks for helping me.
>
> Best 88 de Claude
73
Bill
G4WJS.

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to