Maybe that the WebKit who is in Qt port is not uptodate to handle html5 support (???)
Should be supported ! But evindently we miss somethings more that we don't know ..
Quote:
but 3.7.5 is more stable (nevertheless not really usable) I sent to you... ;)
Well, after a very quick test i can say that this browser it's not that bad As you suggest I copied all the needed sobjs files (SOBJs_Qt.lha) into my main sobjs folder and then i started QtWeb .. for now it starts and still working !
Maybe, If possible would be better to open all that libs from PROGDIR instead, just to make all less problematic and more intuitive for all users around
About the navigation, of course still some issues here and there, for example some site are fast and nice to browse but others are a bit slow in loading (but also in scrolling for example YouTube and other heavy Javascript portals around)
Still also a lot of shell output with some strange "Unexpected null parameter" error crap .. registration also refuse to work (this force me to post this message with OWB)
I also try to settings italian language from prefs but the interface just "freezed" .. so in short there are a lot of issue around, but more or less it's works decently !
I will test it further in the days follow, meanwhile we can collect all the issues we found and finally send them to Alfkil for future megafix
I sent you some crashlogs too. It freezez here and there but its kind of working. I will ask alfkil what to do with all problems and errors but really good work from you.
Hi Joel, I just have a feedback from Luigi 'tlosm' (not registered on Amigans) on his SAM460 : "The browser is stable and have a good and smoth scrolling, a good rendering of images and a good compatibility."
Tested OK on one sam440, sam460, amigaOne XE and x1000 Tested KO, slow or bad image rendering on one X1000 and Sam460.
Just a quick reply (i'm busy with another friend right now) about Torrent, according to your latest mails i just tried the client in QtWeb using the torrent file you sent me, i didn't got any crash but the download just didn't started at all ..
If i remember correctly we have the same issue also on the client demo from the Alfkil archive (not the very latest but the one availible into the old beta 4 archive)
Instead i try with qTorrent but once i selected the torrent file my machine freezed .. to be sure i need to make a second test but that's what i got for now !
Fontconfig won't let me start these (tried two) qt programs: "Cannot load default config file" and then it just looks in very weird places, like %Fonts:
I did a site search and looked through this thread and found nothing on it.
just downloaded qtweb to test. it's a very nice browser. one of the things, though, that could help its performance would be to build without debug messages enabled. i get (what appear to be harmless) warnings popping up in a console fairly consistently. also perhaps a build without the debug symbols? of course both of these issues are present in the qt stack....
by the way -- i especially enjoyed the screenshot of nagaina included with your upload on os4depot.
-- eliyahu
"Physical reality is consistent with universal laws. When the laws do not operate, there is no reality. All of this is unreal."
@Elyahu : Problem is that I don't know if these messages really came from QtWeb or Qt himself. And, I don't know if there is an option to disable logging in Qt.
For Nagaina, I wanted to show a little checklist, and which better checklist than a "real" one ;)
-QDevelop (IDE for Qt) Recompiled latest version of ctags especially for it But certainly problem of paths (with make too), don't recognize it => no completion and no build But useful to open a .pro file and show all the dependent files (edit / save, syntax highlighting works)
-LightTasks (simple tasks time accounting) Removed "ambiguous" function "number" by simple "sprintf" Removed "border-radius" in PushButton style-sheet to avoid disgracious lines on Tasks buttons Allowed to quit application by clicking on Close gadget (before program was Amidocked without possibility to kill it)
But certainly problem of paths (with make too), don't recognize it => no completion and no build
It should be possible to fix this, I checked with SnoopDOS and looked into the code snippet that is checking the tools qmake, make, ctags and gdb. Indeed all are found by QDevelop (if you configure the right pathes, i.e. "sdk/c/make"), but the simple string comparison doesn't seem to work:
// Control external tools
QString lu;
QProcess *testqmake = new QProcess(this);
testqmake->start(qmake->text(), QStringList("-v"));
testqmake->waitForFinished(5000);
lu = testqmake->readAll();
m_qVersion = lu.section("Using Qt version", 1, 1).section("in ", 0, 0).simplified();
if ( lu.remove(":").left(15) != "QMake version 2" ) {
qmakeIcon->setPixmap( QPixmap(":/divers/images/nogood.png") );
result = false;
}
delete testqmake;
I assume the "lu = testqmake->readAll();" doesn't work and "lu" is empty, so the string tests afterwards fail. Maybe it's easier to make a simple "it's there" test like the author did for the other tools (linguist, see some lines further in the code...).