mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
37 lines
2.2 KiB
C
37 lines
2.2 KiB
C
/****************************************************************************************
|
|
* Copyright (c) 2009 Jakob Kummerow <jakob.kummerow@gmail.com> *
|
|
* *
|
|
* 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, see <http://www.gnu.org/licenses/>. *
|
|
****************************************************************************************/
|
|
|
|
#ifndef AMAROK_SCRIPTUPDATERSTATIC_H
|
|
#define AMAROK_SCRIPTUPDATERSTATIC_H
|
|
|
|
#include <QString>
|
|
|
|
// static configuration
|
|
static const QString updateBaseUrl = "http://amarok.kde.org:81/"; // must end with '/'
|
|
static const QString archiveFilename = "main.tar.bz2";
|
|
static const QString versionFilename = "version";
|
|
static const QString signatureFilename = "signature";
|
|
static const QString publicKey = "-----BEGIN PUBLIC KEY-----\n"
|
|
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuiTmOX5inpOpSIHDB5Je\n"
|
|
"W2R+YKINMdWW35rL0NKt7tCm1bl3Xdd9k7AdSHSCkJo4xnpXwLeisAhLEpNNCsUZ\n"
|
|
"n1GNJ1AouCfSlHOyES9uIc9ecLx3ByjfQ4XKBu0Jf1QmoAhzRgpvdoYtkR/gul8X\n"
|
|
"yfA1n6keL3ZQ+5YYqD/vU5rgYKaOloZlUhXVVohfJxCV9jvKRvfVsVlt5DQmYt1k\n"
|
|
"GfWjJAaJ6/XS+BlvxV8pgEYvnH4aVtspoD3GMIJLV8q+xK9FeQUNJZxlOoj5CyMc\n"
|
|
"BZmCyrPU1o4S4nvCSOFuAkEYtlnsSs4U/LmW3uKkVJET22wG2c/CPR8J9+X/pHZA\n"
|
|
"4QIDAQAB\n"
|
|
"-----END PUBLIC KEY-----\n";
|
|
|
|
#endif
|