-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1) New setting allowing you to sort conversations from most-recent to least-recent. 2) Auto-refresh conversation view upon setting changed. 3) Progress indicator on startup and better progress indicator on export. 4) Performance improvements: Asynchronous image loading, ignore duplicate setting values. 5) Precompiled headers.
- Loading branch information
Showing
23 changed files
with
286 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
arm/Makefile | ||
arm/Makefile.Debug | ||
arm/Makefile.Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
QMAKE_TARGET = Exporter | ||
PROJECT_DIR := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) | ||
I18N_DIR := $(PROJECT_DIR)/translations | ||
|
||
include mk/cs-base.mk | ||
|
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
// This file is used to store precompiled headers. | ||
// It is intentionally left blank. It is up to you to decide which headers should be included here. | ||
#include <QFile> | ||
#include <QSettings> | ||
#include <QThreadPool> | ||
|
||
#include <bb/cascades/AbstractPane> | ||
#include <bb/cascades/Application> | ||
#include <bb/cascades/Control> | ||
#include <bb/cascades/QmlDocument> | ||
#include <bb/cascades/SceneCover> | ||
|
||
#include <bb/pim/contacts/ContactService> | ||
|
||
#include <bb/cascades/pickers/FilePicker> | ||
|
||
#include <bb/pim/account/AccountService> | ||
#include <bb/pim/message/MessageFilter> | ||
#include <bb/pim/message/MessageService> | ||
|
||
#include <bb/system/Clipboard> | ||
#include <bb/system/SystemProgressDialog> | ||
#include <bb/system/SystemToast> |
Oops, something went wrong.