~online-accounts/libaccounts-qt/trunk

« back to all changes in this revision

Viewing changes to README.md

  • Committer: CI Train Bot
  • Author(s): Alberto Mardegan
  • Date: 2015-11-02 09:12:27 UTC
  • mfrom: (143.1.5 packaging)
  • Revision ID: ci-train-bot@canonical.com-20151102091227-725gswuwzt9azsja
New upstream release.

- Use gboolean instead of bool to g_object_get (fixes a stack corruption)
- Headers: remove unnecessary semicolon after namespace
- Docs: fix hint on destruction of Account and Service
- Fix memory leaks found by valgrind
  Fixes: https://code.google.com/p/accounts-sso/issues/detail?id=239
- Tests: make using a wrapper easier
  Tests can now be run with a command like:
    make check WRAPPER="valgrind --leak-check=full"

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Accounts management library for Qt applications
 
2
=================================================
 
3
 
 
4
This project is a library for managing accounts which can be used from Qt
 
5
applications. It is part of the @accounts-sso project.
 
6
 
 
7
 
 
8
License
 
9
-------
 
10
 
 
11
See COPYING file.
 
12
 
 
13
 
 
14
Build instructions
 
15
------------------
 
16
 
 
17
The project depends on Qt 5 and [libaccounts-glib](https://gitlab.com/accounts-sso/libaccounts-glib).
 
18
To build it, run:
 
19
```
 
20
qmake
 
21
make
 
22
make install
 
23
```