Glary Utilities 歷史舊版本 Page7

最新版本 Vita3K

Glary Utilities 歷史版本列表

Glary Utilities 是一個偉大的系統優化器,為 PC 性能優化提供一站式解決方案。它提供了 Windows 註冊表清理,磁盤清理,內存優化,啟動管理器,軌道橡皮擦,系統控制,文件管理,系統還原,性能加速器和許多其他驚人的多功能工具。有了這個幫手,您可以修復註冊表錯誤,消除雜亂,釋放磁盤空間,優化互聯網速度,保護機密文件,恢復刪除的文件,檢查軟件更新和優化您的系統。 Glary Util... Glary Utilities 軟體介紹


Godot Engine 3.3.1 (64-bit) 查看版本資訊

更新時間:2021-05-19
更新細節:

EarthView 6.10.8 查看版本資訊

更新時間:2021-05-09
更新細節:

What's new in this version:

- New: updated city database

TeamViewer Meeting 15.17.3 查看版本資訊

更新時間:2021-04-27
更新細節:

Godot Engine 3.3 (64-bit) 查看版本資訊

更新時間:2021-04-22
更新細節:

What's new in this version:

Platforms:
Godot editor on the Web:
- Fabio Alessandrelli (Faless) has done a lot of work to enable running the Godot editor on the Web, using the same export code as for Godot-made games (since the Godot editor is developed 100% with the Godot API). These changes have led to countless improvements for Web exports (see below).
- Building upon the initial prototype, we've now reached a state where we're happy to release the Web editor in sync with the native version, so you can find the latest stable version on editor.godotengine.org.
- Web editor running the "Ninja Adventure" demo from the eponymous CC0 asset pack by Pixel-Boy and AAA.

Android: App Bundle, subview, signing:
- Android App Bundle (AAB) is a publishing format that enables more efficient distribution of Android apps. Thanks to Aman Jain (amanj120) and the support of our Android maintainer Fredia Huya-Kouadio (m4gr3d), Godot 3.3 now supports exporting AABs in addition to APKs.
- Google Play recommends publishing AABs since they enable the Play Store to distribute only the preferred native libraries for the ABI of a device, e.g. only armeabi-v7a or arm64-v8a. In the second half of 2021 AABs will become the only supported publishing format for Google Play.
- Additionally, many other features have been implemented such as subview embedding, support for cutout/notches on Android 9+, and implementation of mouse events and external keyboard input.
- To accommodate Google Play requirements, we disable the requestLegacyExternalStorage attribute when there are no external storage permissions enabled. Note that if you do need access to external storage, Godot will currently still need to set this attribute as support for scoped storage hasn't been implemented yet.
- Similarly, we've updated the signing logic to use apksigner instead of the now deprecated jarsigner. This requires you to review your Android SDK setup and editor settings to make sure that Godot can find apksigner in a compatible version. See Exporting for Android for the updated documentation.

iOS: New plugin API:
- Godot 3.2.2 introduced a new API for Android plugins which allow building and distributing them easily to end users.
- For 3.3, Sergey Minakov implemented the same interface for iOS plugins. This made it possible to move iOS plugins such as ARKit, GameCenter, InAppStore, etc. to a separate, first-party godot-ios-plugins repository, so they can be improved independently of Godot itself.
- And the same can be done for third-party plugins which can now be distributed as convenient plug-and-play packages. See iOS plugins for the relevant documentation on creating and using such plugins.

HTML5: Threads, GDNative, AudioWorklet:
- In parallel to working on the Web editor, Fabio did many improvements to the HTML5 platform port which will benefit all users
- One notable change is that there is now support for both threads and GDNative in the HTML5 platform port. However, due to platform limitations, those are mutually incompatible. Additionally, the threads support depends on the SharedArrayBuffer API, which is not yet supported in all browsers (notably Safari on macOS and iOS). As such Godot 3.3 comes with three different export templates, see Exporting for the Web for detailed documentation.
- The "threads" build additionally benefits from support for the AudioWorklet API, which allows better audio output without blocking the main thread.
- Fabio also greatly improved support for gamepads and virtual keyboards in the Web export... and tons of other things which would be impossible to mention exhaustively here. But in short, 3.3 is a massive release for the Web export.

macOS: ARM64 build, code signing:
- Thanks to Pāvels Nadtočajevs (bruvzg), Godot 3.2.3 already had support for compiling Godot for Apple M1 Macs (ARM64 architecture), but we hadn't updated our infrastructure to provide such builds at the time. With Godot 3.3, we now provide a universal binary which supports both x86_64 and ARM64 Macs. As of 3.3, this is only for the standard build, not for the Mono ones, as we still need more work to be able to cross-compile Mono for Apple M1.
- Additionally, we now provide editor binaries which are signed and notarized, so you should no longer need to jump through hoops to run Godot on a Mac. Thanks to Hein-Pieter van Braam-Stewart (hpvb) and his company Prehensile Tales who provide the Mac and signing certificate needed for this. Both standard and Mono builds are notarized.
- The export dialog now has support for signing your builds when you export your game from a Mac, including the configuration of entitlements (this is sadly not possible from other OSes as it depends on macOS-specific tools).

Core:
Modernized multi-threading APIs:
- After doing this work for the master branch (4.0), Pedro J. Estébanez (RandomShaper) backported his modernization of multi-threading APIs to the 3.x branch. This builds upon Godot's recent adoption of C++11 and beyond (now C++17 in the master branch, C++14 in 3.x), which provides us with more reliable cross-platform implementations than the ones we had so far.
- This should help fix some issues which could affect specific platforms, as well as improve overall reliability and performance. It is however a fairly major change so if your projects relied heavily on multi-threading APIs and you encounter any issue with 3.3, please make sure to report it.

Dynamic BVH for rendering and GodotPhysics:
- Our contributor lawnjelly seems to have decided to tackle many much needed optimizations for the 3.x branch, to ease our waiting time for Godot 4.0. One such optimization was the implementation of a dynamic BVH method for spatial partitioning as an alternative to Godot's existing Octree. This aims at solving many performance issues and bugs of the octree implementation, and benefits the rendering and GodotPhysics backends specifically (Bullet already has its own BVH).
- The new BVH is used by default, but there are project settings to change that and go back to the octree method if you notice issues in your project. Make sure to report any problem you encounter on GitHub, so that we can keep improving this for Godot 3.4.

Raise errors when accessing deleted objects in debug:
- Most Godot users are familiar with the infamous situation of attempting to access a reference to an Object after it has been freed. The reference does not evaluate to null, yet it can't be safely dereferenced, leading to the risk of crashes in release builds if such dereferencing is not verified with is_instance_valid(). There were several fixes around this in 3.2.2, and some follow-ups in 3.2.3 but going one step too far: in debug builds in 3.2.3, such references to freed objects would evaluation as null, thus leading to tricky situations where a game runs fine in the editor (debug) but would error out or crash once exported in release mode.
- Godot 3.3 solves this by no longer decaying references to freed objects to null in debug builds, so you should properly get errors in the editor that let you identify which code is problematic.

Rendering:
Unified 2D batching:
- After implementing 2D batching in GLES2 in 3.2.2 and 3.2.3, lawnjelly has overhauled the system with a common intermediate layer allowing it to operate in GLES3 as well as GLES2. In addition batching has been expanded to cover many other primitives (polys, lines, ninepatches) as well as the rects featured in earlier versions.
- New vertex formats allow many more custom shaders and cases to take advantage of batching than before, and optional 2D software skinning has been added which should allow using 2D skeletal animation on a far wider range of hardware than was previously available.
- As always, it is possible to revert to the legacy renderer by turning off batching in project settings

New CPU lightmapper:
- The lightmapper in the previous 3.x releases was quickly put together before the 3.0 release and it had some major issues. It was reusing parts of the code for baking GIProbes, and that made it quick but not great in terms of quality. Back in summer 2019 we already knew Godot 4.0 would feature a completely new GPU-based lightmapper, but it required Vulkan support and 4.0 was still far away, so we tasked Joan Fons (jfons), as part of the GSoC program, to write a new CPU lightmapper for Godot 3.x. After a long hiatus in development and a couple of rewrites here and there, the brand new CPU lightmapper was finally merged into the 3.3 branch at the begining of this year.
- The biggest difference with the old lightmapper is that the new one features proper path tracing, which results in better looking lightmaps. Also, the new lightmapper brings support for denoising using Open Image Denoise, which results in better-looking lightmaps in the same bake time range. On top of that, other quality of life improvements have been added or back-ported from 4.0, such as support for baking environment lighting, lightmap texture atlassing, per-object resolution scaling, cubic filtering of lightmaps at runtime, and last but not least, automatic disabling of baked lights, which eases up the pain of mixing baked and non-baked objects and light in the same scene.
- Note that the new lightmapper uses the Embree raytracing library which is only compatible with x86_64 hardware. It is therefore not available on 32-bit Windows and Linux builds, nor on Apple Silicon (you can use Rosetta emulation to use the x86_64 version for baking lightmaps).
More rendering improvements:
- While there's so much rendering work being done for Godot 4.0, the 3.3 release got its fair share of improvements, thanks to the dedicated of contributors such as lawnjelly, Clay John (clayjohn), Joan, Hugo Locurcio (Calinou), Camille Mohr-Daurat (pouleyKetchoupp), NHodgesVFX, and more!

Some examples are:
- A new software skinning for MeshInstance to replace the slow GPU skinning on devices that don't support the fast GPU skinning (especially mobile).
- Optimized transform propagation for hidden 3D objects. While you might expect that a hidden node would not cost much in terms of performance, analysis showed this was not always the case. One aspect of this was transform calculations and housekeeping, which has now been greatly reduced in hidden nodes.
- Configurable amount of lights per object (and increase default from 8 to 32)
- Improved PCF13 shadow rendering in GLES2 by using a soft PCF filter
- Various light culling fixes
- And more! Search "rendering" in the changelog

Physics:
Many fixes to one-way collisions:
- This has been a long-term undertaking involving multiple PRs from multiple contributors, and a number of additional testers and reviewers, so kudos to them: Marcel Admiraal (madmiraal), Camille, bemyak, Rhathe, and more!
- One-way collisions prior to Godot 3.3 had many issues, some known for years but this code had the tendency to regress whenever a given issue got fixed. To solve this, in addition to some excellent debugging and bug fixing effort, Marcel and Camille designed thorough test cases so that the fixes could be validated in a number of different situations. The end result is a lot more reliable, though there are still a number of known issues which will require more fixes and more test cases to be fully ironed out.

Fixes to KinematicBody collisions:
- Camille, Marcel and Juan did significant work on long-standing issues with the reliability of KinematicBody collisions. One of the main changes merged for 3.3 is a change to KinematicBody's recovery after being stuck in a collider, affecting methods such as move_and_slide() or move_and_collide().
- As physics code is fairly sensitive and prone to regressions when trying to fix a given edge case, Camille made extensive physics test projects for 2D and for 3D, to help validate changes and prevent further regressions.
- Here too, there are still a number of known issues to address, and this will be one of Camille's main focus areas for 4.0 in coming months. Many of the upcoming bug fixes will likely be backported to the 3.x branch for future releases (e.g. 3.4).

Cylinder collision shape for GodotPhysics:
- As part of his Godot 4.0 work, Camille is implementing missing features in the GodotPhysics 3D backend to reach feature parity with Bullet. One of these was the support for Cylinder collision shapes, which has been implemented for Godot 4.0 and backported to 3.3. This is an experimental feature as of 3.3, as it hasn't received extensive testing yet and there are some known bugs in edge cases, so you can expect further fixes in Godot 3.4.

Editor:
Node copy-pasting:
- Being able to easily cut/copy and paste nodes sounds like a basic feature to have, but it is only now that it could finally be implemented in a reliable way, thanks to the hard work of Tomasz Chabora (KoBeWi). Previously, to copy nodes within the scene, they had to be duplicated and dragged under the desired parent. Moving nodes between scenes was only possible by using the clunky "Merge from scene" feature. Being able to copy nodes as easily as you can copy text was probably one of the most-wanted features since the first release of Godot!
- There were multiple attempts at implementing it, but it took time to refine them into someting reliable that could be merged, especially due to the need to take into account the full complexity of the scene tree (instanced scenes, editable children, shared or unique resources and subresources, etc.). In Godot 3.3, the dream has come true: nodes can be cut, copied and pasted, both within the same scene and between scenes. Manipulating the scene tree has never been this convenient.

Improved Inspector sub-resource editing:
- After much discussion, Juan Linietsky (reduz) implemented a change to the Inspector to better highlight sub-resources visually, so that it's easier to know which resource you're editing when there are more than two levels.
- This was implemented for Godot 4.0 but was fairly easy to backport, so here you go! The colors and contrast can be customized in the editor settings.

Import presets configuration:
- When you add assets to a Godot project, most of them get imported to engine internal formats on the fly based on options configured in the Import dock. There are some pre-existing presets for all asset types, and you can define which preset should be used for all resources of the same type (e.g. "2D Pixel" preset for textures), but until there was no easy way to configure all presets easily in a unified interface.
- For Godot 4.0, Juan implemented a new tab in the Project Settings dialog to configure those "Import Defaults", and this was backported to Godot 3.3.
- Additionally, a new "Keep" import mode was added to configure specific files to be left as-is (i.e. not imported) by Godot's import system. This is particularly useful for files which you intend to process yourself from scripts based on their raw contents (e.g. using the File API, loading it as text or bytes), such as CSV files used as database (as opposed to Godot's default CSV import preset as translation catalogs).

3D editor improvements:
Contributors such as Aaron Franke (aaronfranke), Joan and Hugo did a significant amount of work improving the usability of the 3D editor for 4.0, and most of it was backported to the 3.3 branch. This includes changes such as:
- Dynamic infinite 3D grid (further improved here)
- A much-improved 3D rotation gizmo, with increased opacity for better visibility
- A better 3D selection gizmo

Detect external scene changes:
- One of the biggest hurdles when working with Godot projects in a team was that it's very easy to overwrite changes made by another person if they modified a currently opened scene. How often did you pull changes from Git to only see them discarded, because Godot didn't detect that the scene had changed? While with scenes you just had to reload them, modifications to project.godot by another team member required you to restart the Godot editor to properly apply changes. This was especially problematic during game jams where multiple people work on the same small project simultaneously.
- Thanks to Tomasz again, with Godot 3.3, any external changes to opened scenes or project.godot, be it VCS pull or external text editor modification, are properly detected by the Godot editor and you get an option to either reload the affected files, discard the changes or do nothing (which in most cases means another prompt when the editor is re-focused).
- Do note that due to how built-in resources (resources saved within the scene instead of separate files) work, some of them might sometimes not get reloaded correctly (this especially applies to built-in scripts). It's a known infrequent issue, already fixed in Godot 4.0.

Scripting:
GDScript:
- No big change for GDScript in this release as all the focus has been on the rewrite and optimization of GDScript for Godot 4.0. Still, there's been a number of bugfixes which should make the experience more stable.

Mono/C:
- C# users will benefit from a redesign of the solution build output panel made by Ignacio Roldán Etcheverry (neikeq).
- There have been further fixes to the solution and build system, allowing users to target .NETFramework with the Godot.NET.Sdk and .NET 5. Moreover a 3.2.2 regression was fixed for System.Collections.Generic.List marshalling, and Unicode identifiers are now properly supported.
- There's also been extensive work on Mono compatibility with WebAssembly

Other areas:
Improved FBX importer:
- Gordon MacPherson (RevoluPowered) rewrote the prototypical Assimp-based FBX importer that we had in Godot 3.2 to support a lot of the more advanced features used in professional FBX-based workflows. You can read his devblog about it for details.
- In the current state, the new importer works quite well for FBX assets authored in Autodesk Maya. There are known issues with some other types of FBX models which are currently being addressed, and should be fixed in upcoming 3.x (and possibly 3.3.x) releases. If you have models that fail to import properly, please file a bug report so that we can investigate and solve it.

WebXR support for VR games:
- VR developers got a nice surprise back in September when David Snopek (dsnopek) landed a pull request to implement WebXR support in Godot's HTML5 port. Since it was merged earlier this year, we've seen a number of prototypes being developed with 3.3 RC builds' WebXR support, and we're eager to see what the community will create now that it's available in a stable release!

OpenXR plugin:
- As one of his first tasks as a new full-time developer, Bastiaan Olij (BastiaanOlij) worked on an OpenXR plugin for Godot 3.3, before focusing on rendering optimization for mobile Vulkan in the 4.0 branch. He built on the pre-existing effort by Christoph Haag (ChristophHaag), porting the Linux-only plugin to Windows, and implementing a first version of the the OpenXR action system. You can read more in this devblog.
- You can download the GDNative plugin directly from its GitHub repository.

MP3 loading and playback:
- We initially avoided the ubiquitous MP3 audio format for two reasons: it was patent encumbered, and less performant than alternatives like OGG Vorbis. Since the patents expired, and a good minimal open source implementation is available (minimp3), we finally decided to include MP3 support in the engine. This was implemented by DeleteSystem32.
- It is still not recommended for audio streams as OGG Vorbis is typically better, but it enables Godot projects to load pre-existing MP3 assets that they can't convert beforehand: assets streamed from the Internet, or loaded by the users from their system. So supporting the ubiquitous MP3 format with a tiny library ends up being quite useful.

New AspectRatioContainer Control node:
- Making dynamic UI with containers while keeping control of aspect ratio has been made very easy thanks to the new AspectRatioContainer Control node, implemented by Uģis Brēķis (UgisBrekis) and finalized by Andrii Doroshenko (Xrayez).
- This container resizes its child Control nodes based on two parameters: aspect ratio and stretch mode.

Minimap support in GraphEdit:
- Users of Visual Script and Visual Shaders, as well as developers relying on graphs in their game projects and editor plugins, will find this little UX improvement in Godot 3.3. At the end of the last year Yuri Sizov (pycbouh) added an often requested minimap to the GraphEdit control node. Located at the bottom right corner of the graph minimap allows to quickly find your way around even a very complex node structure.

TeamViewer Meeting 15.16.2 查看版本資訊

更新時間:2021-03-23
更新細節:

Glary Utilities 5.162.0.188 查看版本資訊

更新時間:2021-03-15
更新細節:

What's new in this version:

Glary Utilities 5.162.0.188
- Optimized Disk Cleaner: added support for 'VidCoder' and 'Express Scribe'
- Optimized Tracks Eraser: added support for 'MpcStar' and 'Jet-Audio'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.161.0.187
Optimized:
- Disk Cleaner: added support for 'Alcohol 120%' and 'VSO Media Player'
- Disk Cleaner: added support for deleting empty files in custom type
- Tracks Eraser: added support for 'Alcohol 120%' and 'VSO Media Player'
- Wipe Free Space: optimized the exit algorithm to improve user experience
- Startup Manager :fixed the failure report when enabling and disabling startup items

- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.160.0.186
Optimized:
- Disk Cleaner: added support for 'Snagit' and 'BeeCut'
- Disk Cleaner: optimized the sorting of file information to improve the user experience
- Tracks Eraser: added support for 'Snagit' and '5KPlayer'
- Disk Defrag: optimized the sorting algorithm to improve the user experience
- Context Menu Manager: optimized the win10 compatibility and enhance the user experience

- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.159.0.185
- Optimized Disk Cleaner: added support for 'Freeplane' and 'Kodi'
- Optimized Tracks Eraser: added support for 'Freeplane' and 'IMDisplay'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.158.0.184
- Optimized Disk Cleaner: added support for 'Stellarium' and 'Balabolka'
- Optimized Tracks Eraser: added support for 'Stellarium' and 'PhotoPad Image Editor'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.157.0.183
- Optimized Disk Cleaner: added support for 'Light Image Resizer 6' and 'Mirillis Action!'
- Optimized Tracks Eraser: added support for 'Light Image Resizer 6' and 'Mirillis Action!'
- Optimized Tracks Eraser: optimized the cleaning algorithm of browser cookies
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.156.0.182
- Optimized Disk Cleaner: added support for 'VideoProc 4.0' and 'Comodo Dragon (CHROME based browser)'
- Optimized Tracks Eraser: added support for 'VideoProc 4.0' and 'Comodo Dragon (CHROME based browser)'
- Optimized Registry Repair: optimized the registry export algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.155.0.181
- Optimized Disk Cleaner: added support for 'waterfox' and 'Icecream Video Editor'
- Optimized Tracks Eraser: added support for 'waterfox' and 'Bandizip'
- Optimized Registry Repair: added support for 'Applications Settings'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.154.0.180
- Optimized Disk Cleaner: added support for 'AVS Media Player' and 'Movavi Video Converter'
- Optimized Tracks Eraser: added support for 'AVS Media Player' and 'Movavi Video Converter'
- Optimized Tracks Eraser: optimized the scanning algorithm to improve user experience
- Optimized Absolute Uninstaller: added support for 'Nova BACKUP'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.153.0.179
- Optimized Disk Cleaner: added support for 'Core FTP' and 'FileZilla'
- Optimized Tracks Eraser: added support for 'EmEditor' and 'Icecream PDF Editor'
- Optimized Tracks Eraser: optimized the scanning algorithm to improve user experience
- Optimized Shortcut Fixer: optimized the compatibility and enhance the user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.152.0.178
- Optimized Disk Cleaner: added support for 'Nitro Pro 11' and 'VSDC Free Video Editor'
- Optimized Tracks Eraser: added support for 'Nitro Pro 11' and 'VSDC Free Video Editor'
- Optimized Disk Defrag: optimized SSD scanning algorithm to improve user experience
- Optimized Quick Search: optimized COM scanning algorithm to improve user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.151.0.177
- Optimized Disk Cleaner: added support for 'Tixati' and 'blender 2.90'
- Optimized Tracks Eraser: added support for 'Tixati' and 'blender 2.90'
- Optimized Shortcuts Fixer: fixed the target path recognition of the network drive to improve the user experience
- Optimized Shortcuts Fixer: optimized the recognition of COM objects to improve the user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.150.0.176
- Optimized Disk Cleaner: added support for 'VideoPad Video Editor' and 'WavePad Sound Editor'
- Optimized Tracks Eraser: added support for 'VideoPad Video Editor' and 'WavePad Sound Editor'
- Optimized Duplicate Cleaner: optimized the scanning algorithm, and increased accuracy by 5%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.149.0.175
- Optimized Disk Cleaner: added support for 'Mp3tag' and 'Adobe Photoshop CC 2018'
- Optimized Tracks Eraser: added support for 'Adobe Dreamweaver' and 'Adobe Photoshop CC 2018'
- Optimized Shortcut Fixer: optimized the algorithm for obtaining shortcut information
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.148.0.174
- Optimized Disk Cleaner: added support for 'Kingsoft Office free' and 'Adobe Premiere Elements 2020'
- Optimized Tracks Eraser: added support for 'Kingsoft Office free' and 'Adobe Premiere Elements 2020'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.147.0.173
- Optimized Disk Cleaner: added support for 'Coc Coc Browser' and 'ACDSee Phote Studio Professinonal 2020'
- Optimized Tracks Eraser: added support for 'Coc Coc Browser' and 'ACDSee Phote Studio Professinonal 2020'
- Optimized Registry Repair: added support for 'MUI Cache' Settings
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.146.0.172
- Optimized Disk Cleaner: added support for 'Foxit Reader 10' and 'CyberLink PhotoDirector 11'
- Optimized Tracks Eraser: added support for 'Foxit Reader 10' and 'Foxit Phantom PDF 10'
- Optimized Duplicate Cleaner: optimized deletion algorithm to improve user experience
- Optimized Registry Repair: optimized scanning algorithm to enhance user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.145.0.171
- Optimized Disk Cleaner: added support for 'Nero Burning ROM 2020' and 'Nitro Pro 10'
- Optimized Tracks Eraser: added support for 'Nero Burning ROM 2020' and 'Nitro Pro 10'
- Optimized Registry Repair: added support for 'MUI Cache'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.144.0.170
- Optimized Disk Cleaner: added support for 'Tivo Desktop' and 'GIMP 2.6'
- Optimized Disk Cleaner: users can now delete system temporary files after 24 hours
- Optimized Tracks Eraser: added support for 'ExamDiff' and 'Camtasia Studio 20'
- Optimized Disk Defrag: added support for 10TB large partition to enhance user experience
- Optimized Disk Analysis: added functions related to exclusion list
- Optimized Disk Analysis: improved navigation toolbar and enhance user experience
- Optimized Disk Analysis: file list can now be exported to csv file
- Optimized Check Disk: Boot Check column is added to the partition list, which is used to display the boot check status. Click the corresponding line to turn on and off the Boot Check.
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.143.0.169
- Optimized Disk Cleaner: added support for 'Nitro Pro 12' and 'Wondershare Video Converter Pro'
- Optimized Tracks Eraser: added support for 'Nitro Pro 12' and 'Wondershare Video Converter Pro'
- Optimized Quick Search: added History Search function to enhance user experience
- Optimized Disk Analysis: optimized the scanning algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.142.0.168
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.141.0.167
- Optimized Disk Cleaner: added support for 'SketchUp Make 2020' and 'Internet Download Accelerator'
- Optimized Tracks Eraser: added support for 'SketchUp Make 2020' and 'Internet Download Accelerator'
- Optimized Registry Defrag: optimized registry sorting algorithm,
- Optimized Context Menu Manager: fixed the issue that some menus are not fully displayed
- Optimized Context Menu Manager: added support for removing multiple menu items to improve user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.140.0.166
- Optimized Disk Cleaner: added support for 'SketchUp Make 2019' and 'Amazon Kindle for PC'
- Optimized Tracks Eraser: added support for 'SketchUp Make 2019' and 'Amazon Kindle for PC'
- Optimized Empty Folder Finder: optimized the matching algorithm to enhance the user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.139.0.165
- Optimized Disk Cleaner: added support for 'SketchUp Make 2018' and 'Corel PaintShop Pro 2019'
- Optimized Tracks Eraser: added support for 'SketchUp Make 2018' and 'Corel PaintShop Pro 2019'
- Optimized Registry Repair: optimized the matching algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.138.0.164
- Optimized Disk Cleaner: added support for 'Opera GX browser' and 'CyberLink YouCam8'
- Optimized Tracks Eraser: added support for 'Opera GX browser' and 'CyberLink YouCam8'
- Optimized Tracks Eraser: optimized the algorithm for cleansing of ‘Opera browser’ cookies
- Optimized Tracks Eraser: solved the problem of occasionally closing the browser when the program starts, and improved the user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.137.0.163
- Optimized Disk Cleaner: added support for 'New Microsoft Edge Browser' , 'Maxthon Nitro browser' and 'Nero Burning ROM 2021'
- Optimized Disk Cleaner: added some system files to the white list
- Optimized Tracks Eraser: added support for 'New Microsoft Edge Browser' , 'Maxthon Nitro browser' and 'Adobe Reader DC'
- Optimized Tracks Eraser: optimized data nodes in settings to improve user experience
- Optimized Wipe Free Space: optimized disk selection method for easy user selection
- Optimized Settings: solves the problem of incomplete text display and optimized the interface display
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.136.0.162
- Optimized Disk Cleaner: added support for 'CyberLink YouCam 9' and 'Corel PaintShop Pro 2020'
- Optimized Tracks Eraser: added support for 'CyberLink YouCam 9' and 'Corel PaintShop Pro 2020'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.135.0.161
- Optimized Disk Cleaner: added support for 'SnagIt 20' and 'ABBYY FineReader 15'
- Optimized Tracks Eraser: added support for 'SnagIt 20' and 'ABBYY FineReader 15'
- Optimized Updates: optimized update algorithm to improve user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.134.0.160
- Optimized Disk Cleaner: added support for 'system junk item' and 'windows10 Skype'
- Optimized Tracks Eraser: added support for 'system junk item' and 'Foxit Phantom PDF 9.0'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.133.0.159
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 18' and 'blender 2.81'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 18' and 'blender 2.81'
- Optimized Registry Repair: optimized the scanning algorithm
- Optimized Registry Repair: added support for obtaining 64-bit software information to improve user experience
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.132.0.158
- Optimized Disk Cleaner: added support for 'CyberLink AudioDirector 10' and 'Nitro Pro 13'
- Optimized Tracks Eraser: added support for 'CyerLink AudioDirector 10' and 'Nitro Pro 13'
- Optimized Tracks Eraser: optimized the algorithm for reading browser configuration files
- Optimized Browser Assistant: optimized the text presentations of browser search engine page for better understanding by users
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.131.0.157
- Optimized Disk Cleaner: added support for 'Any Video Converter' and 'OpenOffice 4.1.7'
- Optimized Tracks Eraser: added support for 'Any Video Converter' and 'OpenOffice 4.1.7'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.130.0.156
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized System Information: optimized the path matching algorithm, and increased the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.129.0.155
- Optimized Disk Cleaner: added support for 'Sony Vegas Pro 17' and 'Ashampoo Burning Studio 20'
- Optimized Disk Cleaner: optimized the cleanup algorithms of desktop shortcuts and menu shortcuts
- Optimized Tracks Eraser: added support for 'TeamSpeak Client' and 'TeamSpeak Client'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.128.0.153
- Optimized Disk Cleaner: added support for 'Blender 2.70' and 'All Free YouTube Downloader'
- Optimized Disk Cleaner: added support for automatic backup of the start menu and desktop shortcuts
- Optimized Tracks Eraser: added support for 'Blender 2.70' and 'All Free YouTube Downloader'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.127.0.152
- Optimized Disk Cleaner: added support for 'Krita' and 'SumatraPDF'
- Optimized Tracks Eraser: added support for 'Krita' and 'SumatraPDF'
- Optimized Tracks Eraser: added support for 64-bit system waste cleanup algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.126.0.151
- Optimized Disk Cleaner: added support for 'TeraCopy' and 'Origin'
- Optimized Disk Cleaner: optimized the scanning algorithm
- Optimized Tracks Eraser: added support for 'TeraCopy' and 'Origin'
- Optimized Tracks Eraser: optimized the scanning algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.125.0.150
- Optimized Disk Cleaner: added support for 'Launchy' and 'Webex Teams'
- Optimized Tracks Eraser: added support for 'Launchy' and 'Webex Teams'
- Optimized Software Update: Optimized support algorithms for multiple languages and made user interface more friendly.
- Optimized Duplicate Cleaner: Optimized the matching algorithm for original files and increased accuracy by 15%.
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.124.0.149
- Optimized Disk Cleaner: added support for 'AOMEI Partition Assistant Standard Edition' and 'PeaZip'
- Optimized Tracks Eraser: added support for 'IrfanView' and 'Photo!editor'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.123.0.148
- Optimized Disk Cleaner: added support for 'MusicBee' and 'Digsby'
- Optimized Tracks Eraser: added support for 'MusicBee' and 'Digsby'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.122.0.147
- Optimized Disk Cleaner: added support for 'TweetDeck' and 'blender'
- Optimized Tracks Eraser: added support for 'TweetDeck' and 'blender'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.121.0.146
- Optimized Disk Cleaner: added support for 'PDF24' and 'qBittorrent'
- Optimized Tracks Eraser: added support for 'PDF24' and 'qBittorrent'
- Optimized Tracks Eraser: added support for Jump list
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.120.0.145
- Optimized Disk Cleaner: added support for 'CyberLink YouCam' and 'Foobar2000'
- Optimized Tracks Eraser: added support for 'CyberLink YouCam' and 'Foobar2000'
- Optimized Tracks Eraser: added support for recent cleanup of accessed directory
- Optimized File Shredder: added the function that turn off PC after wipe
- Optimized File Shredder: added support for Right-click File Shredder of Recycle bin
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.119.0.144
- Optimized Disk Cleaner: added support for 'Dropbox' and 'Spotify'
- Optimized Tracks Eraser: added support for 'Dropbox' and 'Spotify'
- Optimized Uninstall Manager: optimized the interface display to fix the incomplete display of software details
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.118.0.143
- Optimized Disk Cleaner: added support for 'LibreOffice' and 'Salamweb'
- Optimized Tracks Eraser: added support for 'LibreOffice' and 'Salamweb'
- Optimized Uninstall Manager: optimized the algorithm of software list acquisition, and the accuracy was improved by 20%
- Optimized Driver Manager: optimized the backup algorithm, and speed up by 10%
- Optimized Disk Defrag: optimized sorting algorithm, and speed up by 10%
- Minor GUI improvements
- Minor bug fixe


Glary Utilities 5.117.0.142
- Optimized Disk Cleaner: added support for 'K-Lite Codec Pack Full' and 'Daum PotPlayer'
- Optimized Tracks Eraser: added support for 'K-Lite Codec Pack Full' and 'Daum PotPlayer'
- Optimized Quick Startup: optimized the matching algorithm, and the accuracy was increased by 10%
- Optimized Software Update: optimized the matching algorithm, and the accuracy was increased by 5%
- Optimized Quick Search: optimized the real-time monitoring algorithm, speed up by 15%
- Optimized Quick Search: optimized the file classification algorithm for better user experience
- Optimized Quick Search: optimized the right menu opening algorithm to improve user experience


Glary Utilities 5.116.0.141
- Optimized Disk Cleaner: added support for 'CyberLink MediaShow' and 'TeamSpeak Client'
- Optimized Tracks Eraser: added support for 'CyberLink MediaShow' and 'Game Explorer'
- Optimized File Shredder: optimized the function algorithm for erasing free space, and speed up by 10%
- Optimized Quick Search: optimized the scanning algorithm
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.115.0.140
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized System Information: optimized the path matching algorithm, and increased the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.114.0.139
- Optimized Disk Cleaner: added support for 'Thunderbird' and 'CrashDumps'
- Optimized Tracks Eraser: added support for 'Thunderbird' and 'Ares'
- Optimized File Shredder: optimized shredder algorithm, speed up by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.113.0.138
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized System Information: optimized the path matching algorithm, and increased the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.112.0.137
- Optimized Disk Cleaner: added support for 'Corel VideoStudio Pro 2018' and 'Sony Vegas Pro 16'
- Optimized Tracks Eraser: added support for 'Corel VideoStudio Pro 2018' and 'Camtasia Studio 18'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.111.0.136
- Optimized Disk Cleaner: added support for 'Opera Developer' and 'SnagIt 7'
- Optimized Tracks Eraser: added support for 'Opera Developer' and 'SnagIt 7'
- Optimized Tracks Eraser: optimized the detection algorithm, fixed the bug that the Firefox browser cannot be correctly identified under certain systems
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.110.0.135
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized System Information: optimized the path matching algorithm, and increased the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.109.0.134
- Optimized Disk Cleaner: added support for 'Snagit 19' and 'CyberLink PowerDirector 8'
- Optimized Tracks Eraser: added support for 'Snagit 19' and 'CyberLink PowerDirector 8'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.108.0.133
- Optimized Disk Cleaner: added support for 'CyberLink AudioDirector 3' and 'CyberLink PowerDirector 9'
- Optimized Tracks Eraser: added support for 'CyberLink AudioDirector 3' and 'CyberLink PowerDirector 9'
- Optimized Tracks Eraser: fixed the Firefox bookmark deletion bug
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.107.0.132
- Optimized Disk Cleaner: added support for 'Corel PaintShop Pro x7' and 'CyberLink PowerDirector 11'
- Optimized Tracks Eraser: added support for 'Corel PaintShop Pro x7' and 'CyberLink PowerDirector 11'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.106.0.130
- Optimized Disk Cleaner: added support for 'CyberLink AudioDirector 5' and 'CyberLink PowerDirector 14'
- Optimized Tracks Eraser: added support for 'CyberLink AudioDirector 5' and 'CyberLink PowerDirector 14'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.105.0.129
- Optimized Disk Cleaner: added support for 'CyberLink AudioDirector 6' and 'CyberLink PowerDirector 13'
- Optimized Tracks Eraser: added support for 'CyberLink AudioDirector 6' and 'CyberLink PowerDirector 13'
- Optimized Registry Repair: optimized the scanning algorithm, and speed up by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.104.0.128
- Optimized Disk Cleaner: added support for 'Corel PaintShop Pro x8' and 'CyberLink PowerDirector 10'
- Optimized Tracks Eraser: added support for 'Corel PaintShop Pro x8' and 'CyberLink PowerDirector 10'
- Optimized Startup Manager: optimized the startup time algorithm, and increased the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.103.0.126
- Fixed the bug that some shortcuts and files are deleted by mistake


Glary Utilities 5.103.0.125
- Optimized Disk Cleaner: added support for 'Foxit Reader 9.0' and 'Sony Vegas Pro 12.0'
- Optimized Tracks Eraser: added support for 'Foxit Reader 9.0' and 'Corel VideoStudio Pro x8'
- Optimized Duplicate Cleaner: optimized the scan results display and select mode for more friendly use
- Optimized Startup Manager: optimized the results display to make interface more friendly;
- Added boot control menu, to make it more convenient for users.
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.102.0.124
- Optimized Disk Cleaner: added support for 'PerfectDisk 10.0' and 'Corel VideoStudio Pro x8'
- Optimized Tracks Eraser: added support for 'Camtasia Studio 9.0' and 'Corel VideoStudio Pro x8'
- Optimized Registry Repair: optimized the matching algorithm and improve the accuracy by 20%
- Optimized Startup Manager: added search function and Delay Time column, to make the interface more friendly and more convenient to use
- Optimized System Information: added support for multi - card multi - monitor information acquisition
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.101.0.123
- Optimized Disk Cleaner: added support for 'SnagIt 8' and 'ABBYY FineReader 10'
- Optimized Tracks Eraser: added support for 'SnagIt 8' and 'ABBYY FineReader 10'
- Optimized Registry Repair: optimized scanning algorithm, and increased the speed by 30%
- Optimized Startup Manager: optimized the startup time acquisition algorithm, and increased the accuracy by 40%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.100.0.122
- Optimized Tracks Eraser: added support for 'Corel PaintShop Pro X6' and 'Corel PaintShop Pro X5'
- Optimized Registry Repair: optimized the results displaying for easier use
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.99.0.121
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 15' and 'CyberLink AudioDirector 7'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 15' and 'CyberLink AudioDirector 7'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.98.0.120
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 12' and 'CyberLink AudioDirector 4'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 12' and 'CyberLink AudioDirector 4'
- Optimized Registry Repair: Added 'Select all' 'Cancel select all' and 'Select invert '
- Optimized Registry Repair: Support multiple select
- Optimized Registry Repair: Support copy and multiple copy
- Optimized Registry Repair: Support delete all in ignore list
- Optimized Registry Repair: Support multiple delete in restore list
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.97.0.119
- Optimized Disk Cleaner: added support for 'Nero Burning ROM 10' and 'PerfectDisk 12.5'
- Optimized Tracks Eraser: added support for 'Nero Burning ROM 10' and 'Office 2010'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.96.0.118
- Optimized Disk Cleaner: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized Tracks Eraser: added support for 'CyberLink PowerDirector 16' and 'CyberLink AudioDirector 8'
- Optimized System Information: optimized the path matching algorithm, and increased the accuracy by 30%
- Minor bug fixes


Glary Utilities 5.95.0.117
- Optimized Disk Cleaner: added support for 'Nero Burning ROM 19' and 'Corel VideoStudio Pro X4'
- Optimized Tracks Eraser: added support for 'Nero Burning ROM 19' and 'Corel VideoStudio Pro X4'
- Optimized Registry Repair: optimized the comparison algorithm, and increase the accuracy by 30%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.94.0.116
- Change log not available for this version


Glary Utilities 5.93.0.115
- Optimized Disk Cleaner: added support for 'Corel VideoStudio Pro X5' and 'Snagit 9'
- Optimized Tracks Eraser: added support for 'Corel VideoStudio Pro X5' and 'Snagit 9'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.92.0.114
- Change log not available for this version


Glary Utilities 5.91.0.112
- Optimized Disk Cleaner: added support for 'Corel VideoStudio Pro x9' and 'SketchUp Make 2014'
- Optimized Tracks Eraser: added support for 'Corel VideoStudio Pro x9' and 'SketchUp Make 2014'
- Optimized Software Update: optimized the version comparison algorithm, and increase the comparison speed by 30%
- Optimized Empty Folders Finder: add folder delete validation to prevent accidentally deletion of non-empty folder
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.90.0.111
- Optimized Disk Cleaner: added support for 'Snagit 10' and 'ABBYY FineReader 14'
- Optimized Tracks Eraser: added support for 'Snagit 10' and 'ABBYY FineReader 14'
- Optimized Registry Repair: optimized the registry cleaning algorithm, and increased the accuracy rate by 30%


Glary Utilities 5.89.0.110
- Optimized Disk Cleaner: added support for 'SnagIt 18' and 'SketchUp Make 2017'
- Optimized Tracks Eraser: added support for 'SnagIt 18' and 'SketchUp Make 2017'
- Optimized Quick Search: fixed the bug that search result window can't be displayed properly after losing the focus
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.88.0.109
- Optimized Disk Cleaner: added support for 'Snagit 11' and 'Ashampoo Burning Studio 10'
- Optimized Tracks Eraser: added support for 'Snagit 11', ‘VLC Media Player’ and 'PerfectDisk 13'
- Optimized Software Update: optimized the version comparison algorithm, and increase the comparison speed by 20%
- Optimized Quick Search: optimized the staying high CPU usage bug in sometimes to make the program run more smoothly
- Optimized Empty Folders Finder: add folder delete validation to prevent accidental deletion of non-empty folder
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.87.0.108
- Optimized Disk Cleaner: added support for 'Corel VideoStudio Pro x9' and 'SketchUp Make 2014'
- Optimized Tracks Eraser: added support for 'Corel VideoStudio Pro x9' and 'SketchUp Make 2014'
- Optimized Software Update: optimized the version comparison algorithm, and increase the comparison speed by 30%
- Optimized Empty Folders Finder: add folder delete validation to prevent accidentally deletion of non-empty folder


Glary Utilities 5.86.0.107
- Optimized Disk Cleaner: added support for 'Foxit Reader 8.0' and 'MS OneDrive'
- Optimized Tracks Eraser: added support for 'Foxit Reader 8.0' and 'Adobe Photoshop'
- Optimized Duplicate Cleaner: added support for exclude Folder and File
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.85.0.106
- Optimized Disk Cleaner: added support for 'Corel VideoStudio Pro X10' and 'Snagit 12'
- Optimized Tracks Eraser: added support for 'Corel VideoStudio Pro X10' and 'Snagit 12'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.84.0.105
- Optimized Disk Defrag: added drag-and-drop functionality to adjust the height of disk list.
- Optimized Software Update: added the ignore update software function to improve user experience
- Optimized Disk Cleaner: added support for 'SketchUp Make 13' and 'Real Player SP'
- Optimized Tracks Eraser: added support for 'SketchUp Make 13' and 'Real Player SP'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.83.0.104
- Optimized Quick Search: the optimization removed multiple file algorithms, speed up by 30%
- Optimized Disk Cleaner: added support for 'Directory Opus' and 'Wondershare Video Converter Ultimate'
- Optimized Tracks Eraser: added support for 'Gom Player' and 'Wondershare Video Converter Ultimate'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.82.0.103
- Optimized Disk Cleaner: added support for 'Ashampoo Burning Studio 18' and 'PerfectDisk 11'
- Optimized Tracks Eraser: added support for 'SmartFTP' and 'ACDSee 14'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.81.0.102
- Optimized Absolute Uninstaller: added support for 'VMware Workstation 12'
- Optimized Disk Cleaner: added support for 'Ashampoo Burning Studio 11' and 'Foxit Reader 7.0'
- Optimized Tracks Eraser: added support for 'Macromedia Fireworks 8.0' and 'Foxit Reader 6.0'
- Optimized Quick Search: added the function that resize the form with four corners, more flexible
- Optimized Registry Repair: added support for 'VMware Workstation 12'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.80.0.101
- Optimized Disk Cleaner: added support for 'PerfectDisk 13.0' and 'Adobe Reader 7.0'
- Optimized Tracks Eraser: added support for 'Nero Burning ROM 15' and 'AceHTML 6 Pro'
- Optimized Quick Search: optimized the path sorting algorithm, and speed up by 100%
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.79.0.100
- Optimized Disk Cleaner: added support for 'Kantaris Media Player' and 'Real Player 15'
- Optimized Tracks Eraser: added support for 'Safari' and 'Real Player 15'
- Optimized Registry Repair: Ignore List Manager supported for multi-select
- Optimized Quick Search: optimized the AppSearch sorting algorithm
- Optimized Quick Search: supported for multi-screen display
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.78.0.99
- Optimized Disk Cleaner: added support for 'VSO Blu-ray Converter Ultimate 4' and 'VSO DVD Converter Ultimate 4'
- Optimized Tracks Eraser: added support for ' Microsoft Photo Editor' and 'Nero Burning ROM'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.77.0.98
- Optimized Disk Cleaner: added support for 'Adobe Reader DC' and 'Ashampoo Burning Studio 16'
- Optimized Tracks Eraser: added support for 'Nitro PDF Reader 5' and 'PerfectDisk 14'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.76.0.97
- Optimized Disk Cleaner: added support for 'ABBYY FineReader 11.0' and 'SketchUp Make 2015'
- Optimized Tracks Eraser: added support for 'ABBYY FineReader 11.0' and 'SketchUp Make 2015'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.75.0.96
- Optimized Disk Cleaner: added support for 'Real Player' and 'PerfectDisk 12.0'
- Optimized Tracks Eraser: added support for 'Corel PaintShop Pro' and 'Real Player 16.0'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.74.0.95
- Optimized Disk Cleaner: added support for 'DivX player' and 'FastStone Capture'
- Optimized Tracks Eraser: added support for 'Internet Download Manager' and 'FastStone Capture'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.73.0.94
- Optimized Disk Cleaner: added support for 'Last.FM' and 'Winamp'
- Optimized Tracks Eraser: added support for 'Sandboxie' and 'McAfee AntiVirus'


Glary Utilities 5.72.0.93
- Optimized Disk Cleaner: added support for 'ZoneAlarm' and 'Vuze'
- Optimized Tracks Eraser: added support for 'Shareaza' and 'Vuze'
- Optimized Software Update: Optimized version comparison algorithm, and the accuracy is improved by 10%.
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.71.0.92
- Optimized Disk Cleaner: added support for 'InkScape' and 'GIMP'
- Optimized Tracks Eraser: added support for 'FastStone Image Viewer' and 'BreezeBrowser Pro'
- Optimized Quick Search: Optimized multi-language display


Glary Utilities 5.70.0.91
- Optimized Disk Cleaner: added support for 'I2P' and 'Snagit'
- Optimized Tracks Eraser: added support for 'PowerISO' and 'Snagit'


Glary Utilities 5.69.0.90
- Optimized Disk Cleaner: added support for 'Ventrilo Client' and 'Download Accelerator Plus'
- Optimized Tracks Eraser: added support for 'Freemake Video Downloader' and 'Download Accelerator Plus'
- Optimized Quick Search: optimized multi-language display


Glary Utilities 5.68.0.89
- Optimized Disk Cleaner: added support for 'DivX player' and 'FastStone Capture'
- Optimized Tracks Eraser: added support for 'Internet Download Manager' and 'FastStone Capture'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.67.0.88
- Optimized Disk Cleaner: added support for 'Freemake Video Converter' and 'Tango'
- Optimized Tracks Eraser: added support for 'Freemake Video Converter' and 'Foxit Phantom PDF'


Glary Utilities 5.66.0.87
- Optimized Disk Cleaner: added support for 'SketchUp Make' and 'ABBYY FineReader'
- Optimized Tracks Eraser: added support for 'FeedDemon' and 'Foxit Phantom'
- Optimized Quick Search: search speed increased to 10%
- Optimized Startup Manager: optimized the algorithm


Glary Utilities 5.65.0.86
- Optimized Disk Cleaner: added support for 'PhotoScape' and 'Sony Vegas Pro'
- Optimized Tracks Eraser: added support for 'VNCViewer 5' and 'ABBYY FineReader'


Glary Utilities 5.64.0.85
- Optimized Disk Cleaner: added support for 'Stardock WindowBlinds and 'Free Download Manager'
- Optimized Tracks Eraser: added support for 'Tag&Rename' and 'Directory Opus'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.63.0.84
- Optimized Disk Cleaner: added support for 'Driver Cleaner' and 'Webroot SpySweeper'
- Optimized Tracks Eraser: added support for 'Format Factory' and 'SketchUp Make 2016'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.62.0.83
- Optimized Disk Cleaner: added support for 'Windows Movie Maker' and 'Yahoo Messenger'
- Optimized Tracks Eraser: added support for 'Free Download Manager' and 'Compare It!'
- Optimized Software Update: optimized the version acquisition algorithm


Glary Utilities 5.61.0.82
- Optimized Disk Cleaner: added support for 'Pidgin' and 'Acronis True Image'
- Optimized Tracks Eraser: added support for 'Yahoo Messenger' and 'ACDSee'
- Optimized the license activation process
- Fixed the bug that startup repeated
- Fixed Quick Startup: fixed the startup repeated problem caused by F5 shortcut key refreshing
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.60.0.81
- Optimized Software Update: Optimized the acquisition of shortcut file version information
- Optimized Software Update: Optimized the format used to compare software information on the server side
- Optimized Software Update: Optimized the matching method of registry information and shortcut information
- Optimized Tracks Eraser: added 'ExamDiff Pro' and 'ManyCam'
- Optimized Disk Cleaner: added 'WinPatrol' and 'LogMeIn'
- Minor GUI improvements
- Minor bug fixes


Glary Utilities 5.59.0.80
- Added minimize button to facilitate user minimize the window
- Optimized interface operation procedure, to reduce the possibility of user's wrong operation
- Added stop button, allowing user halfway stop the encryption/decryption
- Optimized part of the internal implementation code
- Optimized Tracks Eraser: added 'VLC Media Player' and 'Windows Media Center'
- Optimized Disk Cleaner: added 'Quicktime Player' and 'Media Player Classic'


Glary Utilities 5.58.0.79
- Change log not available for this version


Glary Utilities 5.56.0.78
- Added minimize button to facilitate user minimize the window
- Optimized interface operation procedure, to reduce the possibility of user's wrong operation
- Added stop button, allowing user halfway stop the encryption/decryption
- Optimized part of the internal implementation code
- Optimized Tracks Eraser: added 'VLC Media Player' and 'Windows Media Center'
- Optimized Disk Cleaner: added 'Quicktime Player' and 'Media Player Classic'


Glary Utilities 5.56.0.77
- Optimized Tracks Eraser: added 'ImgBurn' and 'PDFCreator'
- Optimized Disk Cleaner: added 'SmartFTP' and 'Windows Media Center'


Glary Utilities 5.55.0.76
- Optimized Quick Search: Optimized search algorithm and results display of Bing Search
- Optimized Quick Search: Added "Press 'Enter' key to perform a web search" option to General
- Optimized Disk Cleaner: added 'uTorrent' and 'FrostWire'
- Optimized Tracks Eraser: added 'Zune' and 'UltraISO'
- Minor GUI improvements
- Minor bug fixes

KeeWeb 1.17.3 查看版本資訊

更新時間:2021-03-15
更新細節:

What's new in this version:

- fix #1747: white screen in old Safari

KeeWeb 1.17.2 查看版本資訊

更新時間:2021-03-14
更新細節:

What's new in this version:

Fixed:
- crashes in the USB module on Windows
- deleting selected text in auto-type selector
- fixed auto-type on Linux with NumLock pressed

KeeWeb 1.17.1 查看版本資訊

更新時間:2021-03-11
更新細節:

What's new in this version:

- fixed issue with auto-typing some characters on Windows

KeeWeb 1.17.0 查看版本資訊

更新時間:2021-03-08
更新細節:

What's new in this version:

- opening files with Touch ID on macOS (opt-in)
- password quality warnings
- "Have I Been Pwned" service integration (opt-in)
- automatically switching between dark and light theme
- custom title bar on Windows
- new updater capable to upgrade major versions
- new auto-type rewritten from scratch
- possibility to detect browser URL on Linux
- external modification protection in desktop versions
- clear searchbox button
- more options for auto-lock timeout
- favicon download improvements
- auto-type field selection dropdown improvements
- new completion page after storage provider authentication
- option to disable caching files in offline storage
- option to minimize on field copy
- fixed creating files with Argon2id KDF