From 2c2b80887501e91c07d07367362ba47069754a85 Mon Sep 17 00:00:00 2001 From: Barrett17 Date: Wed, 24 Jun 2015 16:45:55 +0000 Subject: [PATCH] Remove SVN unneeded stuff. Update my own copyright. --- application/Caya.rdef | 2 +- application/Jamfile | 6 ------ application/TheApp.cpp | 9 ++++----- application/svn_revision.cpp | 10 ---------- application/svn_revision.h | 13 ------------- 5 files changed, 5 insertions(+), 35 deletions(-) delete mode 100644 application/svn_revision.cpp delete mode 100644 application/svn_revision.h diff --git a/application/Caya.rdef b/application/Caya.rdef index da39790..14df7ee 100644 --- a/application/Caya.rdef +++ b/application/Caya.rdef @@ -13,7 +13,7 @@ resource app_version { internal = 0, 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; diff --git a/application/Jamfile b/application/Jamfile index 85e084d..f25b1fe 100644 --- a/application/Jamfile +++ b/application/Jamfile @@ -10,11 +10,6 @@ SubDirSysHdrs [ FDirName $(OPENSSL_INCLUDE_DIR) ] ; SEARCH_SOURCE += [ FDirName $(TOP) application preferences ] ; SEARCH_SOURCE += [ FDirName $(TOP) application views ] ; -# SVN revision -local svnRevisionFile = [ FGristFiles svn_revision ] ; -MakeLocate $(svnRevisionFile) : $(LOCATE_TARGET) ; -CreateSVNRevisionFile $(svnRevisionFile) ; - Application Caya : AboutWindow.cpp Account.cpp @@ -34,7 +29,6 @@ Application Caya : Server.cpp TheApp.cpp WindowsManager.cpp - svn_revision.cpp # preferences AccountDialog.cpp diff --git a/application/TheApp.cpp b/application/TheApp.cpp index 5824703..5ae82a0 100644 --- a/application/TheApp.cpp +++ b/application/TheApp.cpp @@ -25,8 +25,6 @@ #include "Server.h" #include "TheApp.h" -#include "svn_revision.h" - TheApp::TheApp() : BApplication(CAYA_SIGNATURE), @@ -90,20 +88,21 @@ TheApp::AboutRequested() { const char* holders[] = { "2009-2010 Andrea Anzani", + "2010-2015 Dario Casalinuovo", "2009-2010 Pier Luigi Fiorini", - "2010-2012 Casalinuovo Dario", NULL }; const char* authors[] = { "Andrea Anzani", + "Dario Casalinuovo", "Pier Luigi Fiorini", - "Casalinuovo Dario", NULL }; 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; AboutWindow* about = new AboutWindow("Caya", holders, diff --git a/application/svn_revision.cpp b/application/svn_revision.cpp deleted file mode 100644 index 3bd5b2c..0000000 --- a/application/svn_revision.cpp +++ /dev/null @@ -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" -; diff --git a/application/svn_revision.h b/application/svn_revision.h deleted file mode 100644 index 7d1f9ba..0000000 --- a/application/svn_revision.h +++ /dev/null @@ -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 - -extern const int32 kSVNRevision; - -#endif // _SVN_REVISION_H