QTfrontend/util/platform/SparkleAutoUpdater.mm
author Wuzzy <Wuzzy2@mail.ru>
Fri, 27 Oct 2017 05:03:58 +0200
changeset 12787 389453e1e09e
parent 12273 2eedf9e0cd6d
permissions -rw-r--r--
ACF7: Fix possible Lua error spam in intro sequence This was caused by a race of onGearDelete vs AnimationSetup. If AnimationSetup came first, it uses old values from the natives table. The solution is to force the code to guarantee that AnimationSetup always coms after deleting gears in the natives table.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     1
/*
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     4
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     8
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    12
 * GNU General Public License for more details.
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    13
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    14
 * You should have received a copy of the GNU General Public License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 9998
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    17
 */
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    18
12273
2eedf9e0cd6d Replace some HTTP links with HTTPS links
Wuzzy <almikes@aol.com>
parents: 11046
diff changeset
    19
// see original example here https://el-tramo.be/blog/mixing-cocoa-and-qt
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    20
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    21
#include "SparkleAutoUpdater.h"
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    22
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    23
#include <Cocoa/Cocoa.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    24
#include <Sparkle/Sparkle.h>
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    25
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    26
class SparkleAutoUpdater::Private
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    27
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    28
    public:
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    29
        SUUpdater* updater;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    30
};
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    31
7933
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    32
SparkleAutoUpdater::SparkleAutoUpdater()
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    33
{
8064
koda
parents: 7933
diff changeset
    34
    d = new SparkleAutoUpdater::Private();
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    35
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    36
    d->updater = [SUUpdater sharedUpdater];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    37
    [d->updater retain];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    38
}
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    39
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    40
SparkleAutoUpdater::~SparkleAutoUpdater()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    41
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    42
    [d->updater release];
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    43
    delete d;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    44
}
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    45
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    46
void SparkleAutoUpdater::checkForUpdates()
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    47
{
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2261
diff changeset
    48
    [d->updater checkForUpdatesInBackground];
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    49
}
7933
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    50
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    51
void SparkleAutoUpdater::checkForUpdatesNow()
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    52
{
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    53
    [d->updater checkForUpdates:NULL];
223b3a195474 many osx sparkle fixes
koda
parents: 6952
diff changeset
    54
}