Oh cool, maybe we could even inject a stylesheet based of the color scheme.
Maybe even inject a refresh button into the bottom row that calls window.location.reload() or whatever it is.
Found the solution to the scaling problem. We have to import QtWebKit.experimental 1.0 to set the preferred minimum content width to something smaller than we will ever use AND add a layout minimum width otherwise if set really small the bottom toolbar will hide.
My main.qml looks like this:
import QtQuick 2.0
import QtWebKit 3.0
import QtQuick.Layouts 1.1
import org.kde.plasma.components 2.0 as PlasmaComponents
import org.kde.plasma.extras 2.0 as PlasmaExtras
import QtWebKit.experimental 1.0
ColumnLayout {
PlasmaComponents.Button{
iconSource: "view-refresh"
onClicked: webview.reload()
}
Rectangle {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.minimumWidth : 120
WebView {
id: webview
url: "https://mail.google.com/tasks/ig?pli=1"
anchors.fill: parent
experimental.preferredMinimumContentsWidth: 30
}
}
}
Hello.
Thank you for the app.
With opensuse Leap 42.1 and plasma5 font-size changes with changing size of the app and is then ok.
A request: Is it possible to change sort-order (date or priority)?
Thank you.
Markus
I do not have any suggestion why is not working. It use WebView for showing webpage. I have 4.14 and is ok.
Please report this bug on
http://kde-apps.org/content/show.php/WebView+test?content=168119
Eventually I managed to get it working.
Problem was the network connection that has to be managed by network-manager to have plasma5 plasmoids to work, whilst I had it controlled by distribution specific scripts (defined in /etc/network/interfaces).
After the switch to network-manager, webview and google tasks plasmoids started to work again.
For me, this is one of the most important widgets. And all versions are broken at the moment. Great if that could be fixed. Unfortunately, I donb't understand this problem either. For some reason, font size and width of the window are linked.....
Ratings & Comments
13 Comments
It is pitty. Google canceled html tasks. So this project is obsoleted.
Apparently google changed something on their endpoint. Is it something that be can worked out or should this addon be considered obsoleted?
9 TY!
Oh cool, maybe we could even inject a stylesheet based of the color scheme. Maybe even inject a refresh button into the bottom row that calls window.location.reload() or whatever it is.
Inject style sheet is too much for me. What you mean with window.location.reload()? There is reload button.
Found the solution to the scaling problem. We have to import QtWebKit.experimental 1.0 to set the preferred minimum content width to something smaller than we will ever use AND add a layout minimum width otherwise if set really small the bottom toolbar will hide. My main.qml looks like this: import QtQuick 2.0 import QtWebKit 3.0 import QtQuick.Layouts 1.1 import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.plasma.extras 2.0 as PlasmaExtras import QtWebKit.experimental 1.0 ColumnLayout { PlasmaComponents.Button{ iconSource: "view-refresh" onClicked: webview.reload() } Rectangle { Layout.fillWidth: true Layout.fillHeight: true Layout.minimumWidth : 120 WebView { id: webview url: "https://mail.google.com/tasks/ig?pli=1" anchors.fill: parent experimental.preferredMinimumContentsWidth: 30 } } }
Hello. Thank you for the app. With opensuse Leap 42.1 and plasma5 font-size changes with changing size of the app and is then ok. A request: Is it possible to change sort-order (date or priority)? Thank you. Markus
There is button left-donw - Actions and there is setting of order.
I can't see anything as I only get a blank page. Loading google account with rekonq is ok Running KDE 15.04
I do not have any suggestion why is not working. It use WebView for showing webpage. I have 4.14 and is ok. Please report this bug on http://kde-apps.org/content/show.php/WebView+test?content=168119
Eventually I managed to get it working. Problem was the network connection that has to be managed by network-manager to have plasma5 plasmoids to work, whilst I had it controlled by distribution specific scripts (defined in /etc/network/interfaces). After the switch to network-manager, webview and google tasks plasmoids started to work again.
For me, this is one of the most important widgets. And all versions are broken at the moment. Great if that could be fixed. Unfortunately, I donb't understand this problem either. For some reason, font size and width of the window are linked.....
For me is very important too, so I tried to make it some how. But this bug I cannot solve :(