You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AppContextMenu.qml for PC2.ContextMenu, PC2.MenuItem and PC2.DialogStatus.Closed. This will be annoying to replace as the PC 3.0 using QtQuick 2.0 does not create a native Menu popup. Edit: This seems to have been moved to PlasmaExtras?
TileGrid.qml and TileGridPresets.qml also uses PC2.ContextMenu and PC2.MenuItem
FlatButton.qml uses PC2.ToolButton and PC2.Label
JumpToLetterView.qml uses PC2.ToolButton
KickerListView.qml uses PC2.Highlight
SearchFiltersViewItem.qml uses PC2.ToolButton, PC2.Label and PC2.CheckBox
There's a few useless import org.kde.plasma.components 2.0 as PlasmaComponents which I can remove. I don't think there are any context properties.
TileEditorView.qml and TileGridSplash.qml are using PlasmaExtras.Heading
import org.kde.kcoreaddons 1.0 as KCoreAddons => import org.kde.coreaddons 1.0 as KCoreAddons
PlasmaCore.DataSource is not installed by default (it's part of plasma5support), which we used to call xdg-open on xdg DOCUMENT/MUSIC/VIDEO/etc folders. For now I commented out the DataSource code.
KQuickControlsAddons.QIconItem was deprecated in KF5 v5.101, and removed. We used it in the Kicker.DragHelper when the app/search/recent MenuListItem referenced a model list item entry with a string icon name instead of a QIconItem. For now I disabled the drag.
KQuickControlsAddons.KCMShell => KCM.KCMShell via import org.kde.kcmutils as KCM
KQuickControlsAddons.IconDialog => KIconThemes.IconDialog via import org.kde.iconthemes as KIconThemes
PlasmaComponents2
was removedhttps://invent.kde.org/frameworks/plasma-framework/-/commit/9b1d59fee69c330754089ab5bb86197332afabaf
PC2.Menu
was moved to PlasmaExtras?PlasmaExtras.ScrollArea
was removedhttps://invent.kde.org/frameworks/plasma-framework/-/commit/ae809ccbea5f189ecf3ffaeaf30d9ae9f6329d82
plasma-framework/src/declarativeimports/
History:https://invent.kde.org/frameworks/plasma-framework/-/commits/master/src/declarativeimports
So I need to fix:
AppContextMenu.qml
forPC2.ContextMenu
,PC2.MenuItem
andPC2.DialogStatus.Closed
. This will be annoying to replace as the PC 3.0 using QtQuick 2.0 does not create a native Menu popup. Edit: This seems to have been moved to PlasmaExtras?TileGrid.qml
andTileGridPresets.qml
also usesPC2.ContextMenu
andPC2.MenuItem
FlatButton.qml
usesPC2.ToolButton
andPC2.Label
JumpToLetterView.qml
usesPC2.ToolButton
KickerListView.qml
usesPC2.Highlight
SearchFiltersViewItem.qml
usesPC2.ToolButton
,PC2.Label
andPC2.CheckBox
import org.kde.plasma.components 2.0 as PlasmaComponents
which I can remove. I don't think there are any context properties.TileEditorView.qml
andTileGridSplash.qml
are usingPlasmaExtras.Heading
Grep results for "PlasmaComponents":
https://gist.github.com/Zren/43fd47a12cf85c6cb648cc87ff6533e2
Also:
import org.kde.kcoreaddons 1.0 as KCoreAddons
=>import org.kde.coreaddons 1.0 as KCoreAddons
PlasmaCore.DataSource
is not installed by default (it's part of plasma5support), which we used to callxdg-open
on xdg DOCUMENT/MUSIC/VIDEO/etc folders. For now I commented out the DataSource code.KQuickControlsAddons.QIconItem
was deprecated in KF5 v5.101, and removed. We used it in theKicker.DragHelper
when the app/search/recent MenuListItem referenced a model list item entry with astring
icon name instead of aQIconItem
. For now I disabled the drag.KQuickControlsAddons.KCMShell
=>KCM.KCMShell
viaimport org.kde.kcmutils as KCM
KQuickControlsAddons.IconDialog
=>KIconThemes.IconDialog
viaimport org.kde.iconthemes as KIconThemes
PlasmaCore.IconItem
=>Kirigami.Icon
PlasmaComponents2.Highlight
=>PlasmaExtras.Highlight
import QtGraphicalEffects
=>import Qt5Compat.GraphicalEffects
was deprecatedPlasmaCore.FrameSvgItem
=>KSvg.FrameSvgItem
viaimport org.kde.ksvg as KSvg
QQC1.StackView
=>QQC2.StackView
removesQQC1.StackViewDelegate
andQQC1.StackViewTransition
PlasmaCore.Units.iconSizeHints.panel => 48
was removed and replace with a hardcoded number in kickoff https://phabricator.kde.org/T14340 https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/1390/diffsThe text was updated successfully, but these errors were encountered: