


System Software by papylhomme 17 comments

System Software by papylhomme 17 comments
I pushed the new option to truncate the device name, it gives a nice and short display!
For the second point, I don't see what you mean ?
And for the question, drive label change color to red (well, the errorColor color) if the unit is failing. I updated the README, there is a small part at the end about testing the monitoring feature with a fake raid array. - Feb 23 2015

System Software by papylhomme 17 comments
I've pushed new commits on the master branch, shrinking is working better and there is also some changes to reduce screen space usage. The toolbar has gone (actions are in the context menu) and you can choose from different layout in the applet configuration (big, small and minimalistic).
I'm not releasing a new version now as I have some cleanup and doc to do, but you can already test the new features if you wish - Feb 23 2015

System Software by papylhomme 17 comments
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
Please remove the build dir and try to recompile using
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON - Feb 21 2015

System Software by papylhomme 17 comments
it's more likely related to the install location of the qml plugin (files qmldir and libdiskmonitor_qmlplugins.so).
On my Arch box, they're installed in /usr/lib/qt/qml/org/papylhomme/diskmonitor, I can find other KDE5 related plugins in /usr/lib/qt/qml/org/kde/... Where are they located on your side ? - Feb 21 2015

System Software by papylhomme 17 comments
just to mention a problem (?) with the yearSince value : when the related event is for the next year, the value is still computed with the current year. This is a bit dissapointing as it result in a bad "%yearSince% years old" value.
I don't know if this is the wanted behavior, but in case it isn't, here is a patch (created with version 0.2.1) :
--- src/applet/eventmodel.cpp.ORIG 2009-08-29 09:21:32.000000000 +0200
+++ src/applet/eventmodel.cpp 2009-08-29 09:28:41.000000000 +0200
@@ -154,7 +154,7 @@
data.insert(SummaryPos, values["summary"]);
data.insert(DescriptionPos, values["description"]);
data.insert(LocationPos, values["location"]);
- int n = QDate::currentDate().year() - values["startDate"].toDate().year();
+ int n = eventDtTime.toDate().year() - values["startDate"].toDate().year();
data.insert(YearsSincePos, QVariant(QString::number(n)));
data.insert(BirthdayOrAnniversayPos, QVariant(values["isBirthday"].toBool() || values["isAnniversary"].toBool()));
- Oct 04 2009
After some hacking in the plasmoid sources, I realized that Akonadi wasn't listing birthdays : Kontact was configured to use its own birthday's resource and that's why I was confused. After adding the Akonadi birthdays agent, they appeared magically in the applet.
So finally, really great plasmoid ! Thanks for your job. - Aug 25 2009
I had a look to the code, but it looks like every calendar's items should be retrieved. I have also tried to remove the displayed resource, but the applet is empty (like if no resources are present). Any idea to solve this issue ?
- Aug 25 2009