Remove SVN unneeded stuff. Update my own copyright.

This commit is contained in:
Barrett17 2015-06-24 16:45:55 +00:00
parent 2237be9a93
commit 2c2b808875
5 changed files with 5 additions and 35 deletions

View File

@ -13,7 +13,7 @@ resource app_version {
internal = 0, internal = 0,
short_info = "Caya", short_info = "Caya",
long_info = "©2009-2012 Andrea Anzani, Pier Luigi Fiorini, Dario Casalinuovo" long_info = "©2009-2015 Andrea Anzani, Pier Luigi Fiorini, Dario Casalinuovo"
}; };
resource app_flags B_SINGLE_LAUNCH; resource app_flags B_SINGLE_LAUNCH;

View File

@ -10,11 +10,6 @@ SubDirSysHdrs [ FDirName $(OPENSSL_INCLUDE_DIR) ] ;
SEARCH_SOURCE += [ FDirName $(TOP) application preferences ] ; SEARCH_SOURCE += [ FDirName $(TOP) application preferences ] ;
SEARCH_SOURCE += [ FDirName $(TOP) application views ] ; SEARCH_SOURCE += [ FDirName $(TOP) application views ] ;
# SVN revision
local svnRevisionFile = [ FGristFiles svn_revision ] ;
MakeLocate $(svnRevisionFile) : $(LOCATE_TARGET) ;
CreateSVNRevisionFile $(svnRevisionFile) ;
Application Caya : Application Caya :
AboutWindow.cpp AboutWindow.cpp
Account.cpp Account.cpp
@ -34,7 +29,6 @@ Application Caya :
Server.cpp Server.cpp
TheApp.cpp TheApp.cpp
WindowsManager.cpp WindowsManager.cpp
svn_revision.cpp
# preferences # preferences
AccountDialog.cpp AccountDialog.cpp

View File

@ -25,8 +25,6 @@
#include "Server.h" #include "Server.h"
#include "TheApp.h" #include "TheApp.h"
#include "svn_revision.h"
TheApp::TheApp() TheApp::TheApp()
: :
BApplication(CAYA_SIGNATURE), BApplication(CAYA_SIGNATURE),
@ -90,20 +88,21 @@ TheApp::AboutRequested()
{ {
const char* holders[] = { const char* holders[] = {
"2009-2010 Andrea Anzani", "2009-2010 Andrea Anzani",
"2010-2015 Dario Casalinuovo",
"2009-2010 Pier Luigi Fiorini", "2009-2010 Pier Luigi Fiorini",
"2010-2012 Casalinuovo Dario",
NULL NULL
}; };
const char* authors[] = { const char* authors[] = {
"Andrea Anzani", "Andrea Anzani",
"Dario Casalinuovo",
"Pier Luigi Fiorini", "Pier Luigi Fiorini",
"Casalinuovo Dario",
NULL NULL
}; };
BString extraInfo; BString extraInfo;
extraInfo << "SVN Revision: " << kSVNRevision << "\n"; extraInfo << "Caya is released under the GNU GPL License." << "\n";
extraInfo << "Some parts of Caya are available under MIT license." << "\n";
extraInfo << "Built: " << BUILD_DATE; extraInfo << "Built: " << BUILD_DATE;
AboutWindow* about = new AboutWindow("Caya", holders, AboutWindow* about = new AboutWindow("Caya", holders,

View File

@ -1,10 +0,0 @@
/*
* Copyright 2010-2011, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include "svn_revision.h"
const int32 kSVNRevision =
#include "svn_revision"
;

View File

@ -1,13 +0,0 @@
/*
* Copyright 2011, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _SVN_REVISION_H
#define _SVN_REVISION_H
#include <SupportDefs.h>
extern const int32 kSVNRevision;
#endif // _SVN_REVISION_H