<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git, branch v5.76.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>2020-11-07T12:00:32+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2020-11-07T12:00:32+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=772e6a4988f34723b455dde5f57fc64682423c1f'/>
<id>772e6a4988f34723b455dde5f57fc64682423c1f</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 KF5 version requirements for 5.76.0 release.</title>
<updated>2020-11-07T11:34:22+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2020-11-07T11:34:22+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2c272cdddbd85b7f8388c29b6427b9f61bf11284'/>
<id>2c272cdddbd85b7f8388c29b6427b9f61bf11284</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ConfigLoaderHandler::parse(): fix inverted sanity check logic at parse end</title>
<updated>2020-11-02T17:56:46+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2020-11-02T17:56:46+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=0ce10a9dbfffe37bcede198a92210402e5260030'/>
<id>0ce10a9dbfffe37bcede198a92210402e5260030</id>
<content type='text'>
No caller cares for success flag, so this just has confused human code
readers for now.

NO_CHANGELOG
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No caller cares for success flag, so this just has confused human code
readers for now.

NO_CHANGELOG
</pre>
</div>
</content>
</entry>
<entry>
<title>Find missing Qt5DBus dependency</title>
<updated>2020-10-24T04:25:11+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2020-10-24T04:25:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=637775da175a59f7fae60b8abdc95d302dd24612'/>
<id>637775da175a59f7fae60b8abdc95d302dd24612</id>
<content type='text'>
Matters for static builds. Fixes the static KContacts build for me
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Matters for static builds. Fixes the static KContacts build for me
</pre>
</div>
</content>
</entry>
<entry>
<title>If include is define in .h remove it if it's defined in .cpp too (scripted)</title>
<updated>2020-10-23T06:32:00+00:00</updated>
<author>
<name>Laurent Montel</name>
<email>montel@kde.org</email>
</author>
<published>2020-10-23T06:32:00+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=945ff64855fc742ab06185767ce769d78495c9cb'/>
<id>945ff64855fc742ab06185767ce769d78495c9cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>kconf_update: Allow repeated tests in --testmode by ignoring kconf_updaterc</title>
<updated>2020-10-16T21:20:08+00:00</updated>
<author>
<name>David Hurka</name>
<email>david.hurka@mailbox.org</email>
</author>
<published>2020-09-05T14:24:59+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=c81dfc9c2006293dc9a48f0aaba204af28fa6b98'/>
<id>c81dfc9c2006293dc9a48f0aaba204af28fa6b98</id>
<content type='text'>
https://techbase.kde.org/Development/Tools/Using_kconf_update#Debugging_and_testing
describes how to run repeated tests of kconf_update scripts in --testmode.
It is necessary to delete update group flags from kconf_updaterc,
which is inconvenient.

With this patch, kconf_update will not use kconf_updaterc when in --testmode,
so this step is no longer necessary.

Additionally, running all installed update scripts automatically
is no longer possible in --testmode, since that is probably only useful
if you have your home directory in ~/.qttest/config/.

I don’t expect problems, since this affects only --testmode, and the update group
flags are still present in the modified config files themselves.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://techbase.kde.org/Development/Tools/Using_kconf_update#Debugging_and_testing
describes how to run repeated tests of kconf_update scripts in --testmode.
It is necessary to delete update group flags from kconf_updaterc,
which is inconvenient.

With this patch, kconf_update will not use kconf_updaterc when in --testmode,
so this step is no longer necessary.

Additionally, running all installed update scripts automatically
is no longer possible in --testmode, since that is probably only useful
if you have your home directory in ~/.qttest/config/.

I don’t expect problems, since this affects only --testmode, and the update group
flags are still present in the modified config files themselves.
</pre>
</div>
</content>
</entry>
<entry>
<title>Port QRegExp to QRegularExpression</title>
<updated>2020-10-10T15:56:48+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2020-10-08T18:46:51+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=bc620cca1f4154704744fcdeb4f706e0c54e46f8'/>
<id>bc620cca1f4154704744fcdeb4f706e0c54e46f8</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 KF5 version to 5.76.0.</title>
<updated>2020-10-10T15:37:39+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2020-10-10T15:37:39+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=3d43fb00ac762a51259b8cb07466fc7a303f6e57'/>
<id>3d43fb00ac762a51259b8cb07466fc7a303f6e57</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 KF5 version requirements for 5.75.0 release.</title>
<updated>2020-10-04T09:47:53+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2020-10-04T09:47:53+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=23a91a4e92e946d8869e7426b6fc93c06bcd4466'/>
<id>23a91a4e92e946d8869e7426b6fc93c06bcd4466</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SVN_SILENT made messages (.desktop file) - always resolve ours</title>
<updated>2020-09-21T03:53:34+00:00</updated>
<author>
<name>l10n daemon script</name>
<email>scripty@kde.org</email>
</author>
<published>2020-09-21T03:53:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=21a40e05397f15aea066cabd36b9ada9d6ba412b'/>
<id>21a40e05397f15aea066cabd36b9ada9d6ba412b</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>
