1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
libaccounts-qt (1.13+20150813-1) unstable; urgency=medium
[ Maximiliano Curia ]
* Prepare Debian release. (1.13+20140905)
* Update copyright information.
[ Diane Trout ]
* Use upstream snapshot 207139e65e6707100d2e92d96b1a4c3bfaa88a5f
* Prepare Debian release (1.13+20150813)
* Add symbols files for libaccounts-qt1 and libaccounts-qt5-1
* Replace convience copy of jquery.js with link to system version
* Add libaccounts-qt-doc.doc-base to register documentation.
* Add myself to uploaders.
-- Diane Trout <diane@debian.org> Wed, 02 Sep 2015 22:28:46 -0700
libaccounts-qt (1.13+14.10.20140819.1-0ubuntu1) utopic; urgency=medium
[ Alberto Mardegan ]
* New upstream release.
- Add flag to suppress usage of D-Bus
[ Ubuntu daily release ]
* New rebuild forced
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 19 Aug 2014 14:46:28 +0000
libaccounts-qt (1.12+14.10.20140506.1-0ubuntu1) utopic; urgency=medium
[ Alberto Mardegan ]
* New upstream release.
- Make the lib easier to use with CMake by adding a Config.cmake file
This will allow CMake applications to use something like:
find_package(AccountsQt REQUIRED CONFIG)
- Application: add default constructor
Fixes: http://code.google.com/p/accounts-sso/issues/detail?id=211
* New upstream release.
- Add CMake config files for the Qt5 build
- Add Provider::domainsRegExp()
- Provider: do not unreference a NULL AgProvider
[ Ubuntu daily release ]
* New rebuild forced
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 06 May 2014 12:55:05 +0000
libaccounts-qt (1.11+14.04.20140410.1-0ubuntu1) trusty; urgency=low
[ Ćukasz 'sil2100' Zemczak ]
* Fix file conflicts in the -dev packages. As recommended by upstream,
we only ship the cmake files for the -qt-dev package, as soon they
will add specific variants for every Qt version
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 10 Apr 2014 16:34:07 +0000
libaccounts-qt (1.11+14.04.20140307-0ubuntu1) trusty; urgency=medium
[ Alberto Mardegan ]
* New upstream release.
- Make the lib easier to use with CMake by adding a Config.cmake file
This will allow CMake applications to use something like:
find_package(AccountsQt REQUIRED CONFIG)
- Application: add default constructor
Fixes: http://code.google.com/p/accounts-sso/issues/detail?id=211
[ CI bot ]
* No change rebuild against Qt 5.2.1.
[ Ubuntu daily release ]
* New rebuild forced
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 07 Mar 2014 10:38:59 +0000
libaccounts-qt (1.10+13.10.20131016.1-0ubuntu1) saucy; urgency=low
[ Alberto Mardegan ]
* New upstream release.
- Add Provider::isSingleAccount()
Fixes: http://code.google.com/p/accounts-sso/issues/detail?id=202
[ Ubuntu daily release ]
* Automatic snapshot from revision 133
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 16 Oct 2013 14:15:20 +0000
libaccounts-qt (1.9+13.10.20130904-0ubuntu1) saucy; urgency=low
[ Alberto Mardegan ]
* New upstream release.
- Application: add a method to return the .desktop file
- Add Account::isEnabled(), along with the existing Account::enabled()
[ Ubuntu daily release ]
* Automatic snapshot from revision 131
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 04 Sep 2013 16:05:18 +0000
libaccounts-qt (1.8daily13.06.18-0ubuntu1) saucy; urgency=low
[ Alberto Mardegan ]
* New upstream release.
- Add Application::displayName() and Application::iconName()
- Add Provider::description() and Provider::pluginName()
- Tests: fix service tags tests
[ Ubuntu daily release ]
* Automatic snapshot from revision 129
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 18 Jun 2013 04:31:06 +0000
libaccounts-qt (1.7daily13.06.05.1-0ubuntu1) saucy; urgency=low
* Automatic snapshot from revision 127
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 05 Jun 2013 18:49:09 +0000
libaccounts-qt (1.7daily13.05.01.1ubuntu.unity.next-0ubuntu1) raring; urgency=low
[ Alberto Mardegan ]
* New upstream release.
- Add a new constructor to the Account class:
Account(Manager *mgr, const QString &provider, QObject *parent);
- Add a static method
Account *Account::fromId(Manager *, AccountId id, QObject *parent)
to replicate the existing Manager::account() method, but with a more
clear ownership of the created object, which will not be a child of the
Manager (and therefore won't be destroyed with it).
- Slightly change the semantics of Manager::account(): if an account for
that ID has already been instantiated (and is still alive), return the
same object.
- Make AccountService::account() return the same account which was used to
instantiate the AccountService object.
- Do not initialize QString to NULL
(patch by Jaroslav Reznik <jreznik@redhat.com>)
[ Ubuntu daily release ]
* Automatic snapshot from revision 126 (ubuntu-unity/next)
-- Ubuntu daily release <ps-jenkins@lists.canonical.com> Wed, 01 May 2013 07:51:06 +0000
libaccounts-qt (1.6bzr13.02.27-0ubuntu2) UNRELEASED; urgency=low
* Automatic snapshot from revision 124 (bootstrap)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 26 Apr 2013 14:08:59 -0400
libaccounts-qt (1.6bzr13.02.27-0ubuntu1) raring; urgency=low
* New upstream release.
- Make libaccounts-qt compile with QT_NO_KEYWORDS
- Tests: increase coverage (now 93%)
- Make AccountService::account() always return a valid account
- Remove excessive debug verbosity
- Fixed pkg-config requires for accounts-qt5
- Documentation fixes for out-of-tree builds
- Remove default value from AccountService::value()
- Add Account::provider()
- AccountService: add a constructor with a parent QObject
- Tests: use dbus-test-runner if available
- Do not instantiate Error before Q_DECLARE_METATYPE
* debian/control
- build depend on qtchooser
- add new binaries for qt5 builds, libaccounts-qt5-1 and libaccounts-qt5-dev
- add build depends for qt5 builds
* debian/rules
- dual build for qt4 and qt5
[ Robert Bruce Park ]
* Inline packaging metadata.
-- Ken VanDine <ken.vandine@canonical.com> Wed, 27 Feb 2013 13:35:12 -0500
libaccounts-qt (1.4-0ubuntu1) raring; urgency=low
* New upstream release.
- Build with Qt5 (as well as with Qt4)
- Add support for string list values
- Stop using deprecated APIs from libaccounts-glib
- Remove account-tool
- Remove accounts.prf (pkg-config should be used instead)
-- Ken VanDine <ken.vandine@canonical.com> Fri, 18 Jan 2013 09:28:10 -0500
libaccounts-qt (1.3-0ubuntu1) raring; urgency=low
* New upstream release.
-- Ken VanDine <ken.vandine@canonical.com> Fri, 09 Nov 2012 10:32:11 -0500
libaccounts-qt (1.2-0ubuntu2) quantal; urgency=low
* debian/control
- added build depends for dbus-test-runner
* debian/rules
- enable tests and use dbus-test-runner to run them
-- Ken VanDine <ken.vandine@canonical.com> Mon, 06 Aug 2012 16:17:28 -0400
libaccounts-qt (1.2-0ubuntu1) quantal; urgency=low
* New upstream release
-- Ken VanDine <ken.vandine@canonical.com> Thu, 02 Aug 2012 14:40:00 -0400
libaccounts-qt (1.1++bzr78-0quantal1) quantal; urgency=low
* snapshot based on r78
-- Ken VanDine <ken.vandine@canonical.com> Mon, 16 Jul 2012 11:31:32 -0400
libaccounts-qt (1.1++bzr77-0quantal1) quantal; urgency=low
* rebuild for quantal
-- Ken VanDine <ken.vandine@canonical.com> Mon, 16 Jul 2012 10:11:39 -0400
libaccounts-qt (1.1++bzr77-0precise5) precise; urgency=low
* debian/control
- added build depends for qt4-dev-tools, needed for doc generation
-- Ken VanDine <ken.vandine@canonical.com> Fri, 22 Jun 2012 12:59:56 -0400
libaccounts-qt (1.1++bzr77-0precise4) precise; urgency=low
* debian/rules
- disable tests
-- Ken VanDine <ken.vandine@canonical.com> Fri, 15 Jun 2012 22:45:52 -0400
libaccounts-qt (1.1++bzr77-0precise3) precise; urgency=low
* no change rebuild
-- Ken VanDine <ken.vandine@canonical.com> Fri, 15 Jun 2012 16:49:32 -0400
libaccounts-qt (1.1++bzr77-0precise2) precise; urgency=low
* debian/control, debian/rules
- added -dbg package
-- Ken VanDine <ken.vandine@canonical.com> Mon, 26 Mar 2012 15:38:41 -0400
libaccounts-qt (1.1++bzr77-0precise1) precise; urgency=low
* snapshot based on r77
-- Ken VanDine <ken.vandine@canonical.com> Mon, 19 Mar 2012 11:16:50 -0400
libaccounts-qt (1.1-0precise2) precise; urgency=low
* Converted to native package
-- Ken VanDine <ken.vandine@canonical.com> Tue, 31 Jan 2012 16:46:31 -0500
libaccounts-qt (1.1-0precise1) precise; urgency=low
* Initial release
-- Ken VanDine <ken.vandine@canonical.com> Fri, 06 Jan 2012 10:07:38 -0500
|