File indexing completed on 2024-04-14 04:40:49

0001 /****************************************************************************************
0002  * Copyright (c) 2009 Jakob Kummerow <jakob.kummerow@gmail.com>                         *
0003  *                                                                                      *
0004  * This program is free software; you can redistribute it and/or modify it under        *
0005  * the terms of the GNU General Public License as published by the Free Software        *
0006  * Foundation; either version 2 of the License, or (at your option) any later           *
0007  * version.                                                                             *
0008  *                                                                                      *
0009  * This program is distributed in the hope that it will be useful, but WITHOUT ANY      *
0010  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A      *
0011  * PARTICULAR PURPOSE. See the GNU General Public License for more details.             *
0012  *                                                                                      *
0013  * You should have received a copy of the GNU General Public License along with         *
0014  * this program.  If not, see <http://www.gnu.org/licenses/>.                           *
0015  ****************************************************************************************/
0016 
0017 #ifndef AMAROK_SCRIPTUPDATERSTATIC_H
0018 #define AMAROK_SCRIPTUPDATERSTATIC_H
0019 
0020 #include <QString>
0021 
0022 // static configuration
0023 static const QString updateBaseUrl     = "http://amarok.kde.org:81/"; // must end with '/'
0024 static const QString archiveFilename   = "main.tar.bz2";
0025 static const QString versionFilename   = "version";
0026 static const QString signatureFilename = "signature";
0027 static const QString publicKey = "-----BEGIN PUBLIC KEY-----\n"
0028 "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuiTmOX5inpOpSIHDB5Je\n"
0029 "W2R+YKINMdWW35rL0NKt7tCm1bl3Xdd9k7AdSHSCkJo4xnpXwLeisAhLEpNNCsUZ\n"
0030 "n1GNJ1AouCfSlHOyES9uIc9ecLx3ByjfQ4XKBu0Jf1QmoAhzRgpvdoYtkR/gul8X\n"
0031 "yfA1n6keL3ZQ+5YYqD/vU5rgYKaOloZlUhXVVohfJxCV9jvKRvfVsVlt5DQmYt1k\n"
0032 "GfWjJAaJ6/XS+BlvxV8pgEYvnH4aVtspoD3GMIJLV8q+xK9FeQUNJZxlOoj5CyMc\n"
0033 "BZmCyrPU1o4S4nvCSOFuAkEYtlnsSs4U/LmW3uKkVJET22wG2c/CPR8J9+X/pHZA\n"
0034 "4QIDAQAB\n"
0035 "-----END PUBLIC KEY-----\n";
0036 
0037 #endif