~ubuntu-branches/ubuntu/raring/quassel/raring-proposed

« back to all changes in this revision

Viewing changes to version.inc

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2008-06-27 19:21:30 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080627192130-kjsrutd8w40x5okn
Tags: upstream-0.2.0~rc1
ImportĀ upstreamĀ versionĀ 0.2.0~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Versioning, should be kept current :)
2
2
// This is included in main.cpp
3
3
 
4
 
{ using namespace Global;
5
 
 
6
 
  quasselVersion = "0.2.0-beta1";
7
 
  quasselDate = "2008-05-09";
8
 
  quasselBuild = 827;
9
 
 
10
 
  //! Minimum client build number the core needs
11
 
  clientBuildNeeded = 731;
12
 
  clientVersionNeeded = quasselVersion;
13
 
 
14
 
  //! Minimum core build number the client needs
15
 
  coreBuildNeeded = 731;
16
 
  coreVersionNeeded = quasselVersion;
17
 
 
18
 
}
 
4
//! This is the fallback version number in case we can't autogenerate one
 
5
quasselBaseVersion = "0.2.0-rc1";
 
6
protocolVersion = 1;       //< Version of the client/core protocol
 
7
 
 
8
coreNeedsProtocol   = 1;   //< Minimum protocol version the core needs
 
9
clientNeedsProtocol = 1;   //< Minimum protocol version the client needs