<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/core, branch v5.86.0-rc1</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>GIT_SILENT: we can use std::as_const directly</title>
<updated>2021-08-28T16:05:30+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2021-08-28T16:05:30+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=dffdff73fa98a4fdebca38fb4a41938541ffb1c1'/>
<id>dffdff73fa98a4fdebca38fb4a41938541ffb1c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>KDesktopFile::isAuthorizedDesktopFile: reduce warning to info a log</title>
<updated>2021-08-26T09:11:28+00:00</updated>
<author>
<name>Méven Car</name>
<email>meven29@gmail.com</email>
</author>
<published>2021-08-25T08:56:41+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3259a6e6530cb0526bf71733ba28015f481f056e'/>
<id>3259a6e6530cb0526bf71733ba28015f481f056e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Port to QStrinView</title>
<updated>2021-08-18T13:41:16+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-08-18T13:26:07+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=4f8ed9b7815584afc59a9ea73bb401d9b4006d68'/>
<id>4f8ed9b7815584afc59a9ea73bb401d9b4006d68</id>
<content type='text'>
Now that KF requires Qt 5.15.2; this basically reverts commit 2e8742e64fc0
with some trivial changes.

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that KF requires Qt 5.15.2; this basically reverts commit 2e8742e64fc0
with some trivial changes.

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>clang-tidy: one declaration per line; braces around statements</title>
<updated>2021-08-13T00:12:26+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-08-13T00:10:47+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=783d1c28c88229f81715f6ecd1cf3866855252a2'/>
<id>783d1c28c88229f81715f6ecd1cf3866855252a2</id>
<content type='text'>
clang-tidy checks:
readability-isolate-declaration and readability-braces-around-statements

KF task: https://phabricator.kde.org/T14729

GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
clang-tidy checks:
readability-isolate-declaration and readability-braces-around-statements

KF task: https://phabricator.kde.org/T14729

GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>KConfig: sort keys in keyListImpl() so unittests can rely on it</title>
<updated>2021-08-03T10:01:15+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2021-06-23T10:34:53+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=17c179566d764d9a55b6ae98006495133bcffdbf'/>
<id>17c179566d764d9a55b6ae98006495133bcffdbf</id>
<content type='text'>
The code was using a QSet (hash-based), use a std::set instead
for unicity, it gives us sorting for free.

We probably want to do the same in groupList(), but that's separate.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code was using a QSet (hash-based), use a std::set instead
for unicity, it gives us sorting for free.

We probably want to do the same in groupList(), but that's separate.
</pre>
</div>
</content>
</entry>
<entry>
<title>KConfig: fix deletion of an entry that is also in kdeglobals</title>
<updated>2021-08-03T10:01:15+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2021-06-23T10:05:33+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=ed28682265bd95416a98d5ccc6a72e96563f84f3'/>
<id>ed28682265bd95416a98d5ccc6a72e96563f84f3</id>
<content type='text'>
This is the case where we expected to see Key[$d] in the config file,
and it was somehow broken. When saving, the key was omitted, so when
reloading the kdeglobals key was present again.

Detected when trying to write a unittest for a different patch...

I had to reshuffle the unittest a bit because testThreads calls
testSimple which didn't expect that the "[AAA]" group would actually
be deleted now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the case where we expected to see Key[$d] in the config file,
and it was somehow broken. When saving, the key was omitted, so when
reloading the kdeglobals key was present again.

Detected when trying to write a unittest for a different patch...

I had to reshuffle the unittest a bit because testThreads calls
testSimple which didn't expect that the "[AAA]" group would actually
be deleted now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos found by codespell</title>
<updated>2021-07-13T21:20:57+00:00</updated>
<author>
<name>Christophe Giboudeaux</name>
<email>christophe@krop.fr</email>
</author>
<published>2021-07-13T21:20:57+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3471f19fc56e41b2ee6236ea3016dfa30a76c0ff'/>
<id>3471f19fc56e41b2ee6236ea3016dfa30a76c0ff</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not create a vector and a QByteArray just to discard it immediately</title>
<updated>2021-07-05T13:51:02+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2021-07-04T22:41:51+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3c78617ac60dd8da2434fcbb7f61bd62d19492a7'/>
<id>3c78617ac60dd8da2434fcbb7f61bd62d19492a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Only query for existing config file when it's necessary</title>
<updated>2021-07-05T13:51:02+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2021-07-04T22:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=e74f28482253890d1c7e74fa51f087cc3310ce60'/>
<id>e74f28482253890d1c7e74fa51f087cc3310ce60</id>
<content type='text'>
We are only interested in whether the file doesn't exist when it fails
to open. This saves a stat on every successful config file parse.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We are only interested in whether the file doesn't exist when it fails
to open. This saves a stat on every successful config file parse.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use specific API to compare QByteArrays</title>
<updated>2021-07-04T22:50:28+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2021-07-04T22:33:27+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=57296d5c85a426918a634b15f814a7435b899d32'/>
<id>57296d5c85a426918a634b15f814a7435b899d32</id>
<content type='text'>
At the moment we are taking a bit of a detour by converting to char*.
Not a bit deal but reads better and ends up being less calls.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At the moment we are taking a bit of a detour by converting to char*.
Not a bit deal but reads better and ends up being less calls.
</pre>
</div>
</content>
</entry>
</feed>
