<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kconfig.git/src/gui, branch v5.78.0</title>
<subtitle>hurd kconfig.git</subtitle>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/'/>
<entry>
<title>Remove unused include</title>
<updated>2020-12-10T21:58:11+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2020-12-10T19:52:54+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=2f8a0d60914e3a42b154c86019ee00387bc4e620'/>
<id>2f8a0d60914e3a42b154c86019ee00387bc4e620</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use | instead of + for combining keys</title>
<updated>2020-12-10T21:07:34+00:00</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2020-12-10T21:07:34+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=5ec83d6cb9ad7e987e56323f8cad8139b64769e7'/>
<id>5ec83d6cb9ad7e987e56323f8cad8139b64769e7</id>
<content type='text'>
The latter breaks with Qt6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The latter breaks with Qt6
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix windows being inappropriately maximized on launch</title>
<updated>2020-12-09T18:23:27+00:00</updated>
<author>
<name>Nate Graham</name>
<email>nate@kde.org</email>
</author>
<published>2020-12-08T19:01:49+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=a62e53e1b1fdb363fefb74907dca339b238e99b9'/>
<id>a62e53e1b1fdb363fefb74907dca339b238e99b9</id>
<content type='text'>
When a window is closed while maximized, we write a special string to
the config file so that it gets restored in its maximized state. But we
don't ever delete that thing when the window is un-maximized and closed
again, causing the window to always be maximized when launched.

BUG: 426813
FIXED-IN: 5.78
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a window is closed while maximized, we write a special string to
the config file so that it gets restored in its maximized state. But we
don't ever delete that thing when the window is un-maximized and closed
again, causing the window to always be maximized when launched.

BUG: 426813
FIXED-IN: 5.78
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct format of window maximized string</title>
<updated>2020-12-09T03:10:13+00:00</updated>
<author>
<name>Nate Graham</name>
<email>nate@kde.org</email>
</author>
<published>2020-12-08T19:05:12+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=1be7af75767d579133e71f70f4629ac9c1e027fd'/>
<id>1be7af75767d579133e71f70f4629ac9c1e027fd</id>
<content type='text'>
All other resolutions are stored in the form of width x height, but a
silly transposition error had the maximized strong being height x width.
That's fixed now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All other resolutions are stored in the form of width x height, but a
silly transposition error had the maximized strong being height x width.
That's fixed now.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix window sizing and positioning on Windows</title>
<updated>2020-12-07T22:15:28+00:00</updated>
<author>
<name>Nate Graham</name>
<email>nate@kde.org</email>
</author>
<published>2020-12-07T19:26:11+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=e5fb03b6e915b176ae8804ae7317ff1977848487'/>
<id>e5fb03b6e915b176ae8804ae7317ff1977848487</id>
<content type='text'>
The feature to make windows remember their sizes and positions across
screen layouts relied on calling QScreen::name() to identify screens.
Unfortunately this function returns garbage on Windows; see
https://bugreports.qt.io/browse/QTBUG-74317

So on Windows, let's identify displays by serial number as a workaround.

BUG: 429943
FIXED-IN: 5.78
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The feature to make windows remember their sizes and positions across
screen layouts relied on calling QScreen::name() to identify screens.
Unfortunately this function returns garbage on Windows; see
https://bugreports.qt.io/browse/QTBUG-74317

So on Windows, let's identify displays by serial number as a workaround.

BUG: 429943
FIXED-IN: 5.78
</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>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>
<entry>
<title>Make KWindowConfig::allConnectedScreens() static and internal</title>
<updated>2020-09-03T18:28:15+00:00</updated>
<author>
<name>Nate Graham</name>
<email>nate@kde.org</email>
</author>
<published>2020-09-03T17:27:49+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=a1ffd1418f355ae927c9b7859cffcb6caa767306'/>
<id>a1ffd1418f355ae927c9b7859cffcb6caa767306</id>
<content type='text'>
It doesn't need to be public since it's just an internal convenience
function. So let's make it static.

BUG: 425953
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It doesn't need to be public since it's just an internal convenience
function. So let's make it static.

BUG: 425953
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix @since tag for recently-added function</title>
<updated>2020-09-03T17:21:14+00:00</updated>
<author>
<name>Nate Graham</name>
<email>nate@kde.org</email>
</author>
<published>2020-09-03T17:21:14+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=89c99164b4c235dfc61aa3cdd6997dc1413281ce'/>
<id>89c99164b4c235dfc61aa3cdd6997dc1413281ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Missing g_infoStandardShortcut update for last commit</title>
<updated>2020-09-01T09:13:43+00:00</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2020-09-01T09:13:43+00:00</published>
<link rel='alternate' type='text/html' href='https://netuse.dynamicmalloc.com/cgit/kconfig.git/commit/?id=7ce130f3c6de55d834bd8f0b24498e4ea0626c25'/>
<id>7ce130f3c6de55d834bd8f0b24498e4ea0626c25</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>
</feed>
