MSFN Forum: SmoothText 1.1.8 - MSFN Forum

Jump to content


  • 26 Pages +
  • « First
  • 23
  • 24
  • 25
  • 26
  • You cannot start a new topic
  • You cannot reply to this topic

SmoothText 1.1.8 Subpixel antialiaser for Windows 2000 Rate Topic: -----

#481 User is offline   Svenne 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 01-May 10
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 July 2010 - 06:50 PM

I was almost certain I posted a hyperlink in my previous post. Strange
Anyway, here you go: http://www.mediafire...woy1vejcma2rzdn

This post has been edited by Svenne: 14 July 2010 - 06:52 PM



#482 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 14 July 2010 - 09:40 PM

Forget everything I said about the taskbar thickness setting. It should reflect the desired visual thickness, not the client thickness. In your case, it should be set to 20. (sheesh...I wrote it and I got it wrong).

The other problems you were seeing were the results of either bugs or aspects that weren't supported (such as thinner-than-normal taskbars). I've posted version 1.1.3 which should give you much better results.

#483 User is offline   Svenne 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 01-May 10
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 18 July 2010 - 07:46 AM

Thanks a lot!
I've been working on my own theme for a while now, but I still have some problems:
  • The start button is oddly deformed, even though it has the same height as the taskbar.
    Posted Image
  • 2nd level drop down menu skinning doesn't work.
    Posted Image
  • The Quicklaunch icons doesn't resize to fit the taskbar.
    Posted Image
  • I want to add a space between the edge of the system tray and the first icon. I tried using ContentRect, but instead got a black square where the space should've been.
  • Transparent icon captions doesn't work unless font smoothing is turned on.
    Posted Image

Download: http://www.mediafire...9ahojub4bzypcrj

This post has been edited by Svenne: 18 July 2010 - 07:49 AM


#484 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 18 July 2010 - 07:51 PM

2nd-level dropdown menu skinning should work, but the Explorer shell's New... submenu is owner-drawn. That's why it looks different. For example, the Arrange Icons... submenu paints correctly.

I saw the start button issue too with your skin, I think it has to do with the narrowness of the taskbar. I'll have to play with it some more to see what's going on.

For the Quicklaunch icons, try adding these settings to the [METRICS] section to see if they help:

TaskbarIconWidth=16
TaskbarIconHeight=16

To get extra system tray space, you have to assign an image to the tray:

[COMPONENT_SYSTEMTRAY]
Type=Image
Component=SystemTray
Image= <-- Need to assign an image and set the image's ContentRectLeft setting
State=Normal
StartingFrame=0
EndingFrame=0
TextColor=White
Font=Arial_10px_Normal

Transparent icon text works through the font smoothing engine, so yes, it won't work with font smoothing disabled.

View PostSvenne, on 18 July 2010 - 07:46 AM, said:

Thanks a lot!
I've been working on my own theme for a while now, but I still have some problems:
  • The start button is oddly deformed, even though it has the same height as the taskbar.
    Posted Image
  • 2nd level drop down menu skinning doesn't work.
    Posted Image
  • The Quicklaunch icons doesn't resize to fit the taskbar.
    Posted Image
  • I want to add a space between the edge of the system tray and the first icon. I tried using ContentRect, but instead got a black square where the space should've been.
  • Transparent icon captions doesn't work unless font smoothing is turned on.
    Posted Image

Download: http://www.mediafire...9ahojub4bzypcrj

This post has been edited by WildBill: 18 July 2010 - 07:52 PM


#485 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 20 July 2010 - 07:33 PM

Version 1.1.4 is now up, with a couple of fixes.

#486 User is offline   Svenne 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 01-May 10
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 31 July 2010 - 02:04 PM

View PostWildBill, on 18 July 2010 - 07:51 PM, said:

2nd-level dropdown menu skinning should work, but the Explorer shell's New... submenu is owner-drawn. That's why it looks different. For example, the Arrange Icons... submenu paints correctly.

I saw the start button issue too with your skin, I think it has to do with the narrowness of the taskbar. I'll have to play with it some more to see what's going on.
Thank you. I studied the problem a bit more carefully, and it seems like the four top/bottom pixels gets shifted two pixels to the left.

For the Quicklaunch icons, try adding these settings to the [METRICS] section to see if they help:

TaskbarIconWidth=16
TaskbarIconHeight=16
Already have, and it doesn't work. Thanks anyway.

To get extra system tray space, you have to assign an image to the tray:

[COMPONENT_SYSTEMTRAY]
Type=Image
Component=SystemTray
Image= <-- Need to assign an image and set the image's ContentRectLeft setting
State=Normal
StartingFrame=0
EndingFrame=0
TextColor=White
Font=Arial_10px_Normal
I have an image assigned, and I set contentrectleft to 4, and it works! I think your 1.1.4 update fixed it.

Transparent icon text works through the font smoothing engine, so yes, it won't work with font smoothing disabled.
Oh. Any chance you can fix it in the future?

Another flaw I've noticed is the CPU usage. Explorer.exe uses around 30% on it's own. Is there any optimization I can do? Will using RLE-compressed TGA bitmaps decrease performance?

This post has been edited by Svenne: 31 July 2010 - 02:06 PM


#487 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 01 August 2010 - 08:38 PM

No, the bitmap format won't have any effect since everything is stored in memory uncompressed. I've actually been making a lot of speed optimizations for version 1.1.5, as I've been gradually improving support for alpha-blended window borders on Windows 2000 and performance was suffering. Let me see if it's good enough to release as-is.

#488 User is offline   Svenne 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 01-May 10
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 02 August 2010 - 04:58 AM

I think there might be something wrong with my theme. After updating to SmoothText 1.1.5, explorer.exe's CPU usage increased by 33-50% (from 20-30% to 30-40%).

#489 User is offline   Sweet William 

  • Newbie
  • Group: Members
  • Posts: 25
  • Joined: 19-July 08

Posted 04 November 2010 - 03:13 AM

OK, I downloaded version 1.1.5 and ...

Can't find any mention of installation procedures in the archive or this thread.

Unfortunately I'm neither psychic nor clairvoyant so I'm going to need some help here.

If someone would divulge this little secret, I promise I won't tell a soul.

TIA

#490 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 05 November 2010 - 08:15 PM

There isn't any special installation procedure, just unzip everything to a folder and run SmoothText.exe.

#491 User is offline   Sweet William 

  • Newbie
  • Group: Members
  • Posts: 25
  • Joined: 19-July 08

Posted 06 November 2010 - 08:19 AM

WOW!

Thanks heaps.

#492 User is offline   Phenomic 

  • Member
  • PipPip
  • Group: Members
  • Posts: 231
  • Joined: 31-July 09
  • OS:none specified
  • Country: Country Flag

Posted 07 November 2010 - 01:05 PM

Neat, I had to try this.

I have ViewSonic VP181b IPS display with BGR screen instead of the usual RGB. With SmoothText 1.1.5 set to BGR all text looks highlighted with a yellow marker. The color looks like the inverse of the system background color.

I haven't rebooted yet, is a reboot necessary? I just started SmoothText.exe


Thanks !

#493 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 07 November 2010 - 11:02 PM

No, a reboot isn't necessary. Can you post a screenshot?

#494 User is offline   Phenomic 

  • Member
  • PipPip
  • Group: Members
  • Posts: 231
  • Joined: 31-July 09
  • OS:none specified
  • Country: Country Flag

Posted 08 November 2010 - 06:52 AM

View PostWildBill, on 07 November 2010 - 11:02 PM, said:

No, a reboot isn't necessary. Can you post a screenshot?


Text color also changes to dark blue from default black. And smoothtext works even if text smoothing is turned off in windows display properties. Your BGR setting definitely works and is much sharper than RGB on my display.

http://bellsouthpwp2.../smoothtext.bmp

ps: I'm getting error msg "You are not allowed to use that image extension on this board."

#495 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 31 January 2011 - 10:04 PM

I haven't updated this in a while, but if I can ever get my head above water with respect to the Win2k patches I'd like to do some more work on this. Anyway, I thought I'd post a desktop screenshot to show what it can do. I'm curious: has anyone tried building any SmoothText skins?

Posted Image

#496 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 12 February 2011 - 09:09 PM

Version 1.1.6 of SmoothText is now available. The only change is speed optimizations for the skinning engine. Performance isn't yet where I'd like it to be, but it's noticeably faster. Both the NT4 and W2k versions will see a speed boost when the skinning engine is active, though the W2k version will see a greater improvement since it supports SSE2 whereas NT4 only supports MMX.

#497 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 14 February 2011 - 11:34 PM

I took the night off from Windows patches and made some more improvements to SmoothText. This version fixes some bugs in the last version and adds further speed improvements for newer CPU's that support SSE4.1 instructions (many dual-core and quad-core CPU's support them). These optimizations only affect the W2k version, but I also improved the internal bitmap code to pre-align images along 16-byte boundaries. This was important to realize the full benefit on the W2k version but also has the potential to result in a modest speed improvement for the NT4 version. Version 1.1.7 is now available with the changes.

This post has been edited by WildBill: 14 February 2011 - 11:35 PM


#498 User is offline   WildBill 

  • Senior Member
  • Group: Developers
  • Posts: 675
  • Joined: 09-August 05
  • OS:none specified
  • Country: Country Flag

Posted 25 March 2011 - 09:40 PM

SmoothText 1.1.8 is now available; it includes a small fix for Firefox 4 compatibility.

Enjoy, :hello:

#499 User is offline   tomasz86 

  • http://windows2000.tk
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,249
  • Joined: 27-November 10
  • OS:XP Pro x86
  • Country: Country Flag

Posted 29 April 2011 - 09:12 AM

I'm trying to run SmoothText on an old computer with a Pentium III 866MHz processor.

It's incredibly slow. The CPU usage jumps up to 50% just by running SmoothText and becomes almost unusable :(

Is there any way to speed it up?

#500 User is offline   Sweet William 

  • Newbie
  • Group: Members
  • Posts: 25
  • Joined: 19-July 08

Posted 03 August 2011 - 05:58 PM

Really bad rendering problem with text editors using Scintilla control. The control is used in Notepad++, Scite, Notepad2, and a whole lot more tools.

The problem is inserted strings of spaces, particularly when font characteristics change within a line.

The problem will be easy for you to spot, just load some source code into Notepad++ and you'll see it.

At least the source code for Scintilla is available.

Hope you can find a solution because the problem really is a deal breaker.

--
Bill

Share this topic:


  • 26 Pages +
  • « First
  • 23
  • 24
  • 25
  • 26
  • You cannot start a new topic
  • You cannot reply to this topic

3 User(s) are reading this topic
0 members, 3 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy