]> git.sur5r.net Git - minitube/blobdiff - src/appwidget.cpp
Update API key
[minitube] / src / appwidget.cpp
index 43b3b58adee5c22e4f35c2516fbd85c99fa825b9..000c6dd4b86f1512ce8ceace4b3fc5e143ab0c4e 100644 (file)
@@ -21,6 +21,7 @@ AppsWidget::AppsWidget(QWidget *parent) : QWidget(parent) {
     const QString ext = "deb";
 #endif
 
+    setupApp("Sofa", "sofa." + ext);
     setupApp("Finetune", "finetune." + ext);
     setupApp("Musictube", "musictube." + ext);
     setupApp("Musique", "musique." + ext);
@@ -41,7 +42,7 @@ void AppsWidget::paintEvent(QPaintEvent *e) {
 
 AppWidget::AppWidget(const QString &name, const QString &code, QWidget *parent) : QWidget(parent), icon(0), name(name), downloadButton(0) {
     const QString unixName = code.left(code.lastIndexOf('.'));
-    const QString baseUrl = QLatin1String("http://") + Constants::ORG_DOMAIN;
+    const QString baseUrl = QLatin1String("https://") + Constants::ORG_DOMAIN;
     const QString filesUrl = baseUrl + QLatin1String("/files/");
     url = filesUrl + unixName + QLatin1String("/") + code;
     webPage = baseUrl + QLatin1String("/") +  unixName;