<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/src/settings/viewmodes/viewsettingspage.cpp, branch master</title>
<subtitle>Patched KDE Dolphin with Pixel Scaling
</subtitle>
<id>https://fiftyfourth.xyz/git/dolphin/atom?h=master</id>
<link rel='self' href='https://fiftyfourth.xyz/git/dolphin/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/'/>
<updated>2026-01-22T15:14:16Z</updated>
<entry>
<title>clang-tidy: use default for trivial constructor</title>
<updated>2026-01-22T15:14:16Z</updated>
<author>
<name>Méven Car</name>
<email>meven@kde.org</email>
</author>
<published>2026-01-22T15:04:09Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=174bc684603326de15e933b3bb24ffb739f3291e'/>
<id>urn:sha1:174bc684603326de15e933b3bb24ffb739f3291e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make settings tabbar expanding</title>
<updated>2024-08-28T07:13:27Z</updated>
<author>
<name>Carl Schwan</name>
<email>carl@carlschwan.eu</email>
</author>
<published>2024-08-27T22:16:59Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=ad632de61ac9aab8bc03e3cf8cbdc7525543626f'/>
<id>urn:sha1:ad632de61ac9aab8bc03e3cf8cbdc7525543626f</id>
<content type='text'>
Allow to use https://invent.kde.org/plasma/breeze/-/merge_requests/478
but even without the breeze MR, it look better and similar to what we do
with other settings page.
</content>
</entry>
<entry>
<title>Remove some frames from the settings</title>
<updated>2023-11-13T10:14:22Z</updated>
<author>
<name>Carl Schwan</name>
<email>carl@carlschwan.eu</email>
</author>
<published>2023-11-12T11:01:41Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=0eca319318809009db7395f564b383c9ebfa73b0'/>
<id>urn:sha1:0eca319318809009db7395f564b383c9ebfa73b0</id>
<content type='text'>
QTabWidget with setDocumentMode is more adapted as the QTabWidget in the
settings are filling the whole view and we only need to draw a separator
at the top.
</content>
</entry>
<entry>
<title>Replace qAsConst with std::as_const</title>
<updated>2023-09-10T13:19:13Z</updated>
<author>
<name>Méven Car</name>
<email>meven@kde.org</email>
</author>
<published>2023-09-10T13:19:13Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=b58a346be96f7d0973ed96e52c4cf95463ba244d'/>
<id>urn:sha1:b58a346be96f7d0973ed96e52c4cf95463ba244d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Re-Allow to set settings in Settings-&gt; View-&gt; General page</title>
<updated>2023-08-23T12:26:09Z</updated>
<author>
<name>Méven Car</name>
<email>meven@kde.org</email>
</author>
<published>2023-08-23T11:11:20Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=ff852b97f110691cda4c2f63f8d0f6bf8759fe2f'/>
<id>urn:sha1:ff852b97f110691cda4c2f63f8d0f6bf8759fe2f</id>
<content type='text'>
Regressed in 489b56b68bb29e81337e115c490eea4403001b71

Simplify implementation by sharing making class ViewSettingsPage implement SettingsPageBase sharing implementation with other tabs in viewsettingspage
</content>
</entry>
<entry>
<title>Dolphin settings revamp</title>
<updated>2023-08-18T07:07:48Z</updated>
<author>
<name>Dimosthenis Krallis</name>
<email>sandboxgamergr@hotmail.com</email>
</author>
<published>2023-08-18T07:07:48Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=489b56b68bb29e81337e115c490eea4403001b71'/>
<id>urn:sha1:489b56b68bb29e81337e115c490eea4403001b71</id>
<content type='text'>
It includes a move of the settings in the Navigation and Startup sections to the Interface (formerly Behavior) section.
It also includes a new tab in the View (formerly View Mode) section, called General where some settings regarding Display style, Browsing and Miscellaneous settings
The Interface section has new tabs named Folders &amp; Tabs and Status &amp; Location bars respectively where most of the Startup and Navigation settings moved.

The `dolphin/kcms/kcm_dolphinnavigation` kcm is removed.
</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>Settings Add ViewModes &gt; Content display</title>
<updated>2023-06-13T09:40:27Z</updated>
<author>
<name>Méven Car</name>
<email>meven.car@kdemail.net</email>
</author>
<published>2023-06-13T09:40:27Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=3338c2834af81e00c3f2b73ad7061fefce89f226'/>
<id>urn:sha1:3338c2834af81e00c3f2b73ad7061fefce89f226</id>
<content type='text'>
This does not move the settings location in files though.

baby step for https://invent.kde.org/system/dolphin/-/issues/36
</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>Compile without foreach</title>
<updated>2020-10-23T18:23:06Z</updated>
<author>
<name>Alexander Lohnau</name>
<email>alexander.lohnau@gmx.de</email>
</author>
<published>2020-10-23T17:48:22Z</published>
<link rel='alternate' type='text/html' href='https://fiftyfourth.xyz/git/dolphin/commit/?id=a24327cd50ef17b953ecb908d260b73460158107'/>
<id>urn:sha1:a24327cd50ef17b953ecb908d260b73460158107</id>
<content type='text'>
</content>
</entry>
</feed>
