<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/core, branch v5.34.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Fix relativePath calculation in KDesktopFile::locateLocal()</title>
<updated>2017-04-25T21:37:11+00:00</updated>
<author>
<name>Wolfgang Bauer</name>
<email>wbauer@tmo.at</email>
</author>
<published>2017-04-25T21:37:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3ad00c4e56eb9fe6ea7386f8ca1db6e15c26ac11'/>
<id>3ad00c4e56eb9fe6ea7386f8ca1db6e15c26ac11</id>
<content type='text'>
The "dir" and "path" variables were obviously swapped here by mistake.
This resulted in the relativePath always being empty, and made the
function return "~/.local/share/" (or "~/.config/") instead of the
correct path.

BUG: 345100
FIXED-IN: 5.34.0
Differential Revision: https://phabricator.kde.org/D5502
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "dir" and "path" variables were obviously swapped here by mistake.
This resulted in the relativePath always being empty, and made the
function return "~/.local/share/" (or "~/.config/") instead of the
correct path.

BUG: 345100
FIXED-IN: 5.34.0
Differential Revision: https://phabricator.kde.org/D5502
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused QDateTime in KConfigBackend.</title>
<updated>2017-03-15T12:27:09+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-03-15T12:27:08+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=e1fd748982dc5c335aa66766c62aa4e4d5d1bc6c'/>
<id>e1fd748982dc5c335aa66766c62aa4e4d5d1bc6c</id>
<content type='text'>
Spotted because it leads to race conditions due to tzset
(surely a Qt bug, but anyway no point in finding out lastModified
for nothing).

While at it, remove the unused size field as well.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Spotted because it leads to race conditions due to tzset
(surely a Qt bug, but anyway no point in finding out lastModified
for nothing).

While at it, remove the unused size field as well.
</pre>
</div>
</content>
</entry>
<entry>
<title>Now that kconfigbackend.h isn't installed anymore, rename it to _p.h for clarity.</title>
<updated>2017-03-15T12:11:08+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-03-15T12:11:08+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=c5be11a789837095f587fadd684584b767e33ee9'/>
<id>c5be11a789837095f587fadd684584b767e33ee9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>avoid useless reallocs by removing squeeze call on temporary buffer</title>
<updated>2017-03-05T19:32:30+00:00</updated>
<author>
<name>Christoph Cullmann</name>
<email>cullmann@kde.org</email>
</author>
<published>2017-03-05T19:32:30+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=75fd07b5007473e61f3c39a82773524a392e4fa5'/>
<id>75fd07b5007473e61f3c39a82773524a392e4fa5</id>
<content type='text'>
Differential Revision: https://phabricator.kde.org/D4941
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Differential Revision: https://phabricator.kde.org/D4941
</pre>
</div>
</content>
</entry>
<entry>
<title>KConfig: stop exporting and installing KConfigBackend.</title>
<updated>2017-02-20T23:17:01+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-03-20T23:11:33+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=8d2a89836f0f78d8164df41bd08e61a4951d07b8'/>
<id>8d2a89836f0f78d8164df41bd08e61a4951d07b8</id>
<content type='text'>
Summary:
It can't possibly have been used anywhere, because it's not in the KConfig
API anywhere. The intended way to use this API was by providing a plugin
that would derive from KConfigBackend but the plugin loading code
in KConfigBackend::create has been disabled since before KF 5.0.

The reason I want to stop exporting this class is to be able to
optimize it (e.g. the QDateTime in it is completely unused but leads
to data races due to tzset)

Test Plan: Note, I'll rename it to _p.h if we agree, it would just have made this diff too big.

Reviewers: mdawson

Reviewed By: mdawson

Subscribers: #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D4604
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
It can't possibly have been used anywhere, because it's not in the KConfig
API anywhere. The intended way to use this API was by providing a plugin
that would derive from KConfigBackend but the plugin loading code
in KConfigBackend::create has been disabled since before KF 5.0.

The reason I want to stop exporting this class is to be able to
optimize it (e.g. the QDateTime in it is completely unused but leads
to data races due to tzset)

Test Plan: Note, I'll rename it to _p.h if we agree, it would just have made this diff too big.

Reviewers: mdawson

Reviewed By: mdawson

Subscribers: #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D4604
</pre>
</div>
</content>
</entry>
<entry>
<title>GIT_SILENT remove comment about this being a temp workaround.</title>
<updated>2017-02-14T06:54:55+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-02-14T06:54:55+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=160b8e42664d036427a4ab7b7a40a1e754f808ea'/>
<id>160b8e42664d036427a4ab7b7a40a1e754f808ea</id>
<content type='text'>
Even with 5.8 we need it, not due to QLockFile, but just due to mainConfigName(),
see unittest ksharedconfig_in_global_object
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Even with 5.8 we need it, not due to QLockFile, but just due to mainConfigName(),
see unittest ksharedconfig_in_global_object
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix linking on Windows: don't link kentrymaptest to KConfigCore.</title>
<updated>2017-02-04T17:46:24+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-02-04T17:46:24+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3cb4c615990b52d40564281a862b4e5a19fc7a1c'/>
<id>3cb4c615990b52d40564281a862b4e5a19fc7a1c</id>
<content type='text'>
It's not needed, this is purely a test for the standalone KEntryMap class.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's not needed, this is purely a test for the standalone KEntryMap class.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't export KEntryMap</title>
<updated>2017-02-04T12:50:26+00:00</updated>
<author>
<name>Stephen Kelly</name>
<email>steveire@gmail.com</email>
</author>
<published>2017-02-04T09:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=36e17c3d1c6a2b6af6cb7bb7330cb34b459b25fd'/>
<id>36e17c3d1c6a2b6af6cb7bb7330cb34b459b25fd</id>
<content type='text'>
It is internal.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is internal.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer nullptr over Q_NULLPTR</title>
<updated>2017-01-16T17:17:34+00:00</updated>
<author>
<name>Kevin Funk</name>
<email>kfunk@kde.org</email>
</author>
<published>2017-01-16T17:17:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2034e3ce7593f04d251b634bfe2d71b30f15ea3a'/>
<id>2034e3ce7593f04d251b634bfe2d71b30f15ea3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use nullptr everywhere</title>
<updated>2017-01-16T08:44:17+00:00</updated>
<author>
<name>Kevin Funk</name>
<email>kfunk@kde.org</email>
</author>
<published>2017-01-16T08:44:17+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=f83b4b191d627b010192e0715536cb57c25519fb'/>
<id>f83b4b191d627b010192e0715536cb57c25519fb</id>
<content type='text'>
Differential Revision: https://phabricator.kde.org/D3987
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Differential Revision: https://phabricator.kde.org/D3987
</pre>
</div>
</content>
</entry>
</feed>
