Updated the version to 1.3.3, changed the named to Synergy+ and updated the project URL.
This commit is contained in:
parent
a58a369c69
commit
3589fda449
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* synergy -- mouse and keyboard sharing utility
|
||||
* Copyright (C) 2004 Chris Schoeneman
|
||||
*
|
||||
*
|
||||
* This package is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* found in the file COPYING that should have accompanied this file.
|
||||
*
|
||||
*
|
||||
* This package is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
|
@ -14,9 +14,9 @@
|
|||
|
||||
#include "Version.h"
|
||||
|
||||
const char* kApplication = "Synergy";
|
||||
const char* kApplication = "Synergy+";
|
||||
const char* kCopyright = "Copyright (C) 2002 Chris Schoeneman";
|
||||
const char* kContact = "Chris Schoeneman, crs23@bigfoot.com";
|
||||
const char* kWebsite = "http://synergy2.sourceforge.net/";
|
||||
const char* kVersion = VERSION;
|
||||
const char* kAppVersion = "Synergy " VERSION;
|
||||
const char* kWebsite = "http://code.google.com/p/synergy-plus/";
|
||||
const char* kVersion = VERSION;
|
||||
const char* kAppVersion = "Synergy+ " VERSION;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* synergy -- mouse and keyboard sharing utility
|
||||
* Copyright (C) 2002 Chris Schoeneman
|
||||
*
|
||||
*
|
||||
* This package is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* found in the file COPYING that should have accompanied this file.
|
||||
*
|
||||
*
|
||||
* This package is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
|
@ -19,7 +19,7 @@
|
|||
|
||||
// set version macro if not set yet
|
||||
#if !defined(VERSION)
|
||||
# define VERSION "1.3.2"
|
||||
# define VERSION "1.3.3"
|
||||
#endif
|
||||
|
||||
// important strings
|
||||
|
@ -36,10 +36,10 @@ extern const char* kVersion;
|
|||
extern const char* kAppVersion;
|
||||
|
||||
// exit codes
|
||||
static const int kExitSuccess = 0; // successful completion
|
||||
static const int kExitFailed = 1; // general failure
|
||||
static const int kExitTerminated = 2; // killed by signal
|
||||
static const int kExitArgs = 3; // bad arguments
|
||||
static const int kExitConfig = 4; // cannot read configuration
|
||||
static const int kExitSuccess = 0; // successful completion
|
||||
static const int kExitFailed = 1; // general failure
|
||||
static const int kExitTerminated = 2; // killed by signal
|
||||
static const int kExitArgs = 3; // bad arguments
|
||||
static const int kExitConfig = 4; // cannot read configuration
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue