Palewolf:
* SniperRifle.lua: convert spaces to tabs
* Update spanish translation
sheepluva:
translations:
* ran sed -i 's/ type="[^"]*"//' on .ts files as requested by Smaxx and Palewolf
* ran lupdate and lrelease
frontend:
* reduce min window-size a bit
* make option page scale down better
engine:
* replacing Smaxx' latest commit with a TryDo()
/*
* Copyright (C) 2008 Remko Troncon
*/
#ifndef SPARKLEAUTOUPDATER_H
#define SPARKLEAUTOUPDATER_H
#include <QString>
#include "AutoUpdater.h"
class SparkleAutoUpdater : public AutoUpdater
{
public:
SparkleAutoUpdater(const QString& url);
~SparkleAutoUpdater();
void checkForUpdates();
private:
class Private;
Private* d;
};
#endif