1.0.0 release

This commit is contained in:
mkiol 2014-03-22 15:45:37 +01:00
parent 9430865bb7
commit 81dda5a9af
22 changed files with 84 additions and 27 deletions

Binary file not shown.

View file

@ -32,6 +32,19 @@
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ControlBarWebPreview</name>
<message>
<location filename="../qml/ControlBarWebPreview.qml" line="114"/>
<source>Switching to Online mode!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/ControlBarWebPreview.qml" line="116"/>
<source>Switching to Offline mode!</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CoverPage</name>
<message>
@ -111,7 +124,7 @@
<message>
<location filename="../qml/EntryPage.qml" line="55"/>
<source>Network connection is unavailable.
Switching to Offline mode</source>
Switching to Offline mode!</source>
<translation type="unfinished"></translation>
</message>
<message>
@ -278,6 +291,16 @@ Switching to Offline mode</source>
<source>Offline viewer style</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/SettingsPage.qml" line="197"/>
<source>Black</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/SettingsPage.qml" line="198"/>
<source>White</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SignInDialog</name>
@ -293,12 +316,12 @@ Switching to Offline mode</source>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="48"/>
<source>Enter username (email) here!</source>
<source>Enter username here!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="49"/>
<source>Netvibes&apos;s username (email)</source>
<source>Netvibes&apos;s username</source>
<translation type="unfinished"></translation>
</message>
<message>

Binary file not shown.

View file

@ -36,6 +36,19 @@
<translation>Tryb Online</translation>
</message>
</context>
<context>
<name>ControlBarWebPreview</name>
<message>
<location filename="../qml/ControlBarWebPreview.qml" line="114"/>
<source>Switching to Online mode!</source>
<translation>Został włączony tryb Online!</translation>
</message>
<message>
<location filename="../qml/ControlBarWebPreview.qml" line="116"/>
<source>Switching to Offline mode!</source>
<translation>Został włączony tryb Offline!</translation>
</message>
</context>
<context>
<name>CoverPage</name>
<message>
@ -113,11 +126,17 @@
<context>
<name>EntryPage</name>
<message>
<location filename="../qml/EntryPage.qml" line="55"/>
<source>Network connection is unavailable.
Switching to Offline mode</source>
<translation>Brak połączenia sieciowego.
<translation type="obsolete">Brak połączenia sieciowego.
Został włączony tryb Offline</translation>
</message>
<message>
<location filename="../qml/EntryPage.qml" line="55"/>
<source>Network connection is unavailable.
Switching to Offline mode!</source>
<translation>Brak połączenia sieciowego.
Został włączony tryb Offline!</translation>
</message>
<message>
<location filename="../qml/EntryPage.qml" line="76"/>
@ -306,6 +325,16 @@ Został włączony tryb Offline</translation>
<source>Show icons</source>
<translation>Pokazuj ikony</translation>
</message>
<message>
<location filename="../qml/SettingsPage.qml" line="197"/>
<source>Black</source>
<translation>Czarny</translation>
</message>
<message>
<location filename="../qml/SettingsPage.qml" line="198"/>
<source>White</source>
<translation>Biały</translation>
</message>
<message>
<source>User Interface</source>
<translation type="obsolete">Interfejs</translation>
@ -341,22 +370,22 @@ Został włączony tryb Offline</translation>
<translation>Zaloguj</translation>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="48"/>
<source>Enter username (email) here!</source>
<translation>Wprowadź nazwę użytkownika (email)!</translation>
<translation type="obsolete">Wprowadź nazwę użytkownika (email)!</translation>
</message>
<message>
<source>Netvibes&apos;s username (email)</source>
<translation type="obsolete">Nazwa użytkownika Netvibes (email)</translation>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="48"/>
<source>Enter username here!</source>
<translation>Wprowadź nazwę użytkownika!</translation>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="49"/>
<source>Netvibes&apos;s username (email)</source>
<translation>Nazwa użytkownika Netvibes (email)</translation>
</message>
<message>
<source>Enter username here!</source>
<translation type="obsolete">Wprowadź nazwę użytkownika!</translation>
</message>
<message>
<source>Netvibes&apos;s username</source>
<translation type="obsolete">Nazwa użytkownika Netvibes</translation>
<translation>Nazwa użytkownika Netvibes</translation>
</message>
<message>
<location filename="../qml/SignInDialog.qml" line="66"/>

View file

@ -109,7 +109,13 @@ Column {
anchors.right: parent.right; anchors.rightMargin: Theme.paddingMedium
anchors.verticalCenter: parent.verticalCenter
icon.source: offLineMode ? "image://theme/icon-m-wlan-no-signal?"+Theme.highlightDimmerColor : "image://theme/icon-m-wlan-4?"+Theme.highlightDimmerColor
onClicked: offLineMode = !offLineMode;
onClicked: {
if (offLineMode)
notification.show(qsTr("Switching to Online mode!"));
else
notification.show(qsTr("Switching to Offline mode!"));
offLineMode = !offLineMode;
}
}
MouseArea {

View file

@ -52,7 +52,7 @@ Page {
onClicked: {
// Switch to Offline mode if no network
if (!dm.isOnline()) {
notification.show(qsTr("Network connection is unavailable.\nSwitching to Offline mode"));
notification.show(qsTr("Network connection is unavailable.\nSwitching to Offline mode!"));
offLineMode = true;
}
expanded = false;

View file

@ -194,8 +194,8 @@ Page {
return 1;
}
menu: ContextMenu {
MenuItem { id: blackTheme; text: "Black" }
MenuItem { id: whiteTheme; text: "White" }
MenuItem { id: blackTheme; text: qsTr("Black") }
MenuItem { id: whiteTheme; text: qsTr("White") }
}
onCurrentIndexChanged: {

View file

@ -45,8 +45,8 @@ Dialog {
anchors.left: parent.left; anchors.right: parent.right
inputMethodHints: Qt.ImhEmailCharactersOnly| Qt.ImhNoAutoUppercase | Qt.ImhNoPredictiveText
placeholderText: qsTr("Enter username (email) here!")
label: qsTr("Netvibes's username (email)")
placeholderText: qsTr("Enter username here!")
label: qsTr("Netvibes's username")
Component.onCompleted: {
text = settings.getNetvibesUsername();

View file

@ -33,7 +33,7 @@ Page {
property bool read
property int index
property int feedindex
property int markAsReadTime: 6000
property int markAsReadTime: 4000
onForwardNavigationChanged: {
if (forwardNavigation)

BIN
screenshots/kaktus-00.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 642 KiB

BIN
screenshots/kaktus-01.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 KiB

BIN
screenshots/kaktus-02.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 KiB

BIN
screenshots/kaktus-03.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 KiB

BIN
screenshots/kaktus-04.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 KiB

BIN
screenshots/kaktus-05.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

BIN
screenshots/kaktus-06.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 KiB

BIN
screenshots/kaktus-07.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 KiB

BIN
screenshots/kaktus-08.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 KiB

BIN
screenshots/kaktus-09.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 KiB

View file

@ -158,8 +158,7 @@ void DownloadManager::downloadFinished(QNetworkReply *reply)
QUrl url = reply->url();
QNetworkReply::NetworkError error = reply->error();
DatabaseManager::CacheItem item = replyToCachedItemMap.value(reply);
DatabaseManager::CacheItem item = replyToCachedItemMap.take(reply);
delete replyToCheckerMap.take(reply);
if (error) {
@ -222,7 +221,7 @@ void DownloadManager::downloadFinished(QNetworkReply *reply)
item.finalUrl = url.resolved(reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl()).toString();
//qDebug() << "RedirectionTarget: " << url.toString() << "entryId" << item.entryId;
downloads.removeOne(reply);
replyToCachedItemMap.remove(reply);
//replyToCachedItemMap.remove(reply);
addDownload(item);
reply->deleteLater();
return;

View file

@ -37,7 +37,7 @@
#include "settings.h"
static const char *APP_NAME = "Kaktus";
static const char *VERSION = "0.9.9";
static const char *VERSION = "1.0.0";
static const char *AUTHOR = "Michał Kościesza <michal@mkiol.net>";
static const char *PAGE = "https://github/mkiol/kaktus";