General :  K-Meleon Web Browser Forum
General discussion about K-Meleon 
Pages: 12Next
Current Page: 1 of 2
【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 27, 2009 01:28AM

http://kmeleon.blogspot.com

【Screenshot】







【Release Notes】

+ New titleless window design
+ When titleless window maximize, it won't overlap taskbar,Fullscreen with F11
+ Enable/Disable titleless window design in Preference->Display
+ New skins adapted for titless window design, Including mezich,Milk,Shiny&Bright,Silverbird,Tango
+ Full Screen menu item in popup menu and View menu
+ Updated to Gecko 1.92a (Seamonkey 2.0b1pre)

【Download】

https://sourceforge.net/project/platformdownload.php?group_id=252608



Edited 2 time(s). Last edit at 02/28/2009 04:24AM by Hao Jiang.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Date: February 27, 2009 02:07AM

wow

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: caktus
Date: February 27, 2009 02:40AM

Sweet! And so was that underhanded swoosh from mid court, BTW. Anybody else see that?

Charlie

~~If it ain't broke, why screw it up?~~


Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Arrow
Date: February 27, 2009 03:09AM

Very nice Hao, thankyou.

But I really really really grinning smiley do not like a frame around the browser window, how can I remove this please?



Edited 1 time(s). Last edit at 02/27/2009 03:16AM by Arrow.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: disrupted
Date: February 27, 2009 05:13AM

i think the frame thing is a vista thing.. cause i don't have it on xp.

i'm extremely against skins overriding original api mainly because they have a take on resources.. but as always k-meleon exceeds all expectations. just like km on linux, even with an overriding skin this version is still responsive and fast.

i still prefer original api theme over an overriding skin but this was a marvellous experience and great work on adapting adblockplus into lua preferences.

the tabs in titlebar may also shed some light over the tabbar bug in vista.

thank you hao.. as always.. outstanding job

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: disrupted(onLUA)
Date: February 27, 2009 05:20AM

there's a minor bug.. when having the windows taskbar displayed as top and hitting the maximise button.. the browser leaves a small ribbon space at the bottom.. i think because it's assuming taskbar is at the bottom

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: disrupted
Date: February 27, 2009 05:36AM

ah i got it.. you didn't actually place the tabs on the titlebar.. but just hid the titlebar.. nice optical illusion smiling smiley that's why when maximising from the tools buttons, it leaves that space(reserving the hidden titlebar) but when maximised from the taskbar button it fills up the screen normally..so maybe not a bug. smiling smiley

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 27, 2009 03:53PM

Quote
Arrow
Very nice Hao, thankyou.

But I really really really grinning smiley do not like a frame around the browser window, how can I remove this please?

On Vista/Win 7? There is a way to remove it. But after that, you can't resize the window sad smiley

Try maximize the window when pressing '+' button on the top right corner of the skin. Will you see this frame also?

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 27, 2009 04:14PM

Quote
disrupted
ah i got it.. you didn't actually place the tabs on the titlebar.. but just hid the titlebar.. nice optical illusion smiling smiley that's why when maximising from the tools buttons, it leaves that space(reserving the hidden titlebar) but when maximised from the taskbar button it fills up the screen normally..so maybe not a bug. smiling smiley

:p Yeah what I did was just hiding the titlebar (which I call it titeless window desgin) And I gree there are still some glitches when maximizing the window, what I did at this moment is: (From the source code)

void CBrowserFrame::OnToggleWindow()
{
if(m_zoom){
SetWindowPos(NULL,rc.left,rc.top,rc.right-rc.left,rc.bottom-rc.top,SWP_SHOWWINDOW);
m_zoom=false;
ModifyStyle(0 , WS_SIZEBOX|WS_THICKFRAME, SWP_DRAWFRAME);
}
else{
GetWindowRect(&rc);
int cx = GetSystemMetrics(SM_CXSCREEN);
int cy = GetSystemMetrics(SM_CYSCREEN);
CRect *pRect= new CRect;;
HWND hShellTrayWnd = ::FindWindow(_T("Shell_TrayWnd"), NULL);
::GetWindowRect(hShellTrayWnd, pRect);
SetWindowPos(NULL,0,0,cx,cy-pRect->Height(),SWP_SHOWWINDOW);
m_zoom=true;
ModifyStyle(WS_SIZEBOX|WS_THICKFRAME, 0 , SWP_DRAWFRAME);
}
}

Any better idea for SetWindowPos (for maximizing)?

Cause with the titleless window, I can't just use ShowWindow(SW_MAXIMIZE), or it will overlap the taskbar sad smiley

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: desga2
Date: February 27, 2009 04:40PM

I known people that use taskbar in left or rigth side of screen, not at bottom.
Really this isn't a good solution if this not contemplates all posibilities.
We need a way to know where is taskbar and what's his size. Some key value in windows registry?

K-Meleon in Spanish



Edited 1 time(s). Last edit at 02/27/2009 04:40PM by desga2.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 27, 2009 04:44PM

Quote
desga2
I known people that use taskbar in left or rigth side of screen, not at bottom.
Really this isn't a good solution if this not contemplates all posibilities.
We need a way to know where is taskbar and what's his size. Some key value in windows registry?

It can could be solved and just need a little bit more coding for accomdating more possibilities.

See my above code,

HWND hShellTrayWnd = ::FindWindow(_T("Shell_TrayWnd"), NULL);
::GetWindowRect(hShellTrayWnd, pRect);

This piece of code can get the window handle of taskbar and its corresponding position and size. I just need to think about more taskbar position possibilities I guess.

Anyway, I 'll try to solve this in the next release.

Thank,

Hao



Edited 1 time(s). Last edit at 02/27/2009 04:47PM by Hao Jiang.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: baby
Date: February 27, 2009 11:48PM

Good works!
My dear brother Hao!
Why not chinesize the lastest version K-Meleon 1.5.2 (2008-12-25)?
Maybe most fans include everyone from the Mainland prefer original version and original feel!
So far Simplified Chinese Version K-Meleon 1.1.6 (2008-07-18) is my favorite choice!
Hope Dorian provide the lastest Chinese Version as soon as possible!
Great thanks!tongue sticking out smiley

Love K-Meleon indeed!

Chinese version of K-Meleon
is my Best Love!

Hope Dorian Boissonnade provide
Chinese version At the same time!

Hope to support
commonly used software "Roboform"!

Hope to add "Save web as Plain Text without Page Elements"!

Hope "Favorites add "
can be divided into kinds Easily
as IE browser!

Great thanks Dorian Boissonnade!
Good Luck and Great Success
in the coming new year
to Dorian Boissonnade、every one!

Milk-based Tea MM
from Faraway China!

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Arrow
Date: February 27, 2009 11:50PM

Quote
Hao Jiang
Quote
Arrow
Very nice Hao, thankyou.

But I really really really grinning smiley do not like a frame around the browser window, how can I remove this please?

On Vista/Win 7? There is a way to remove it. But after that, you can't resize the window sad smiley

Try maximize the window when pressing '+' button on the top right corner of the skin. Will you see this frame also?


I'm using xp pro.

When I click the + button it removes all the frames save for a thin line/frame the colour of my desktop along the bottom between the k-m's status bar and the quick launch/taskbar - this happens on two different pcs with xp

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 28, 2009 03:03AM

Quote
Arrow
Quote
Hao Jiang
Quote
Arrow
Very nice Hao, thankyou.

But I really really really grinning smiley do not like a frame around the browser window, how can I remove this please?

On Vista/Win 7? There is a way to remove it. But after that, you can't resize the window sad smiley

Try maximize the window when pressing '+' button on the top right corner of the skin. Will you see this frame also?


I'm using xp pro.

When I click the + button it removes all the frames save for a thin line/frame the colour of my desktop along the bottom between the k-m's status bar and the quick launch/taskbar - this happens on two different pcs with xp

Do you mean when the window is maximized, you can still see frames of the window? Sorry for my hard understanding.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Arrow
Date: February 28, 2009 04:01AM

My poor explanation

There is a thin gap between ccfme status bar and the xp taskbar - the desktop colour shows through. (this makes it look like a partial coloured frame alonmg the bottom of the browser)

I can't resize ccf me to fill gap after clicking maximise.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: gogogadgetgo
Date: February 28, 2009 04:18AM

This release is brilliant!!!

Is there any way to set Adblock Plus to subscribe to Easylist?
Can we change the search providers listed in the SearchBar Ext? It will be great if we can use http://mycroft.mozdev.org/ to add new providers!

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 28, 2009 04:20AM

Quote
Arrow
My poor explanation

There is a thin gap between ccfme status bar and the xp taskbar - the desktop colour shows through. (this makes it look like a partial coloured frame alonmg the bottom of the browser)

I can't resize ccf me to fill gap after clicking maximise.

I see. On some systems which I 'm not sure, I heard this problem. You can try to download this file:

https://sourceforge.net/project/platformdownload.php?group_id=252608

the additional download file kmeleon.7z have a new exe which might fix your problem.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: gogogadgetgo
Date: February 28, 2009 04:55AM

Is there a way to change the amount of pixels nudged when we lock the toolbar? Seems like it gets nudged to the left way too much that it looks weird.

-

-

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: February 28, 2009 04:57AM

Quote
gogogadgetgo
Is there a way to change the amount of pixels nudged when we lock the toolbar? Seems like it gets nudged to the left way too much that it looks weird.

-

-

This might be changed modifying the toolbar plugin source. When having time, I 'll take a look at this issue...

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: desga2
Date: February 28, 2009 02:22PM

Quote
babe
Hope to add "Save page as *.txt"!

An interesant request.

K-Meleon in Spanish

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: March 02, 2009 06:27PM

Quote
gogogadgetgo
This release is brilliant!!!

Is there any way to set Adblock Plus to subscribe to Easylist?
Can we change the search providers listed in the SearchBar Ext? It will be great if we can use http://mycroft.mozdev.org/ to add new providers!

I 'll probably add a customized search list in next release.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: JamesD
Date: March 02, 2009 10:11PM

Quote
baby
Love K-Meleon indeed!
Hope to add "Save page as *.txt"!
Hope "Favorites add "
can be divided into kinds Easily!

With regard to "Save page as *.txt", what do you propose should happen to images and links in the txt file?

With regard to "Favorites add", can you give an example of the "kinds" that you mentioned?

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: guenter
Date: March 02, 2009 11:12PM

Quote
Hao Jiang
I 'll probably add a customized search list in next release.

IMHO there is something more urgent for all versions.

Disrupted found this big bug for the versions with normal chrome.

Try to reach these URLs.

https://www.mrtech.com/forums/index.php?action=printpage;topic=126.0 / missmatch
https://group.nctu.edu.tw / expired
https://oim.grid.iu.edu/gocticket/viewer?id=4873 / unknown

CCFME with/for GRE 1.9 cannot reach these pages.
The no Xul/ME versions show nothing and just do not go to these places.

This is a problem of all versions.
The internal cert handling is gone.

Last chromes show at least a text what to do. But it is complicated.
The SeaMonkey certificates page draws files from messenger sad smiley
At the moment I try to locate what is needed.

But it will not work completely. Even with a full unaltered/untrimmed chrome sad smiley

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: desga2
Date: March 03, 2009 11:11AM

@ JamesD:
Quote
With regard to "Save page as *.txt", what do you propose should happen to images and links in the txt file?

Images can be replaced by his "Title" or "Alt" attribute text and his url or by default text if this attribute isn't defined and his url, for example; <IMAGE=http://image.url>. Where IMAGE text will be replaced by "Title" or "Alt" attribute text

For links something similar, <LINK=http://link.url>, where LINK text will be replaced by the text link.

K-Meleon in Spanish



Edited 1 time(s). Last edit at 03/03/2009 11:11AM by desga2.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: JCarg0
Date: March 03, 2009 03:17PM

Can we use CCF ME with the normal version?
I installed CCF ME and it broke the settings of the normal version(color, menu,...).
I changed the location of the profile folder of CCF ME, so I don't know if this break is general.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: desga2
Date: March 04, 2009 12:12PM

@ JCargO:
Remember to use -new command line parameter at start if you use both in same time.

K-Meleon in Spanish

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Lex1
Date: March 04, 2009 02:35PM

1) New titleless design is good, but with white color for the active tab, it looks as input field and, imho, it not very intuitive.
2) Latest version oGet is supported "download selection". Please update it.
3)"View selected html" doesn't work for me.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Lex1
Date: March 04, 2009 03:53PM

Quote
Lex1
3)"View selected html" doesn't work for me.
Because it blocked as popups winking smiley

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: Hao Jiang
Date: March 04, 2009 05:22PM

Quote
Lex1
1) New titleless design is good, but with white color for the active tab, it looks as input field and, imho, it not very intuitive.
2) Latest version oGet is supported "download selection". Please update it.
3)"View selected html" doesn't work for me.

1) Could you please be a little more specific for this problem? Like which skin you are using?

2) I 'll update it in the next release (0.093)

3) This could be fixed with popup allowed when this command is chosen.

Options: ReplyQuote
Re: 【:drool:Beauty with Speed】 K-MeleonCCF ME 0.092
Posted by: JCarg0
Date: March 04, 2009 05:39PM

Profile break doesn't happen again. but -new option has a problem.
If we use '-new' when no k-meleon(normal or CCFME) is open, it loads -new in the url bar. I think this isn't good because we can't use 'k-meleon.exe -new' as one only shortcut.

Options: ReplyQuote
Pages: 12Next
Current Page: 1 of 2


K-Meleon forum is powered by Phorum.