provider.h | provider.h | |||
---|---|---|---|---|
skipping to change at line 86 | skipping to change at line 86 | |||
QString name() const; | QString name() const; | |||
enum SortMode { | enum SortMode { | |||
Newest, | Newest, | |||
Alphabetical, | Alphabetical, | |||
Rating, | Rating, | |||
Downloads | Downloads | |||
}; | }; | |||
bool hasCredentials(); | bool hasCredentials(); | |||
bool hasCredentials() const; | ||||
bool loadCredentials(QString& user, QString& password); | bool loadCredentials(QString& user, QString& password); | |||
bool saveCredentials(const QString& user, const QString& password); | bool saveCredentials(const QString& user, const QString& password); | |||
PostJob* checkLogin(const QString& user, const QString& password); | PostJob* checkLogin(const QString& user, const QString& password); | |||
// Person part of OCS | // Person part of OCS | |||
PostJob* registerAccount(const QString& id, const QString& password, co nst QString& mail, const QString& firstName, const QString& lastName); | PostJob* registerAccount(const QString& id, const QString& password, co nst QString& mail, const QString& firstName, const QString& lastName); | |||
ItemJob<Person>* requestPerson(const QString& id); | ItemJob<Person>* requestPerson(const QString& id); | |||
ItemJob<Person>* requestPersonSelf(); | ItemJob<Person>* requestPersonSelf(); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
* Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#ifndef _ATTICA_VERSION_H_ | #ifndef _ATTICA_VERSION_H_ | |||
#define _ATTICA_VERSION_H_ | #define _ATTICA_VERSION_H_ | |||
#include "atticaclient_export.h" | #include "atticaclient_export.h" | |||
/// @brief Attica version as string at compile time. | /// @brief Attica version as string at compile time. | |||
#define LIBATTICA_VERSION_STRING "0.1.1" | #define LIBATTICA_VERSION_STRING "0.1.2" | |||
/// @brief The major Attica version number at compile time | /// @brief The major Attica version number at compile time | |||
#define LIBATTICA_VERSION_MAJOR 0 | #define LIBATTICA_VERSION_MAJOR 0 | |||
/// @brief The minor Attica version number at compile time | /// @brief The minor Attica version number at compile time | |||
#define LIBATTICA_VERSION_MINOR 1 | #define LIBATTICA_VERSION_MINOR 1 | |||
/// @brief The Attica release version number at compile time | /// @brief The Attica release version number at compile time | |||
#define LIBATTICA_VERSION_RELEASE | #define LIBATTICA_VERSION_RELEASE | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||