<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git, branch v5.90.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>GIT_SILENT Commit translations from kconfig</title>
<updated>2022-01-01T12:26:58+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2022-01-01T12:26:58+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=fe6e392576dc582ecb96c06510a8499af1adfbb5'/>
<id>fe6e392576dc582ecb96c06510a8499af1adfbb5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GIT_SILENT Upgrade ECM and KF version requirements for 5.90.0 release.</title>
<updated>2022-01-01T12:12:28+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2022-01-01T12:12:28+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=43e096a8838a36e6adad9d265f77170641fbfef6'/>
<id>43e096a8838a36e6adad9d265f77170641fbfef6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>kconfig_compiler/CMakeLists.txt - use CMAKE_CROSSCOMPILING</title>
<updated>2021-12-27T15:20:12+00:00</updated>
<author>
<name>Allen Winter</name>
<email>winter@kde.org</email>
</author>
<published>2021-12-27T15:20:12+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=c5ce7c4328706018fb9b695eb5c8959aaafa4bc4'/>
<id>c5ce7c4328706018fb9b695eb5c8959aaafa4bc4</id>
<content type='text'>
use the CMake variable CMAKE_CROSSCOMPILING to detect when
cross-compiling instead of CMAKE_TOOLCHAIN_FILE.

CMAKE_TOOLCHAIN_FILE can be set when not cross-compiling
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
use the CMake variable CMAKE_CROSSCOMPILING to detect when
cross-compiling instead of CMAKE_TOOLCHAIN_FILE.

CMAKE_TOOLCHAIN_FILE can be set when not cross-compiling
</pre>
</div>
</content>
</entry>
<entry>
<title>Complete fixing the Windows CI</title>
<updated>2021-12-18T18:51:03+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-18T18:51:03+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=eac8e43e25717fcef579a25bd40d777fc5556255'/>
<id>eac8e43e25717fcef579a25bd40d777fc5556255</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix build on Windows</title>
<updated>2021-12-17T16:03:40+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-17T16:03:40+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=428261e2932e9413b1ed5322848e8df067f59ee1'/>
<id>428261e2932e9413b1ed5322848e8df067f59ee1</id>
<content type='text'>
Both GCC and Clang don't require a const integral value to be captured
explicitly to be used in a lambda, but of course one compiler thinks
otherwise...

Thanks to Ömer Fadıl Usta for the heads up.

GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both GCC and Clang don't require a const integral value to be captured
explicitly to be used in a lambda, but of course one compiler thinks
otherwise...

Thanks to Ömer Fadıl Usta for the heads up.

GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP: Change the build system to enable building with Qt 6</title>
<updated>2021-12-16T18:05:02+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-12-03T20:33:28+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f'/>
<id>10c4a4b4bdfdd468e52ae0fbbf84c77b64df2f8f</id>
<content type='text'>
This was built with:
-DQT_MAJOR_VERSION=6 \
-DEXCLUDE_DEPRECATED_BEFORE_AND_AT=5.90.0 \
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00

Move the include(KDEInstallDirs) call before the first find_package(Qt*,
the former is what auto-detects the Qt version, and defaults to 5. This is
needed to be able to build against Qt5 by default.

All unit tests still pass.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was built with:
-DQT_MAJOR_VERSION=6 \
-DEXCLUDE_DEPRECATED_BEFORE_AND_AT=5.90.0 \
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055a00

Move the include(KDEInstallDirs) call before the first find_package(Qt*,
the former is what auto-detects the Qt version, and defaults to 5. This is
needed to be able to build against Qt5 by default.

All unit tests still pass.
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor code clean up</title>
<updated>2021-12-15T22:22:25+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2021-10-30T08:49:59+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=bdb7f8bbd2d283fa87386a0fa2a505cb93b4a35c'/>
<id>bdb7f8bbd2d283fa87386a0fa2a505cb93b4a35c</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>SVN_SILENT made messages (.desktop file) - always resolve ours</title>
<updated>2021-12-15T01:48:33+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2021-12-15T01:48:33+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=eeefdf8aeabd875829ae6beee0e301a88c7da7c8'/>
<id>eeefdf8aeabd875829ae6beee0e301a88c7da7c8</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>
<entry>
<title>GIT_SILENT Upgrade KF version to 5.90.0.</title>
<updated>2021-12-13T11:36:44+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2021-12-13T11:36:44+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=9c81af25b184476e3945073415c0844d09a9e696'/>
<id>9c81af25b184476e3945073415c0844d09a9e696</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow kreadconfig/kwriteconfig to access the root group</title>
<updated>2021-12-06T11:33:59+00:00</updated>
<author>
<name>Jonathan Marten</name>
<email>jjm@keelhaul.me.uk</email>
</author>
<published>2021-12-06T11:33:59+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=574508b9b6496400388aec420c6abf3ef9911868'/>
<id>574508b9b6496400388aec420c6abf3ef9911868</id>
<content type='text'>
The default group if "--group" is not specified is "KDE".
Trying to specify a null group name causes an assert in KConfigGroup::groupImpl().
Explicitly detect and give an error message for a null group name.
Mention in the help text that "&lt;default&gt;" can be used to specify the root group -
this string comes from KConfigGroupPrivate::name().

Add the missing parser.addHelpOption() for kreadconfig.
Update the help strings.
Apply clang-format changes.
    
I18N:
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default group if "--group" is not specified is "KDE".
Trying to specify a null group name causes an assert in KConfigGroup::groupImpl().
Explicitly detect and give an error message for a null group name.
Mention in the help text that "&lt;default&gt;" can be used to specify the root group -
this string comes from KConfigGroupPrivate::name().

Add the missing parser.addHelpOption() for kreadconfig.
Update the help strings.
Apply clang-format changes.
    
I18N:
</pre>
</div>
</content>
</entry>
</feed>
