diff options
author | Oystein Eftevaag | 2011-08-02 21:00:57 -0400 |
---|---|---|
committer | Oystein Eftevaag | 2011-08-02 21:00:57 -0400 |
commit | 7e7e6069193fead17d0865d252400b6826805ffc (patch) | |
tree | 363ba1268a4724f7039d4ce2d53a3192c307a67f /backends/updates | |
parent | 9044e17499797ef007c9c8240d79f69382f61765 (diff) | |
download | scummvm-rg350-7e7e6069193fead17d0865d252400b6826805ffc.tar.gz scummvm-rg350-7e7e6069193fead17d0865d252400b6826805ffc.tar.bz2 scummvm-rg350-7e7e6069193fead17d0865d252400b6826805ffc.zip |
MACOSX: Turned update support off by default, simplified and cleaned the pull request
Diffstat (limited to 'backends/updates')
-rw-r--r-- | backends/updates/macosx/macosx-updates.h | 6 | ||||
-rw-r--r-- | backends/updates/macosx/macosx-updates.mm | 34 | ||||
-rw-r--r-- | backends/updates/sparkle-updates.cpp | 45 | ||||
-rw-r--r-- | backends/updates/sparkle-updates.h | 48 |
4 files changed, 20 insertions, 113 deletions
diff --git a/backends/updates/macosx/macosx-updates.h b/backends/updates/macosx/macosx-updates.h index 1fe0e4bb75..8c9ac1f743 100644 --- a/backends/updates/macosx/macosx-updates.h +++ b/backends/updates/macosx/macosx-updates.h @@ -23,11 +23,13 @@ #ifndef BACKENDS_UPDATES_MACOSX_H #define BACKENDS_UPDATES_MACOSX_H -#include "backends/updates/sparkle-updates.h" +#include "common/scummsys.h" #if defined(MACOSX) && defined(USE_SPARKLE) -class MacOSXUpdateManager : public SparkleUpdateManager { +#include "common/updates.h" + +class MacOSXUpdateManager : public Common::UpdateManager { public: MacOSXUpdateManager(); virtual ~MacOSXUpdateManager(); diff --git a/backends/updates/macosx/macosx-updates.mm b/backends/updates/macosx/macosx-updates.mm index f3675f9bd2..741e89891c 100644 --- a/backends/updates/macosx/macosx-updates.mm +++ b/backends/updates/macosx/macosx-updates.mm @@ -23,11 +23,9 @@ // Disable symbol overrides so that we can use system headers. #define FORBIDDEN_SYMBOL_ALLOW_ALL -#include "backends/updates/sparkle-updates.h" - -#if defined(MACOSX) && defined(USE_SPARKLE) - #include "backends/updates/macosx/macosx-updates.h" + +#ifdef USE_SPARKLE #include "common/translation.h" #include <Cocoa/Cocoa.h> @@ -53,8 +51,12 @@ MacOSXUpdateManager::MacOSXUpdateManager() { // Init Sparkle sparkleUpdater = [SUUpdater sharedUpdater]; + NSBundle* mainBundle = [NSBundle mainBundle]; + + NSString* feedbackURL = [mainBundle objectForInfoDictionaryKey:@"SUFeedURL"]; + // Set appcast URL - [sparkleUpdater setFeedURL:[NSURL URLWithString:[NSString stringWithCString:getAppcastUrl().c_str()]]]; + [sparkleUpdater setFeedURL:[NSURL URLWithString:feedbackURL]]; // Get current encoding NSStringEncoding stringEncoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)[NSString stringWithCString:(TransMan.getCurrentCharset()).c_str() encoding:NSASCIIStringEncoding])); @@ -108,22 +110,18 @@ Common::UpdateManager::UpdateInterval MacOSXUpdateManager::getUpdateCheckInterva // This is kind of a hack but necessary, as the value stored by Sparkle // might have been changed outside of ScummVM (in which case we return the // default interval of one day) - switch ((UpdateInterval)[sparkleUpdater updateCheckInterval]) { - default: - break; - - case kUpdateIntervalOneDay: - return kUpdateIntervalOneDay; - case kUpdateIntervalOneWeek: - return kUpdateIntervalOneWeek; + UpdateInterval updateInterval = (UpdateInterval)[sparkleUpdater updateCheckInterval]; + switch (updateInterval) { + case kUpdateIntervalOneDay: + case kUpdateIntervalOneWeek: + case kUpdateIntervalOneMonth: + return updateInterval; - case kUpdateIntervalOneMonth: - return kUpdateIntervalOneMonth; + default: + // Return the default value (one day) + return kUpdateIntervalOneDay; } - - // Return the default value (one day) - return kUpdateIntervalOneDay; } #endif diff --git a/backends/updates/sparkle-updates.cpp b/backends/updates/sparkle-updates.cpp deleted file mode 100644 index f146237a98..0000000000 --- a/backends/updates/sparkle-updates.cpp +++ /dev/null @@ -1,45 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - - * This program 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 - * GNU General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#include "backends/updates/sparkle-updates.h" - -#if defined(USE_SPARKLE) - -// TODO replace by proper URL -#if defined(MACOSX) - #define APPCAST_BASE_URL "http://www.scummvm.org/appcasts/macosx/" -#elif defined(WIN32) - #define APPCAST_BASE_URL "http://www.scummvm.org/appcasts/win32/" -#else - #error "Please define APPCAST_BASE_URL for your platform!" -#endif - - -Common::String SparkleUpdateManager::getAppcastUrl() { -#ifdef RELEASE_BUILD - return APPCAST_BASE_URL "release.xml"; -#else - return APPCAST_BASE_URL "beta.xml"; -#endif -} - -#endif diff --git a/backends/updates/sparkle-updates.h b/backends/updates/sparkle-updates.h deleted file mode 100644 index 26f170db2e..0000000000 --- a/backends/updates/sparkle-updates.h +++ /dev/null @@ -1,48 +0,0 @@ -/* ScummVM - Graphic Adventure Engine - * - * ScummVM is the legal property of its developers, whose names - * are too numerous to list here. Please refer to the COPYRIGHT - * file distributed with this source distribution. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - - * This program 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 - * GNU General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - */ - -#ifndef BACKENDS_UPDATES_SPARKLE_UPDATE_H -#define BACKENDS_UPDATES_SPARKLE_UPDATE_H - -#include "common/scummsys.h" -#include "common/str.h" -#include "common/updates.h" - -#if defined(USE_SPARKLE) - -class SparkleUpdateManager : public Common::UpdateManager { -public: - /** - * Gets the appcast url. - * - * Beta/RC versions and releases might have a different appcast url. - * This function takes care of checking which version of ScummVM is running - * and return the url to the proper appcast. - * - * @return the appcast url. - */ - Common::String getAppcastUrl(); -}; - -#endif - -#endif // BACKENDS_UPDATES_SPARKLE_UPDATE_H |