<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/src/settings/kcm/kcmdolphinnavigation.cpp, branch pixelated-scaling-option</title>
<subtitle>Patched KDE Dolphin with Pixel Scaling
</subtitle>
<id>https://fiftyfourth.xyz/git/dolphin/atom?h=pixelated-scaling-option</id>
<link rel='self' href='https://fiftyfourth.xyz/git/dolphin/atom?h=pixelated-scaling-option'/>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/'/>
<updated>2023-07-05T20:44:40Z</updated>
<entry>
<title>Merge branch 'master' into kf6</title>
<updated>2023-07-05T20:44:40Z</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2023-07-05T20:44:40Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=f510339f033658eae27f8400bf042b78b36f82f2'/>
<id>urn:sha1:f510339f033658eae27f8400bf042b78b36f82f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add explicit moc includes to sources for moc-covered headers</title>
<updated>2023-07-05T07:59:18Z</updated>
<author>
<name>Friedrich W. H. Kossebau</name>
<email>kossebau@kde.org</email>
</author>
<published>2023-07-04T20:07:48Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=ed2d352c42a6d517d4f29b3582c0e00aa34fe647'/>
<id>urn:sha1:ed2d352c42a6d517d4f29b3582c0e00aa34fe647</id>
<content type='text'>
* speeds up incremental builds as changes to a header will not always
  need the full mocs_compilation.cpp for all the target's headers rebuild,
  while having a moc file sourced into a source file only adds minor
  extra costs, due to small own code and the used headers usually
  already covered by the source file, being for the same class/struct
* seems to not slow down clean builds, due to empty mocs_compilation.cpp
  resulting in those quickly processed, while the minor extra cost of the
  sourced moc files does not outweigh that in summary.
  Measured times actually improved by some percent points.
  (ideally CMake would just skip empty mocs_compilation.cpp &amp; its object
  file one day)
* enables compiler to see all methods of a class in same compilation unit
  to do some sanity checks
* potentially more inlining in general, due to more in the compilation unit
* allows to keep using more forward declarations in the header, as with the
  moc code being sourced into the cpp file there definitions can be ensured
  and often are already for the needs of the normal class methods
</content>
</entry>
<entry>
<title>Adjust KCMs to no longer do cast manually</title>
<updated>2023-06-10T08:26:58Z</updated>
<author>
<name>Alexander Lohnau</name>
<email>alexander.lohnau@gmx.de</email>
</author>
<published>2023-06-10T08:26:58Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=3d0c946eefefbe218f61954692df326f03c7838d'/>
<id>urn:sha1:3d0c946eefefbe218f61954692df326f03c7838d</id>
<content type='text'>
KCModule::widget returns the widget that should be a parent for widgets the KCM creates
</content>
</entry>
<entry>
<title>Port to Qt6</title>
<updated>2023-05-07T16:32:17Z</updated>
<author>
<name>Méven Car</name>
<email>meven@kde.org</email>
</author>
<published>2023-05-07T16:27:41Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=76e3eab6ea3545339da2fd30b838acbc8c0ff607'/>
<id>urn:sha1:76e3eab6ea3545339da2fd30b838acbc8c0ff607</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add clang-format and format code as in Frameworks</title>
<updated>2023-02-05T05:45:38Z</updated>
<author>
<name>Serg Podtynnyi</name>
<email>serg@podtynnyi.com</email>
</author>
<published>2023-02-03T17:14:53Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=38c34eeca315c7be58e65d4d3fb72aaf7b866719'/>
<id>urn:sha1:38c34eeca315c7be58e65d4d3fb72aaf7b866719</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Display Apply button in KCMs</title>
<updated>2022-03-01T11:00:37Z</updated>
<author>
<name>Stefano Crocco</name>
<email>stefano.crocco@alice.it</email>
</author>
<published>2022-03-01T10:59:42Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=505bf52f593a88a07925b0dbba7568535933fd23'/>
<id>urn:sha1:505bf52f593a88a07925b0dbba7568535933fd23</id>
<content type='text'>
When displaying the KCMs in another application's configuration dialog
(for example, in Konqueror), the Apply, Ok and Reset buttons aren't
shown. This issue is caused by a missing Apply flag in the call to
setButtons in the KCModule constructor.

the fact that in the call to setButtons
from the KCModule constructor, the Apply flag is missing.

BUG: 448352
</content>
</entry>
<entry>
<title>Install KCMs in dolphin/kcms namespace</title>
<updated>2021-10-09T12:14:27Z</updated>
<author>
<name>Alexander Lohnau</name>
<email>alexander.lohnau@gmx.de</email>
</author>
<published>2021-09-02T18:11:11Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=2f5e4cb02933e3317098bdf090b3f6103061d4ae'/>
<id>urn:sha1:2f5e4cb02933e3317098bdf090b3f6103061d4ae</id>
<content type='text'>
This will allow consumers to load the plugin from this namespace
without KServiceTypeTrader being involved.
</content>
</entry>
<entry>
<title>Remove unneeded KCM plugin keyword stuff</title>
<updated>2021-07-23T10:15:06Z</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2021-07-21T19:41:12Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=6e56cc328636e3e6ae933843c56cfe179cc269f1'/>
<id>urn:sha1:6e56cc328636e3e6ae933843c56cfe179cc269f1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove unused includes</title>
<updated>2020-11-29T14:03:27Z</updated>
<author>
<name>Nicolas Fella</name>
<email>nicolas.fella@gmx.de</email>
</author>
<published>2020-11-29T14:03:27Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=94c1fe6299679321c6bd8858750f20aeac53e548'/>
<id>urn:sha1:94c1fe6299679321c6bd8858750f20aeac53e548</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Output of licensedigger + manual cleanup afterwards.</title>
<updated>2020-08-25T17:07:38Z</updated>
<author>
<name>Elvis Angelaccio</name>
<email>elvis.angelaccio@kde.org</email>
</author>
<published>2020-08-25T17:07:38Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=954e8c47906c12edaaf6e6aebdd41516eceb0d44'/>
<id>urn:sha1:954e8c47906c12edaaf6e6aebdd41516eceb0d44</id>
<content type='text'>
Unfortunately licensedigger does not strip the trailing * characters.
While at it, use a common style for all source files.
</content>
</entry>
</feed>
