Recommended Posts

Someone by the name of "frozen fire" is making a trillian skin over in the trilly forums. There are trillian skins for LE3 in DA.

heres some screens for LE4 trillian skin :ninja:

screenshot-29168.png

586490873[/snapback]

That looks very nice! But I use MSN. It would be very nice if someone make a MSN skin for this... :ninja:

Making MSN skins is not so suggestable, since, each time a new version is released, the author of the skin has to remake the .exe file again (MSN Messenger doesn't have a "change skin" feature yet, but it is likely things will change with MSN 8).

Talking about Trillian... what's the link to the LE4's skin thread (you can send me a PM too, if it can't be posted in public)?

Thank you! :)

Edited by Mad_Griffith

I have two suggestions for LE4:

+ Change the windows icon on the start menu to the Windows Vista one

+ Create a full package of the Blue Glass Icons as an add-on...

That'll make it complete!

P.S -->

If em3 does not wish to do this that is fine, but i'd still be interested if someone was to create a mod and post them up here!

I have two suggestions for LE4:

+ Change the windows icon on the start menu to the Windows Vista one

+ Create a full package of the Blue Glass Icons as an add-on...

That'll make it complete!

P.S -->

If em3 does not wish to do this that is fine, but i'd still be interested if someone was to create a mod and post them up here!

586491252[/snapback]

AFAIK em3 does not want mods in the wild :rofl:

Someone by the name of "frozen fire" is making a trillian skin over in the trilly forums. There are trillian skins for LE3 in DA.

heres some screens for LE4 trillian skin :ninja:

screenshot-29168.png

586490873[/snapback]

That would be mine, and I made the other Luna Element skins. The one you posted is a skin for the Enhanced Contact List plugin being developed by eh?one. The actual Trillian skin will look just like the VS, no glow or anything (yet, I have some ideas for how to add some though, just not sure if they will work). It should be out sometime soon though. I really just have to make up the panel headers, and thats about it I think :)

I don't really like the glow effect.

586491253[/snapback]

Don't worry. The Trillian skin itself wont have them. It will look just like the VS. The skin for the plugin on the other hand uses them right now, since I wanted to mix Vista with the Luna Element, as well as use some of the plugins cool features :cool:

Man, this theme is making me want to re-consider my decision to not patch my uxtheme.dll (doing those kinds of things never seem to work out for me--I'm not the most handy guy around). Been using Windowblinds since installing themes is so easy with it. Great job on this visual style, it may have converted me to patching....

Man, this theme is making me want to re-consider my decision to not patch my uxtheme.dll (doing those kinds of things never seem to work out for me--I'm not the most handy guy around).  Been using Windowblinds since installing themes is so easy with it.  Great job on this visual style, it may have converted me to patching....

586491862[/snapback]

Yes, I'm like you and never really thought the risk was worth just a new look, until this theme. :D

patching the uxtheme is as easy as installing windowblinds. just run neowins patch, restart ur computer, and voila youre done...no need to run anything, just right click on the desktop and select ur style, easy as switching luna to classic...

586492050[/snapback]

But what like ArChAn9eL said, that patcher makes it simple..or did for me. I would try it if you really want this theme. I love this theme! It's what made me chance it.

patching the uxtheme is as easy as installing windowblinds. just run neowins patch, restart ur computer, and voila youre done...no need to run anything, just right click on the desktop and select ur style, easy as switching luna to classic...

586492050[/snapback]

Well, I went ahead & patched my uxtheme.dll. I did the manual patch after reading of issues w/ the multi-patcher. I am very happy to say, other than the issues I had w/ uninstalling WB :angry: , the patch went off w/out a hitch. Given my past history w/ such things, this is a minor miracle. :D LE4 (black) is probably the best VS I have ever used. I am very happy at this moment. Thanks for the great VS, & thanks for the "push over the edge" to get me to patch uxtheme....

Well, I went ahead & patched my uxtheme.dll.  I did the manual patch after reading of issues w/ the multi-patcher.  I am very happy to say, other than the issues I had w/ uninstalling WB  :angry: , the patch went off w/out a hitch.  Given my past history w/ such things, this is a minor miracle. :D  LE4 (black) is probably the best VS I have ever used.  I am very happy at this moment.  Thanks for the great VS, & thanks for the "push over the edge" to get me to patch uxtheme....

586494401[/snapback]

haha no prob man. it's as simple as cake, and no need to uninstall if u don't like it. it's a system file anyways, not like it would conflict with more resources or anything...

Is anyone going to do a welcome / shutdown screen for LE4? I'm using XPIZE one at the moment, but I'd love to have an LE4 one. Anyone interested?

586494419[/snapback]

I'm working on an update for the Logon file. Klopp might make the shutdown... not sure.

I might make an update to the black style changing the background from creamy greay/yellow hue to pure gray like in Royal, I think it will look better.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      513
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!