Screenshots update

This commit is contained in:
muki 2015-01-12 22:13:51 +01:00
parent 925b2311f5
commit 89dacf3c62
8 changed files with 165 additions and 0 deletions

89
meego-kaktus.pro Normal file
View file

@ -0,0 +1,89 @@
TARGET = kaktus
QT += core network sql
CONFIG += qdeclarative-boostable
DEFINES += MEEGO_EDITION_HARMATTAN
DEFINES += ONLINE_CHECK
SOURCES += \
src/main_meego.cpp \
src/utils.cpp \
src/tabmodel.cpp \
src/netvibesfetcher.cpp \
src/listmodel.cpp \
src/feedmodel.cpp \
src/entrymodel.cpp \
src/downloadmanager.cpp \
src/databasemanager.cpp \
src/dashboardmodel.cpp \
src/cacheserver.cpp \
src/settings.cpp \
src/simplecrypt.cpp \
src/customnetworkaccessmanager.cpp \
src/networkaccessmanagerfactory.cpp
HEADERS += \
src/utils.h \
src/tabmodel.h \
src/netvibesfetcher.h \
src/listmodel.h \
src/feedmodel.h \
src/entrymodel.h \
src/downloadmanager.h \
src/databasemanager.h \
src/dashboardmodel.h \
src/cacheserver.h \
src/settings.h \
src/simplecrypt.h \
key.h \
src/customnetworkaccessmanager.h \
src/networkaccessmanagerfactory.h
#QJson if Qt < 5
lessThan(QT_MAJOR_VERSION, 5) {
include(./QJson/json.pri)
}
# QHttpServer
include(qhttpserver/qhttpserver.pri)
folder_01.source = qml/harmattan
folder_01.target = qml
DEPLOYMENTFOLDERS += folder_01
folder_02.source = qml/symbian
folder_02.target = qml
DEPLOYMENTFOLDERS += folder_02
#*folder_03.source = qml/sailfish
#folder_03.target = qml
#DEPLOYMENTFOLDERS += folder_03
include(qmlapplicationviewer/qmlapplicationviewer.pri)
qtcAddDeployment()
OTHER_FILES += \
qtc_packaging/debian_harmattan/changelog \
i18n_paths.lst \
i18n_ts.lst \
lupdate.sh \
i18n/kaktus_en.ts \
i18n/kaktus_pl.ts \
i18n/kaktus_fa.ts \
i18n/kaktus_ru.ts \
i18n/kaktus_cs.ts \
i18n/kaktus_nl.ts
CODECFORTR = UTF-8
TRANSLATIONS = i18n/kaktus_en.ts \
i18n/kaktus_pl.ts \
i18n/kaktus_fa.ts \
i18n/kaktus_ru.ts \
i18n/kaktus_cs.ts \
i18n/kaktus_nl.ts
RESOURCES += resources.qrc

Binary file not shown.

Before

Width:  |  Height:  |  Size: 657 KiB

After

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 675 KiB

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 826 KiB

After

Width:  |  Height:  |  Size: 445 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

After

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 512 KiB

After

Width:  |  Height:  |  Size: 353 KiB

76
symbian-kaktus.pro Normal file
View file

@ -0,0 +1,76 @@
# Add more folders to ship with the application, here
folder_01.source = qml/kaktus
folder_01.target = qml
DEPLOYMENTFOLDERS = folder_01
QT += core network sql
symbian {
TARGET.UID3 = 0xE7EAC7DC
TARGET.CAPABILITY += NetworkServices
DEPLOYMENT.display_name = "Kaktus"
VERSION = 1.2.2
ICON = kaktus.svg
}
# Add dependency to Symbian components
CONFIG += qt-components
#DEFINES += ONLINE_CHECK
#QJson if Qt < 5
lessThan(QT_MAJOR_VERSION, 5) {
include(./QJson/json.pri)
}
# QHttpServer
include(qhttpserver/qhttpserver.pri)
SOURCES += \
src/main_symbian.cpp \
src/utils.cpp \
src/tabmodel.cpp \
src/netvibesfetcher.cpp \
src/listmodel.cpp \
src/feedmodel.cpp \
src/entrymodel.cpp \
src/downloadmanager.cpp \
src/databasemanager.cpp \
src/dashboardmodel.cpp \
src/cacheserver.cpp \
src/settings.cpp \
src/simplecrypt.cpp \
src/customnetworkaccessmanager.cpp \
src/networkaccessmanagerfactory.cpp
HEADERS += \
src/utils.h \
src/tabmodel.h \
src/netvibesfetcher.h \
src/listmodel.h \
src/feedmodel.h \
src/entrymodel.h \
src/downloadmanager.h \
src/databasemanager.h \
src/dashboardmodel.h \
src/cacheserver.h \
src/settings.h \
src/simplecrypt.h \
key.h \
src/customnetworkaccessmanager.h \
src/networkaccessmanagerfactory.h
CODECFORTR = UTF-8
TRANSLATIONS = i18n/kaktus_en.ts \
i18n/kaktus_pl.ts \
i18n/kaktus_fa.ts \
i18n/kaktus_ru.ts \
i18n/kaktus_nl.ts \
i18n/kaktus_cs.ts
RESOURCES += resources.qrc
# Please do not modify the following two lines. Required for deployment.
include(qmlapplicationviewer/qmlapplicationviewer.pri)
qtcAddDeployment()