Thomas Capricelli archive
Tag: qt
March 10, 2017
Release Of EmergeActivity 3.0
It’s been a while since the last release of EmergeActivity. There were some fixes, but nothing really worth a release, so mostly everything was ok. Still, it was based on Qt4/PyQt4, and times passes, so I’ve finally found time to port EmergeActivity to Qt5. That and a few fixes/features seemed enough for me to increment the major number, hence […]
July 18, 2013
Release of EmergeActivity 2.1
Emerge activity is a small PyQt application aimed at Gentoo users that displays an “activity” graph of the emerges. Here’s a typical example on my desktop computer : For those wondering, the huge increase in 2009 is when the Gentoo KDE team decided to split KDE packages, and the drop in 2011 is when I stopped […]
February 10, 2013
Yet another KDE QA failure
Just as lot of people here and elsewhere keep on denying KDE QA major problem, the 4.10 release is yet another proof of how bad the situation is. KDE cares so much that they already closed the bug with a oh-so-easy “not our fault”. Which is probably true, but still I consider that this shows a […]
November 9, 2011
EmergeActivity gets a graphical interface: releasing 2.0
I’m still using this small utility that displays the activity of ’emerges’ on the misc gentoo boxes I’m admin for. I’ve wanted to add a graphical interface for very long, but did not have the time… until recently. So here it is. It is available for download from the homepage and as a mercurial clone.
September 18, 2011
A small step forward for the mercurial activity plugin, releasing version 2.0
As time goes, my mercurial ‘activity’ plugin has got more and more options. Useful and requested options of course, but still it kinda clobber the –help output and it is more and more cumbersome to play with. This is why I have introduced a new frontend, based on Qt, to play/decide about those options. First, […]
October 4, 2010
announcing qxv
Well… you know how it is, you get used to a tool, and even if some brand new software is now available, you keep on using this old stuff. In his case, i’m speaking of xv, whose last release was in 1994. It’s still my default viewer for all image formats in my KDE/firefox/whatever settings. […]
January 10, 2010
Playing with clang and Qt
You might know that there’s a new kid in the C++ compilers list ; clang. Llvm has been around for quite some time, but until recently the only way to make use of it was through the somehow cumbersome llvm-gcc which binds the gcc C/C++ frontend to the llvm backend. People (mostly Apple) have been […]
November 22, 2009
How to use flex and bison with qmake (my own way)
qmake (sort of) supports lex/yacc, but modern people prefer to use flex/bison. If you google, you can find some tricks like convincing qmake that yacc is spelled ‘bison’ and so on. Morever qmake supports for lex/yacc has several drawbacks, such as weird naming scheme, and (when using the tricks), dependencies are not building files in […]
May 2, 2009
how to handle translations for an application that is both qt-only and KDE ?
I have the problem for my application Opale, which used to be KDE only and is now both Qt and KDE. The first thing I’ve done is to switch from *.po (gettext) to *.ts (qt), because Qt can not (or can it ? tell me how !) handle gettext files. Then, I needed to use […]
March 10, 2009
Fixing qmake missing rule for *.ts -> *.qm
We are used to polished and great tools from the trolls, but qmake has always been the big exception to this: ugly documentation, lot of undocumented tricks, and missing features. For me the biggest one was that it would not automatically create the rule to transform *.ts to *.qm in the generated Makefile. I have […]