Tuesday, April 14, 2009

Test version: K-MeleonCCF ME 0.095 V2 Test

This is a test version for engine testing. Try it but don't mess up with your current K-Meleon folder.

https://sourceforge.net/project/downloading.php?group_id=252608&filename=K-MeleonCCFME0.095V2Test.7z

20 comments:

Anonymous said...

hi hao ,

when are you going to adress the cpu issue ccf has , like when there are sites with inactive flash or gifs in the background it still adds to the cpu usage ,yet when you click preferences the window of the prefecences comes up and you can see the cpu usage drop to normal where it should be .can you in some way implement this in normal usage also. it would reaaaally make ccf much better.

thanks hao

coolwulf said...

Actually I didn't notice this issue before. So when you close this window with inactive flash and gifs, will the CPU usage drop down also?

Anonymous said...

新引擎和旧的有什么进步吗?速度上别落后就行。

:-)

n3m0 said...

FYI: Adblock Plus for K-Meleon 1.0.2 got released today.

Anonymous said...

hao could you also implement easy drag to go's dragging function where if you drag a picture you can assign a folder where it wil be immediately stored , its such a usefull feature and fast too , please consider.

thanks

Anonymous said...

Crap like the previous versions too.

Anonymous said...

hi there
i just found out abt this browser. it's working fine for me. but i would like to report a bug. after copying some text from web page the left mouse click does not work on the text boxes. have to ctrl+v from keyboard.
plz hav a look.

also what abt rss support???

Stanley said...

hi
i also came across the cpu usage issue in the backgroung tab...

does about:config work in ccf???

stanley

Stanley said...

hi again..

where can we report the bugs for the browser??

Stanley said...

hi again...
i just did an acid3 test on this browser...
93/100...wow...its just the same score as firefox's trunk release minefield....

thats gud dude..i know it's using the same gecko rendering engine with tracemonkey....

keepup the good work fellows...
cheers...

ps:- what abt auto fill feature. that would be great.

Anonymous said...

Error when I save the site to mht

line-1:

Error:The requested action with this object has failed.

Anonymous said...

怎么不更新了,等死了快。

Unknown said...

I WROTE THE SAME COMMAND IN THIS FORUM ccf me 0.094, but wanna repit it here for u all to read... i consider it as an important observation... but please Hao Giang, if u consider this spam, excuse me and delete the one u prefer.. thanky

_________________________
hello every-body:

searching the official k-meleon forum, i found a macro for k-meleon that speed up the web pages visualization.
It´s prepared for k-meleon to be used as a .kmm extension. I know that k-meleon ccf me uses .lua macros instead of .kmm ones, but i copy the code of this page and write it at notepad document, changed the extensión to .lua and included it into lua macros folder....and IT WORKS FOR ME..... i know that this macro is prepared for official k-meleon, i knows it should not work with ccf me BUT FOR ME IT WORKS..... AND THAT´S THE IMPORTANT FOR ME
Here you can take a look at the macro http://kmeleon.sourceforge.net/forum/read.php?1,91615

and...this is the MACRO

# K-Meleon Macros (http://kmeleon.sourceforge.net/wiki/index.php?id=MacroLanguage)

# ---------- Page Load Speed-Up ------------------------------------------------------------------------------------
#
# Dependencies : -
# Resources : -
# Preferences : -
#
# ------------------------------------------------------------------------------------------------------------------

SpeedUp_Toggle{
menuchecked=(getpref(BOOL,"network.http.pipelining")==true);
getpref(BOOL,"network.http.pipelining")==true?&_SpeedUp_Disable:&_SpeedUp_Enable;
}

# ----- PRIVATE

_SpeedUp_Enable{
statusbar(sub("%s",$on,_("Carregador de página %s")));

# TURN ON TIMER BASED REFLOW MANAGEMENT
setpref(BOOL,"content.notify.ontimer",true);

# SETS THE ALLOWED TIME BETWEEN REFLOWS IN MICROSECONDS
setpref(INT, "content.notify.interval",1000000);

# SET THE NUMBER OF REFLOWS TO DO BEFORE WAITING FOR THE REST OF THE PAGE TO ARRIVE
setpref(INT, "content.notify.backoffcount",10);

# ENABLE IMPROVED PIPELINING
setpref(BOOL,"network.http.pipelining",true);
setpref(INT, "network.http.pipelining.maxrequests",100);
setpref(BOOL,"network.http.proxy.pipelining",true);

# INCREASE MULTI-THREADED DOWNLOAD PERFORMANCE
setpref(INT, "network.http.max-connections",60);
setpref(INT, "network.http.max-connections-per-server",32);
setpref(INT, "network.http.max-persistent-connections-per-proxy",16);
setpref(INT, "network.http.max-persistent-connections-per-server",8);

# CONFIG BY XGRIND
setpref(INT,"nglayout.initialpaint.delay", 0)
setpref(BOOL,"network.dns.disableIPv6", true);
setpref(BOOL,"content.interrupt.parsing", true);
setpref(INT,"content.max.tokenizing.time", 2250000);
setpref(INT,"content.switch.threshold", 750000);
setpref(INT,”browser.cache.memory.capacity”, 65536);
setpref(BOOL,"browser.xul.error_pages.enabled", true);
setpref(INT,"network.http.keep-alive.timeout", 30);
setpref(INT,"network.ftp.idleConnectionTimeout", 60);
setpref(INT,"network.dnsCacheEntries", 256);
setpref(INT,"network.dnsCacheExpiration", 86400);
setpref(BOOL,"browser.turbo.enabled", true);
setpref(BOOL,"plugin.expose_full_path", true);
setpref(BOOL,"network.prefetch-next", false);
}

_SpeedUp_Disable{
statusbar(sub("%s",$off,_("Carregador de página %s")));

# RESTORE DEFAULTS
setpref(INT,"nglayout.initialpaint.delay", 250)
delpref("content.notify.ontimer");
delpref("content.notify.interval");
delpref("content.notify.backoffcount");
delpref("network.http.pipelining");
delpref("network.http.pipelining.maxrequests");
delpref("network.http.proxy.pipelining");
delpref("network.http.max-connections");
delpref("network.http.max-connections-per-server");
delpref("network.http.max-persistent-connections-per-proxy");
delpref("network.http.max-persistent-connections-per-server");
delpref("network.dns.disableIPv6");
delpref("content.interrupt.parsing");
delpref("content.max.tokenizing.time");
delpref("content.switch.threshold");
delpref("browser.cache.memory.capacity”);
delpref("browser.xul.error_pages.enabled");
delpref("network.http.keep-alive.timeout");
delpref("network.ftp.idleConnectionTimeout");
delpref("network.dnsCacheEntries");
delpref("network.dnsCacheExpiration";
delpref("browser.turbo.enabled");
delpref("plugin.expose_full_path");
delpref("network.prefetch-next");
}

_SpeedUp_BuildMenu{
# tools menu
setmenu(Settings,macro,"Carregador de &Página",SpeedUp_Toggle);
}
$OnInit=$OnInit."_SpeedUp_BuildMenu;";

# ------------------------------------------------------------------------------------------------------------------
$macroModules=$macroModules."SpeedUp;";

_______________________________

ITS POSSIBLE SOME ONE COULD WRITE TE CORRECT CCF ME MACRO, but till then.... I CONTINUE USING THIS ONE

THANKY
dj_creator4
http://pp4mnk.zxq.net

Anonymous said...

update pls.

Anonymous said...

"does about:config work in ccf???"

no, richstanleydavid. it doesn't work in k-meleonccf. tried it myself and got error message 'The file about:config can not be found. Please check the location and try again.' pretty annoying as I had to edit the profile's prefs.js file and add some stuff in it.

also, go to this Kmeleon forum thread on discussing KmeleonCCF ME 0.095 V2:
kmeleon.sourceforge.net/forum/read.php?1,91246

Gecko needs to be updated for K-meleonCCF ME 0.09x. I'll wait for the upcoming 0.096 release.

BTW - Firefox 3.5b4 came out almost two weeks ago

Anonymous said...

man. wt r u doing??? update, update!!!

Anonymous said...

CRAP, SHIT , ANALFUCK. This "browser" is a puke. LOL

Вадик said...

Где аффтор? Когда новая версия выйдет?

Anonymous said...

haoooooooooooooo

Vadick said...

Китаец походу забухал чи шо? Ждём когда выплывет из запоя и порадует нас очередным шЫдевром