diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | contents/ui/ActivityView.qml | 1 | ||||
-rw-r--r-- | contents/ui/main.qml | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,7 @@ add the widget to your desktop it has to be configured again. - [ ] More friendly course list in config dialog - [ ] Ignore activity and undo ignore - [ ] Show announcement details +- [ ] Migrate to KF6 when it replaces KF5 (see [Porting guide](https://develop.kde.org/docs/plasma/widget/porting_kf6/)) ## Contributing diff --git a/contents/ui/ActivityView.qml b/contents/ui/ActivityView.qml index 6eb7e26..4b32cf4 100644 --- a/contents/ui/ActivityView.qml +++ b/contents/ui/ActivityView.qml @@ -11,6 +11,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras import "activity.js" as Activity // container for one single activity +// TODO: port to PlasmaComponents3 before release of KF6 PlasmaComponents.ListItem { id: activityItem separatorVisible: false diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 7e4b3ba..4e3be19 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -11,6 +11,7 @@ import org.kde.plasma.networkmanagement 0.2 as PlasmaNM import "kanvas.js" as Kanvas +// TODO: change to PlasmoidItem on KF6 Item { width: PlasmaCore.Units.gridUnit * 20 height: PlasmaCore.Units.gridUnit * 40 |