maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   MeeGo / Harmattan (https://talk.maemo.org/forumdisplay.php?f=45)
-   -   Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast! (https://talk.maemo.org/showthread.php?t=85191)

sid21177 2013-01-27 02:53

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
do we need the official firefox installed for this to work ??

I'm asking coz I removed FF 15 and I started getting a missing library/segmentation fault error - libxul.so and libxpcom.so

It went away once I reinstalled FF

shmerl 2013-01-27 03:32

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
No, you don't need Firefox installed for this to work.

sid21177 2013-01-27 03:48

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by shmerl (Post 1318044)
No, you don't need Firefox installed for this to work.

hmmm... uninstalled & tried again - error comes back :(
using instructions from post #228

shmerl 2013-01-27 03:52

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
This seems to come up all the time. Did you add "." to LD_LIBRARY_PATH?

sid21177 2013-01-27 06:44

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by shmerl (Post 1318047)
This seems to come up all the time. Did you add "." to LD_LIBRARY_PATH?

I did add to the script, but it was before the cd command, let me add it after and see how it goes

thx for the advice

EDIT: now getting error for libpangoft2-1.0.so

my script now looks like

#! /bin/bash
# script to run fennec beta
cd /opt/mozbuildhm
export LD_LIBRARY_PATH = ".:$LD_LIBRARY_PATH"
./qmlMozEmbedTest

zaidk9 2013-01-27 07:39

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
how to install it i m using firefox 17 on my n9
please tell me how to install it
thanks in advance :)

coderus 2013-01-27 07:41

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
just read this topic. all answers here.

romu 2013-01-27 17:27

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Hi there,
After a reboot of the N9, Qml Fennec now runs and can browse the web.

I've tried to create scripts to install an icon on the home screen, but all scripts given here are for bash, and as far as I know, bash is not the default script shell.

How do you deal with? Is there a simple way to install bash? Or there is a simple way to run .sh scripts within ash?

Last question, this one for coderus, I've just looked at your video, and running the January 23th build shows a pretty different GUI, with no tap & hold, no way to create tabs, etc. Why is this? Different build?

Thanks.

Kozzi 2013-01-27 18:25

romu, because it is a version he is working on, same engine with proper qml ui.

coderus, perhaps you could use transparent button or different method to make toolbars show up? Your current implementation could create problem with select or paste function later on.

romu 2013-01-27 20:52

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
I removed the official Firefox from my N9. And now, I'm also victim of the "XPCOMGlueLoad" issue, also for libpangoft2-1.0.so.

Any help? Thanks.

EDIT: I've found libpango is not provided into the romaxa package, I guess using the one provided in the official Firefox package will fix the issue.

shmerl 2013-01-27 21:24

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
libpango should come from your system repository.

romu 2013-01-27 21:32

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Ok thanks. Do you know the name of the package to be installed?

I tried to find a "libpango" file on the N9 file system, but didn't find it.

shmerl 2013-01-27 21:55

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
I think the last time I tried to do it on Harmattan I had to add SDK repos. That was a while ago, I have no idea if they even still work. I.e. these:

Code:

deb http://harmattan-dev.nokia.com/ harmattan/sdk free non-free
deb-src http://harmattan-dev.nokia.com/ harmattan/sdk free

Try searching for it:

Code:

apt-cache search libpango

romu 2013-01-28 10:19

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Thanks.

As there is no more a /etc/apt/sources.list file, how to you add new repo to the N9?

They are 2 packages for libpango:
libpango1.0-0
libpango1.0-common

both are already installed. :(

EDIT: After a new reboot, Qml Fennec now works again. Thanks for the help, but just for my understanding, I'm still curious about the first question answer.

thedead1440 2013-01-28 12:36

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by romu (Post 1318331)
Thanks.

As there is no more a /etc/apt/sources.list file, how to you add new repo to the N9?

/etc/apt/sources.list.d/REPO.list

romu 2013-01-28 12:57

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Thanks. This REPO.list (uppercase ?) has to be created, no?

Because, in my sources.list.d folder I only have aegis.ssu-keyring-005.list and osa.list.

thedead1440 2013-01-28 13:15

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by romu (Post 1318379)
Thanks. This REPO.list (uppercase ?) has to be created, no?

Because, in my sources.list.d folder I only have aegis.ssu-keyring-005.list and osa.list.

replace REPO with the name you want to use it should be lower-case...

coderus 2013-01-28 13:28

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
@romu apt-get using all *.list files from /etc/apt/sources.list.d directory. so, you can create file with any name here.

p.s. why not to google so essential debian-based system things? i don't think this was the only one elementary thing you didn't knew.

coderus 2013-01-28 13:31

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
MeeGo/Harmattan Fennec QML UI
Build v0.0.1

http://repo.pub.meego.com/home:/code....0.1_armel.deb

UI almost same with this demo: http://www.youtube.com/watch?v=FmleBTAUo-I

Makeclick 2013-01-28 14:06

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by coderus (Post 1318392)
MeeGo/Harmattan Fennec QML UI
Build v0.0.1

http://repo.pub.meego.com/home:/code....0.1_armel.deb

UI almost same with this demo: http://www.youtube.com/watch?v=FmleBTAUo-I

Do i have to remove all old files before your .deb? Thank you Coderus!!! You are one bright light in here!

romu 2013-01-28 15:40

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Just installed. It replaces the Nightly Fennec, and that's a problem :o

coderus 2013-01-28 15:48

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
hm. not used that. need to change package name then.

Sniper_swe 2013-01-28 15:49

Quote:

Originally Posted by romu (Post 1318428)
Just installed. It replaces the Nightly Fennec, and that's a problem :o

I dont see a problem with that:p

thanks Coderus!

Makeclick 2013-01-28 16:02

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Could the top menu appear when you scroll all the way up? Bottom menu is nice, but push and hold + scroll up is not so good with the top menu, i think. Some people will piss their pants, when they try to use it at the first time and if they haven't see your video.

And my N9 is telling there is update available (Firefox 15) :) even this is called a Fennec.

coderus 2013-01-28 16:05

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
i'm uploading package with different name now.

coderus 2013-01-28 16:11

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
@Makeclick this is just a demo for now. not for daily usage or so.

lorenzo 2013-01-28 16:21

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
tried to install but it fails and many apps become unusable during installation (red icon with exclamation mark)

[apt-get purge fennec solve the problem]

Makeclick 2013-01-28 16:25

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by coderus (Post 1318448)
@Makeclick this is just a demo for now. not for daily usage or so.

Of course :eek:! I only try to say what i thinking of it and reporting bugs and how it feels to me.. so.. I try to help.

coderus 2013-01-28 16:25

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
@Makeclick also can't detect if webpage on top :D

Makeclick 2013-01-28 16:58

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
@coderus
Damn.. Then always visible. It is so small and nice, not make any harm up there?

coderus 2013-01-28 17:00

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
http://repo.pub.meego.com/home:/code....0.1_armel.deb

doesnt conflict with old XUL-based Fennec

@Makeclick not for now. i'm ignoring all feature requests for ... a month :)

Mikkosssss 2013-01-28 17:39

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Cant install, Nightly Firefox shows red ! and it wont install. :S

coderus 2013-01-28 17:56

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
who shows red? :D
and what red? :D

Mikkosssss 2013-01-28 18:10

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Nightly Firefox Icon shows red (!) when I try install.

coderus 2013-01-28 18:12

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
ah, sorry.
reuploading file.

Morpog 2013-01-28 18:13

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Proper Harmattan Icon:
http://www.abload.de/img/fenneceis9z.png

Can do other colors if wanted :-)

Makeclick 2013-01-28 18:14

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by Mikkosssss (Post 1318484)
Cant install, Nightly Firefox shows red ! and it wont install. :S

can you try to use: dpkg -i
to install it? What does it say?

Mikkosssss 2013-01-28 18:26

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Quote:

Originally Posted by Makeclick (Post 1318496)
can you try to use: dpkg -i
to install it? What does it say?

No Idea if I did it right. =D

Code:

home/user/MyDocs/Downloads # dpkg -i fennec-qml_0.0.1_armel.deb
Aegis rejecting fennec-qml_0.0.1_armel.deb: Could not open debian archive aegis aborting dpkg -- all listed package files rejected
Compilation failed in require.


coderus 2013-01-28 18:28

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
why not to wait until file reuploading? :D
reuploaded, download and install again :)

Makeclick 2013-01-28 18:39

Re: Qt based Fennec (Firefox) - IPCLiteAPI - Hell it's fast!
 
Is it only i, but it is not as smooth as before .deb? It make small clock accuracy laging all the time. I use stable FasterN9, if that matter..


All times are GMT. The time now is 12:09.

vBulletin® Version 3.8.8