From a93cc30e59974c4dbe7cd32b1e70d7f74c79473a Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Sat, 14 Jun 2014 03:31:58 -0700 Subject: [PATCH] Mac: Update version string to 2014 --- clientgui/mac/SetVersion.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clientgui/mac/SetVersion.cpp b/clientgui/mac/SetVersion.cpp index 544bde54de..b397cdedc7 100644 --- a/clientgui/mac/SetVersion.cpp +++ b/clientgui/mac/SetVersion.cpp @@ -1,6 +1,6 @@ // This file is part of BOINC. // http://boinc.berkeley.edu -// Copyright (C) 2013 University of California +// Copyright (C) 2014 University of California // // BOINC is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License @@ -151,7 +151,7 @@ int FixInfoPlist_Strings(char* myPath, char* name) { fprintf(f, "/* Localized versions of Info.plist keys */\n\n"); fprintf(f, "CFBundleName = \"%s\";\n", name); fprintf(f, "CFBundleShortVersionString = \"%s version %s\";\n", name, BOINC_VERSION_STRING); - fprintf(f, "CFBundleGetInfoString = \"%s version %s, Copyright 2013 University of California.\";\n", name, BOINC_VERSION_STRING); + fprintf(f, "CFBundleGetInfoString = \"%s version %s, Copyright 2014 University of California.\";\n", name, BOINC_VERSION_STRING); fflush(f); retval = fclose(f); }