<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/core, branch v5.82.0-rc1</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Make the docs state that KConfig::reparseConfiguration() calls sync() if needed</title>
<updated>2021-04-28T13:26:02+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-04-28T13:26:02+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=50ae3700dc57e53c3583b3afc9661fdb8932ad03'/>
<id>50ae3700dc57e53c3583b3afc9661fdb8932ad03</id>
<content type='text'>
This matches the method actually does, and makes it clearer that you don't
need to do config-&gt;sync() followed by config()-&gt;reparseConfiguration(), the
latter should suffice.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This matches the method actually does, and makes it clearer that you don't
need to do config-&gt;sync() followed by config()-&gt;reparseConfiguration(), the
latter should suffice.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use new version-controlled enumerator deprecation warning macros</title>
<updated>2021-04-26T17:21:43+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2021-04-26T17:21:43+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=17ce440211de8d72b683b25dae89ee6b7c9dc69d'/>
<id>17ce440211de8d72b683b25dae89ee6b7c9dc69d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Deprecate KDesktopFile::readDevice()</title>
<updated>2021-04-18T21:05:32+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-04-18T19:46:56+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=533ff88a5430655f3b969b3e1a86ac71064c57ef'/>
<id>533ff88a5430655f3b969b3e1a86ac71064c57ef</id>
<content type='text'>
Since the FSDevice .desktop template hasn't been installed for a long time,
this method in KDesktopFile hasn't been useful. The whole FSDesktop concept
seems to be redundant nowadays, since CDRom and Floppy drives have been replaced
by USB sticks.

See this KF6 taks for more details:
https://phabricator.kde.org/T14295#253759
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since the FSDevice .desktop template hasn't been installed for a long time,
this method in KDesktopFile hasn't been useful. The whole FSDesktop concept
seems to be redundant nowadays, since CDRom and Floppy drives have been replaced
by USB sticks.

See this KF6 taks for more details:
https://phabricator.kde.org/T14295#253759
</pre>
</div>
</content>
</entry>
<entry>
<title>KConfig: rename kconfigdata.h to kconfigdata_p.h</title>
<updated>2021-04-15T10:02:10+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2021-04-15T10:02:09+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=163cebc7065cd85650f45e93203b3ea8dd82f652'/>
<id>163cebc7065cd85650f45e93203b3ea8dd82f652</id>
<content type='text'>
It's internal, the symbols are not exported, the header is not installed.

The _p.h naming makes this more obvious, when grepping for stuff in
public API.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's internal, the symbols are not exported, the header is not installed.

The _p.h naming makes this more obvious, when grepping for stuff in
public API.
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor code optimisation</title>
<updated>2021-03-05T23:35:08+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T22:37:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=9d87348260316af729892c58bc29f159a173abf1'/>
<id>9d87348260316af729892c58bc29f159a173abf1</id>
<content type='text'>
- Use more range-for loops where appropriate
- Use auto instead of the usually-long iterator type names
- Use cbegin/cend(), to match the std:: containers, less confusion
- Use qDeleteAll instead of a for loop
- Make a QRE with a long-ish pattern static

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use more range-for loops where appropriate
- Use auto instead of the usually-long iterator type names
- Use cbegin/cend(), to match the std:: containers, less confusion
- Use qDeleteAll instead of a for loop
- Make a QRE with a long-ish pattern static

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Optimise string operations a bit</title>
<updated>2021-03-05T23:33:45+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T20:38:43+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=ee35bdce8f6b08922b4c9e0c0c838e5f2c4a79ad'/>
<id>ee35bdce8f6b08922b4c9e0c0c838e5f2c4a79ad</id>
<content type='text'>
- Use QString::arg(Args...) instead of .arg().arg()
- Use QLatin1String for string comparisons, should be faster
- Use QLatin1String::arg() for better readability

- Add the comment dfaure suggested in the MR, to explain why it's '2%'
  then '%1' in a QString().arg().arg()

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use QString::arg(Args...) instead of .arg().arg()
- Use QLatin1String for string comparisons, should be faster
- Use QLatin1String::arg() for better readability

- Add the comment dfaure suggested in the MR, to explain why it's '2%'
  then '%1' in a QString().arg().arg()

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Make QByteArray -&gt; char* conversion explicit</title>
<updated>2021-02-28T20:44:33+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2021-01-31T17:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=63c26290d25bc8ace158de94bcb764c764c476a9'/>
<id>63c26290d25bc8ace158de94bcb764c764c476a9</id>
<content type='text'>
The implicit conversion fails in Qt6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The implicit conversion fails in Qt6
</pre>
</div>
</content>
</entry>
<entry>
<title>Use KEntryMapIterator/KEntryMapConstIterator typedef's everywhere</title>
<updated>2021-02-24T05:38:32+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T11:25:26+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=505909e5d6c5a5b44a4972f1aee8156da6d61c79'/>
<id>505909e5d6c5a5b44a4972f1aee8156da6d61c79</id>
<content type='text'>
NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Add KEntryMap::constFindEntry() method</title>
<updated>2021-02-24T05:38:32+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-23T11:08:15+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=cae1e9b6d2ec957f8bc4643b898308a404d00a5f'/>
<id>cae1e9b6d2ec957f8bc4643b898308a404d00a5f</id>
<content type='text'>
- This has the same logic as QMap::constFind(); less detaching and now we
can use auto keyword when creating iterators and always get a const_iterator
even when calling constFindEntry() on a non-const map.

- Use QCOMPARE() where appropriate in the unit tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- This has the same logic as QMap::constFind(); less detaching and now we
can use auto keyword when creating iterators and always get a const_iterator
even when calling constFindEntry() on a non-const map.

- Use QCOMPARE() where appropriate in the unit tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix formatting in a couple of places after running clang-format</title>
<updated>2021-02-22T19:28:00+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-02-22T17:25:40+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=48c132be8aa983165126b0641a083848dd5c6620'/>
<id>48c132be8aa983165126b0641a083848dd5c6620</id>
<content type='text'>
NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
NO_CHANGELOG
</pre>
</div>
</content>
</entry>
</feed>
