<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/core, branch v5.43.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Deprecate KDesktopFile::sortOrder()</title>
<updated>2017-12-06T10:55:18+00:00</updated>
<author>
<name>Alexander Volkov</name>
<email>a.volkov@rusbitech.ru</email>
</author>
<published>2017-12-06T10:33:48+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=a69d8e562b6e91844f7e51b0b6c0545cc54ae840'/>
<id>a69d8e562b6e91844f7e51b0b6c0545cc54ae840</id>
<content type='text'>
Summary:
The SortOrder key is deprecated by the Desktop Entry Specification:
https://standards.freedesktop.org/desktop-entry-spec/latest/apc.html

Reviewers: dfaure, #frameworks

Reviewed By: dfaure

Subscribers: #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D9224
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
The SortOrder key is deprecated by the Desktop Entry Specification:
https://standards.freedesktop.org/desktop-entry-spec/latest/apc.html

Reviewers: dfaure, #frameworks

Reviewed By: dfaure

Subscribers: #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D9224
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the result of KDesktopFile::sortOrder()</title>
<updated>2017-12-06T10:01:02+00:00</updated>
<author>
<name>Alexander Volkov</name>
<email>a.volkov@rusbitech.ru</email>
</author>
<published>2017-11-07T10:47:01+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=d328dd6ac7250c4453ff2dc5d8c9c13ac3b236bc'/>
<id>d328dd6ac7250c4453ff2dc5d8c9c13ac3b236bc</id>
<content type='text'>
Summary:
KDesktopFile::sortOrder() returns the value of SortOrder key
as a string whithout parsing it as a list.
But according to Desktop Entry Specification
https://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
it's type is "string(s)", i.e. the same type as the type of
Actions and MimeType keys, and thus it should be read the same way.

Reviewers: #frameworks, dfaure

Reviewed By: dfaure

Subscribers: dfaure, #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D8689
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
KDesktopFile::sortOrder() returns the value of SortOrder key
as a string whithout parsing it as a list.
But according to Desktop Entry Specification
https://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
it's type is "string(s)", i.e. the same type as the type of
Actions and MimeType keys, and thus it should be read the same way.

Reviewers: #frameworks, dfaure

Reviewed By: dfaure

Subscribers: dfaure, #frameworks

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D8689
</pre>
</div>
</content>
</entry>
<entry>
<title>GIT_SILENT repair indentation</title>
<updated>2017-12-02T08:57:54+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2017-12-02T08:57:54+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=62dd178d783ca08ebe757813fa3f31cfd3d2009a'/>
<id>62dd178d783ca08ebe757813fa3f31cfd3d2009a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Q_FALLTHROUGH</title>
<updated>2017-11-30T11:03:49+00:00</updated>
<author>
<name>Montel Laurent</name>
<email>montel@kde.org</email>
</author>
<published>2017-11-30T11:03:49+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=61995dafce78c1065d4eacba81673a7959a96cc9'/>
<id>61995dafce78c1065d4eacba81673a7959a96cc9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't look for /etc/kderc every single time</title>
<updated>2017-11-20T12:09:57+00:00</updated>
<author>
<name>Aleix Pol</name>
<email>aleixpol@kde.org</email>
</author>
<published>2017-11-17T16:47:29+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=f1e5d65ec12884c7e0f08b3bbec7b327fa116b03'/>
<id>f1e5d65ec12884c7e0f08b3bbec7b327fa116b03</id>
<content type='text'>
Summary:
Every time we open a configuration file, we are checking if this file is there.
Since it's a sysadmin setting I'd say it's fine to assume that it's not appearing
and disappearing.
Also we are not supporting the case of the file changing during runtime or so.

Reviewers: #frameworks, mpyne, dfaure

Reviewed By: mpyne, dfaure

Subscribers: dfaure, mpyne

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D8871
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
Every time we open a configuration file, we are checking if this file is there.
Since it's a sysadmin setting I'd say it's fine to assume that it's not appearing
and disappearing.
Also we are not supporting the case of the file changing during runtime or so.

Reviewers: #frameworks, mpyne, dfaure

Reviewed By: mpyne, dfaure

Subscribers: dfaure, mpyne

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D8871
</pre>
</div>
</content>
</entry>
<entry>
<title>[KConfigGroup] reserve() more and add some C++11</title>
<updated>2017-09-21T08:42:28+00:00</updated>
<author>
<name>Kai Uwe Broulik</name>
<email>kde@privat.broulik.de</email>
</author>
<published>2017-09-21T08:42:28+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=fb15e56857cafd3788ef512db173194e18b75229'/>
<id>fb15e56857cafd3788ef512db173194e18b75229</id>
<content type='text'>
Using initializer_lists for QList we reserve the right amount of memory in advance and also make for nicer code.
Also uses range-for where code was touched and a const container used.

Differential Revision: https://phabricator.kde.org/D7879
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using initializer_lists for QList we reserve the right amount of memory in advance and also make for nicer code.
Also uses range-for where code was touched and a const container used.

Differential Revision: https://phabricator.kde.org/D7879
</pre>
</div>
</content>
</entry>
<entry>
<title>kconfigini: Strip leading whitespace when reading entry values.</title>
<updated>2017-08-09T03:40:45+00:00</updated>
<author>
<name>Michael Pyne</name>
<email>mpyne@kde.org</email>
</author>
<published>2017-08-07T02:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=11ee92d92b1e9875a2707848324012fe881bf893'/>
<id>11ee92d92b1e9875a2707848324012fe881bf893</id>
<content type='text'>
As per the Desktop Entry spec, we strip trailing whitespace from the key
when we split an entry into a key/value pair at the '='.  Now we also
strip leading whitespace from the resulting value like we should.

CCBUG:310674

Differential Revision: https://phabricator.kde.org/D7169
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As per the Desktop Entry spec, we strip trailing whitespace from the key
when we split an entry into a key/value pair at the '='.  Now we also
strip leading whitespace from the resulting value like we should.

CCBUG:310674

Differential Revision: https://phabricator.kde.org/D7169
</pre>
</div>
</content>
</entry>
<entry>
<title>KAuthorized: Fix API documentation for authorizeAction()</title>
<updated>2017-08-08T20:06:36+00:00</updated>
<author>
<name>Dominik Haumann</name>
<email>dhaumann@kde.org</email>
</author>
<published>2017-08-08T20:06:26+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=4f096fd6466a8b5d1e05bbae593f3028fb4ef65a'/>
<id>4f096fd6466a8b5d1e05bbae593f3028fb4ef65a</id>
<content type='text'>
Differential Revision: https://phabricator.kde.org/D7210
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Differential Revision: https://phabricator.kde.org/D7210
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to build KConfig without Qt5Gui</title>
<updated>2017-08-04T16:54:42+00:00</updated>
<author>
<name>Volker Krause</name>
<email>vkrause@kde.org</email>
</author>
<published>2017-07-30T13:47:29+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=ba75a6c6a0231f93fd40480992beec46b0f64885'/>
<id>ba75a6c6a0231f93fd40480992beec46b0f64885</id>
<content type='text'>
Summary:
This is particularly useful for cross-compilation, where we only need the
kconfig_compiler on the host system.

Reviewers: #frameworks, apol, aacid

Reviewed By: aacid

Subscribers: aacid

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D6994
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Summary:
This is particularly useful for cross-compilation, where we only need the
kconfig_compiler on the host system.

Reviewers: #frameworks, apol, aacid

Reviewed By: aacid

Subscribers: aacid

Tags: #frameworks

Differential Revision: https://phabricator.kde.org/D6994
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN_SILENT made messages (.desktop file) - always resolve ours</title>
<updated>2017-07-07T02:33:03+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2017-07-07T02:33:03+00:00</published>
<link rel='alternate' type='text/html' href='https://dynamicmalloc.com/cgit/kconfig.git/commit/?id=0664e644d6aed666a2465ecb5f3eb852d6fdc6b8'/>
<id>0664e644d6aed666a2465ecb5f3eb852d6fdc6b8</id>
<content type='text'>
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
</pre>
</div>
</content>
</entry>
</feed>
