<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src, branch v5.77.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Fix comment</title>
<updated>2020-12-03T10:53:42+00:00</updated>
<author>
<name>Ahmad Samir</name>
<email>a.samirh78@gmail.com</email>
</author>
<published>2020-12-03T10:53:42+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=acfbe17bf5574e268d1261587e9194bd225a9867'/>
<id>acfbe17bf5574e268d1261587e9194bd225a9867</id>
<content type='text'>
GIT_SILENT
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GIT_SILENT
</pre>
</div>
</content>
</entry>
<entry>
<title>Add KF6 TODO to use the just-approved (*) XDG_STATE_HOME env var.</title>
<updated>2020-11-07T18:06:01+00:00</updated>
<author>
<name>David Faure</name>
<email>faure@kde.org</email>
</author>
<published>2020-11-07T18:03:44+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=af232ec74629cec56a5b67b79f77dd903e106719'/>
<id>af232ec74629cec56a5b67b79f77dd903e106719</id>
<content type='text'>
See https://gitlab.freedesktop.org/xdg/xdg-specs/-/merge_requests/4

(*) by me :-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://gitlab.freedesktop.org/xdg/xdg-specs/-/merge_requests/4

(*) by me :-)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix KConfigGroup::copyTo with KConfigBase::Notify</title>
<updated>2020-11-07T14:36:37+00:00</updated>
<author>
<name>Fabian Vogt</name>
<email>fabian@ritter-vogt.de</email>
</author>
<published>2020-11-07T13:54:36+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2f68c5427c4a1643018b9a41bff2c83e50c5a03f'/>
<id>2f68c5427c4a1643018b9a41bff2c83e50c5a03f</id>
<content type='text'>
Without this, bNotify was not set on copies, making Notify a noop.

CCBUG: 428771
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without this, bNotify was not set on copies, making Notify a noop.

CCBUG: 428771
</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>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>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>
<entry>
<title>Use reverse order in KDesktopFile::locateLocal to iterate over generic config paths.</title>
<updated>2020-09-14T18:18:12+00:00</updated>
<author>
<name>Jeremy Whiting</name>
<email>jpwhiting@kde.org</email>
</author>
<published>2020-09-14T04:39:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=0283103ff2286a2bc54e6e3abb508bd00c8b9d57'/>
<id>0283103ff2286a2bc54e6e3abb508bd00c8b9d57</id>
<content type='text'>
Since windows has some generic config paths that are parents of other generic config paths
e.g. c:/CraftRoot/build/_/&lt;hash&gt;/build/bin followed by c:/CraftRoot/build/_/&lt;hash&gt;/build/bin/data
we need to search for locations from the last location to the first.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since windows has some generic config paths that are parents of other generic config paths
e.g. c:/CraftRoot/build/_/&lt;hash&gt;/build/bin followed by c:/CraftRoot/build/_/&lt;hash&gt;/build/bin/data
we need to search for locations from the last location to the first.
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop outdated note about updating kdoctools/genshortcutents.cpp</title>
<updated>2020-09-04T12:47:24+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2020-09-01T11:30:35+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=ae029a7df5cbbbbdf197dfa7ab5e4dfad2722df0'/>
<id>ae029a7df5cbbbbdf197dfa7ab5e4dfad2722df0</id>
<content type='text'>
genshortcutents.cpp disappeared from kdoctools during preparations
of kdelibs for KDE Frameworks
(commits.kde.org/kdelibs/64537ae5bf1a4e91ba99befc016e67e8e0c9dff0)

Cmp. also http://lists.kde.org/?t=137113303000003&amp;r=1&amp;w=2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
genshortcutents.cpp disappeared from kdoctools during preparations
of kdelibs for KDE Frameworks
(commits.kde.org/kdelibs/64537ae5bf1a4e91ba99befc016e67e8e0c9dff0)

Cmp. also http://lists.kde.org/?t=137113303000003&amp;r=1&amp;w=2
</pre>
</div>
</content>
</entry>
</feed>
