Thorium-Win

Chromium fork for Windows named after radioactive element No. 90; Windows builds of https://github.com/Alex313031/Thorium

BSD-3-CLAUSE License

Stars
1.4K

Bot releases are hidden (Show)

Thorium-Win - BETA 2 Th24 build - M126.0.6478.251 Latest Release

Published by Alex313031 about 1 month ago

  • It has the same Th24 updates/fixes as the Beta 2 Linux build, so read those release notes here first > https://github.com/Alex313031/thorium/releases/tag/M126.0.6478.251 (And if you haven't used any of the beta builds yet, you should read the Beta 1 release notes to get up to speed about what all this Th24 stuff is about)
  • On top of the fixes from the beta 2 Linux build, this release also:
  • Force enables MV2 extensions at a lower level (Previous releases just set an enterprise policy flag to "On", this release enables it at the //components/extensions/ source code level)
  • New chrome://flags flag "Custom Tab Width" chrome://flags#custom-tab-width: This lets you set the default tab width to 60px, 120px, 240px (the Chromium default), 300px, or 400px. I decided against adding a text box where you could type a specific width, because if you accidentally set it too small or too large, the browser becomes unusable. These pre-defined widths should cover most use cases. NOTE: Since the code I added uses pixel values (px) instead of DPI values (dp), if you have Windows set to a large DPI level like 200%, you should account for that and set the custom width value to lower than what you are wanting.
  • Fixes menu spacing issues on Windows and MacOS to even more closely match the pre-CR23 style.
  • Adds a new simple thorium_all build target, that automagically builds everything to make an official release build + installer for the given platform. (Of interest only to developers or people wanting to build Thorium themselves).
  • Fixes some more spacing issues in the bookmarks bar
  • Fixes spacing issue of tab separators, which made the horizontal padding between inactive tabs be wider than the vertical padding. I also went ahead and set the separators to 2 pixels wide instead of 1, so that deviates a bit from the pre-CR23 UI, but I think it looks better, and makes it easier to distinguish tabs when you have a billion of them in a single window (which I'm very guilty of doing). Speaking of that, Thorium's performance optimizations really show their shine when "hypertasking". For example, I tested Chrome M126 and Thorium M126, and found their speedometer 3.0 scores to be about identical, but when I tested them by opening 1,000 tabs spread across 10 windows (100 tabs per window), they used the same amount of RAM, but the CPU usage of Thorium was much less, and Thorium remained much more responsive than Chrome did, under such a heavy load. This is to be expected since AVX instructions lend themselves particularly well to very large datasets/transfers, and large matrix multiplication tasks (which are used in Chromium). I didn't test the SSE3/SSE4 builds. They will probably still perform better than Chrome, but they will definitely be less since they don't have AVX/AVX2 support. Related to the notes about AVX above, this is also why things like RAID software, databases, and machine vision/machine learning software are often compiled with AVX support.

Those of you who tested the Linux beta 2 build, and were happy with the results, and lastly requested I make a Windows equivalent release will now be happy. Please close those feedback issues if you can, I am already swamped by issues in all of my repos. If I haven't responded I promise I'm not ignoring you!

These builds are AVX only, sorry.

And yes I know, I know, I'm already behind on Chromium versions, thus will probably skip M127 and start work on M128 this weekend.

Thorium-Win - BETA "Th24" build - M126.0.6478.251

Published by Alex313031 about 2 months ago

– So the new UI (goes by various names like Chrome Refresh, Chrome Refresh 2023, often shortened to Cr23 in documents and source code) that Google has made is completely fucked. I almost always bleep out cuss words here with **** but I want to emphasize its fucked-ness lol.)

  1. Why are tabs half the height? Stupid.
  2. Why are tab separators and padding doubled, (3px vs 6px) meaning less tabs can fit in the tabstrip for a given window size before they "overflow" and can't be seen? Dumb!
  3. Why is the bookmarks bar taller than either the address bar or the tabstrip. Makes it look out of balance.
  4. Why are icons, font size, padding, and separators in menus SO BIG. This looks ugly, and I have already gotten issues on github about them being so big that people on smaller screens right click on something, and then they have to SCROLL just to get to what they want. Menus should not have a scrollbar on the side because the content is so big it can't fit. Bad user experience.
  5. Why is the separator between all the top bar content, and the webpage's frame, rounded at the corners? Similarly, why are all buttons super rounded, even to the point where I have seen bugs upstream about the button's text being clipped out of view. Unneeded and dumb.
  6. Why does the Downloads page (i.e. chrome://downloads) require a menu press and then a second button press to remove an item. It used to just be an "X". This makes clearing out your downloads manually (instead of "Clear All", which often we don't want), take FOREVER.
  7. Why are WebUI pages all of a sudden "mangled" on the javascript side? This makes inspection and debugging VERY DIFFICULT for browser devs like me, and decreases transparency for any end user that just wants to see how the page is layed out. I get minifying the javascript to save space, but why are we mangling it which serves nothing but to obfuscate things?
  8. Why are omnibox icons so huge that they appear mis-sized for the omnibox height? They were fine as they were.

➕ many, many more complaints and issues from me, Thorium users, and the community at large (just take a look at the Chromium bugs or Google Chrome Help threads and search for "2023" or "Cr23")

Thus, I am starting a UI redesign initiative tentatively called "Th24" (Which is also nice since the browser is named after radioactive element Thorium, one isotope of which happens to have a radiation half-life of 24.0 days lol).

This doesn't attempt to completely revert the Cr23 UI (they have since removed all the pre-Cr23 UI code, which covers hundreds of files. The amount of work to keep it reverted and maintained each release would be ridiculous). Instead, it attempts to come up with new code paths to create a UI that more closely matches the old, non-Cr23 UI, especially for specific problem areas like mentioned above. I'm not gonna touch colors or icons for example.

This is a beta build that is buggy but does solve alot of the above:

  • Tab height is restored
  • Tab padding is reduced (but not restored, for aesthetic reasons)
  • Bookmark bar height is restored
  • Menus, their size, and square shape, are all restored (except for menus in the omnibox for some reason?)
  • Reduced the rounded-ness of buttons and the separator described in No. 5.
  • Downloads Page has the "X" buttons on items again
  • Minor revision updated to .251, which includes two security fixes for WebAssembly

All of this is not the default!. You will have to go to chrome://flags and enable the new chrome://flags/#thorium-2024 flag.

Future work to be done on > WebUI mangling, omnibox icons, button radius, and the padding between extension icons (when you "pin" an extension to the top bar).

If you would like to integrate these fixes into your own Chromium build, I have decided that instead of adding files to the Thorium src tree, the changes are instead in a git ".patch" file that can be applied separately to vanilla Chromium (Kinda like the .patch files in the thorium-libjxl repo that serve the same purpose for JPEG-XL support). Just make sure the version of Chromium matches or is very close to the one Thorium is currently on. See > https://github.com/Alex313031/thorium/blob/main/other/thorium-2024-ui.patch

SSE4 builds only. You can use the .zip if you don't want to touch your main installation.

Thorium-Win - M126.0.6478.231 - 41st Release

Published by Alex313031 2 months ago

M126

  • This is also Thorium's 30th major version anniversary. Very first Thorium was based on M96.
  • Skipped M125 because it was too old. I was house-sitting for my dad/stepmom while they were away on a month long trip. I didn't have access to my workstation which I really need to do anything more than minor development work.
  • (Linux Only) kAllowWindowDragUsingSystemDragDrop was re-enabled at the source level. This should fix tab/window dragging issues on Wayland, but may cause other unforeseen bugs on Wayland. File bugs if appropriate. Can be disabled with the cmdline flag --disable-features=AllowWindowDragUsingSystemDragDrop
  • Google Hangouts component extension was removed, following concerns about privacy. However, if you use hangouts frequently and would like this extension back, see this ReadMe. Closes https://github.com/Alex313031/thorium/issues/743, https://github.com/Alex313031/thorium/issues/740, https://github.com/Alex313031/thorium/issues/449, https://github.com/Alex313031/thorium/issues/410
  • The Chrome Refresh 2023 UI is now the default.
  • I moved the tab search button back to the right of the tabstrip. I think it was a bad decision to put it on the left in the 2023 UI. However, if you prefer it on the left (to have Thorium's UI match Chrome's), enable the new chrome://flags/#left-aligned-tab-search-button flag I added.
  • Another performance bump due to some new PGO configs courtesy of @RobRich999. See this commit. In some limited testing it got better Speedometer 3.0 scores than Chrome.
  • libjxl updated to 0.10.3
  • Manifest V2 support force enabled (Starting in M128 they are experimenting with disabling MV2). It will be completely removed in M136 (10 months from now), and when they finally do remove the actual code for loading MV2 extensions, it will be restored, because F**k Google! Even if it takes a crapload of work, I am determined to restore it, because without UBlock Origin working properly in Thorium, I wouldn't even want to use my own browser! If you want to use other Chromium based browsers, you will eventually be out of luck, and will either need to use Firefox, or find another Chromium fork that has MV2 support when the time comes.
  • New flag chrome://flags#revert-from-portable can be used to prevent data loss when reverting a user profile from portable mode to normal mode (i.e. when turning off the disable-encryption and disable-machine-id flags). Can also be used when moving the user profile from one machine to another. Read the flag description for details.

Two more things:
– I have created a new user survey for 2024. The more responses I get, the better, and it will be used to guide decisions about Thorium into Q4 of 2024. Take the 8 question quick survey here > https://www.surveymonkey.com/r/355TK88
– I am hosting an art/image contest! The winner's image will be displayed on the easter egg page, as well as the chrome://version page. It should be an art or clipart image. See details and requirements over here > https://thorium.rocks/contest

Thorium-Win - M124.0.6367.218 - 40th Release

Published by Alex313031 5 months ago

M124

  • AC3/E-AC3 Audio support restored. It was disabled in the last couple of versions due to ffmpeg changes. Dolby Atmos audio is also restored. Note that for ARM/ARM64 builds, it is still disabled, due to incompatibilities with how Chromium loads the libffmpeg library.
  • WebRTC (used for real-time communication like video chats, i.e. Zoom, for example) can now use H.265/HEVC (recent upstream Chromium feature) on devices without hardware decoding support (Thorium feature). This is good because H.265 compression means that you will have less stuttery streams if you are on a bandwidth limited connection.
  • Fingerprinting protection patch added. Note this isn't a safety blanket, and doesn't mean Thorium will remove all types of fingerprint tracking it just makes it better than normal Chromium/Chrome. I would like to expand on this in the next version by adding a setting to enable the Global Privacy Control header, alongside the "Do Not Track" setting, which is also enabled by default in Thorium.
  • Added flag to enable/disable Side Panel Journeys, which can be annoying. chrome://flags#side-panel-journeys
  • Added flag to enable/disable showing the built in internal extensions that are normally hidden. They are now hidden by default (like in normal Chromium), but can be re-enabled with chrome://flags#show-component-extension-options. I did this because I was getting too many issues with people wondering what they are, why they couldn't be removed, and if they were a security concern. These extensions are built in to every Chromium browser. Disabling them would remove support for the Web Store, viewing PDFs, and integrating with Google Hangouts. I added a patch from UnGoogled Chromium a while back to un-hide them, but it has led to more confusion than it is worth. Since most people don't care, they are now hidden again, but the flag is for people who want to inspect or debug them, or just want the transparency of showing all extensions that are loaded in the browser.
  • The Side Panel Chrome Customization feature now works even if Chrome Refresh 2023 UI is disabled (Thorium has it disabled by default). However, fixing this this led to an unforeseen minor issue, that I didn't catch until everything was already built. Even if Chrome Refresh 2023 is enabled with the chrome://flags/#chrome-refresh-2023 and chrome://flags/#customize-chrome-side-panel flags as mentioned in the M123 release, it still won't actually work unless you also pass the --disable-features=CustomizeChromeSidePanelNoChromeRefresh2023 flag. Since I didn't catch this until afterward, there is no GUI flag available on the chrome://flags page. You will need to specify it manually on the commandline, either from the terminal, or to make it permanent, by editing the shortcut (on Windows), or editing /usr/bin/thorium-browser (on Linux). Next release will fix this.
  • The entire browser now respects Gamma/Alpha settings that the user has set for the display (Windows only for now). It is unknown how this will play with Thorium's JPEG-XL support. Feedback requested.
  • New commandline flag to disable the custom Thorium DNS config. Normally, Thorium uses two patches, to make DNS queries more privacy respecting, and to use DNS over HTTPS (DoH) by default, which is more secure and can't be intercepted by "man in the middle" attackers. However, this was breaking some people's configurations, especially when they had manually set DNS options in the OS, or were using external third party apps that change DNS settings (like VPN services). So, if you pass the --disable-thorium-dns-config flag on the commandline, Thorium will use the default Chromium DNS configuration. You can make it permanent using the same steps as above. I will also make this a GUI flag in the next release.
  • 32 Bit Linux is now supported, however I am not going to be regularly building binaries. But it is at least supported at the source code level again. There is an M123 release available. Note that Ubuntu 16.04 is not supported.
  • FTP support restored! Chromium and Firefox both removed all support for ftp:// URLs back in 2021. This has always annoyed me, because alot of ftp servers are still around, and alot of old software is only downloadable from ftp servers. In addition, tools like wget and curl wont download from them by default. This made it really convoluted to download files from an ftp website, usually making the user have to download a third party app. FTP means "File Transfer Protocol", and it was used heavily on the web for serving download directories to people (Microsoft used to host updates on an ftp site, for example). Learn more about it Here. It is enabled by default, but can also be disabled by the restored flag chrome://flags/#enable-ftp. There are two minor bugs though. First, favicons don't work, so when you are on an ftp site, the tab will show the "dino" icon usually used when a site is not reachable. Second, directly clicking links doesn't work, and will instead land you on an "about:blank#blocked" page. To go to an ftp site, right click the link, and select "Copy link address", and then open a new tab, paste the link in the address bar, and press enter. I hope to resolve these in the next version. This makes Thorium the only modern browser that supports FTP anymore. Thorium also now registers as an FTP URL handler with the OS, but I have not tested if opening an ftp url in an external app will cause Thorium to open it correctly, or land you on that "about:blank#blocked" page. Feedback is requested. Thanks to @win32ss for modernizing some of the code, since obviously stuff has changed alot in the Chromium repo since 2021. I took his patches, and adapted/fixed them to work on the M124 Chromium revision(s).
  • I enabled a feature that is normally disabled, that allows you to configure more options for PWA (Progressive Web App) windows. See the settings while in a PWA to see the extra options.
  • Global Media Controls (this little icon in the top bar > Screenshot from 2024-05-17 03-00-16) can be disabled again. I had enabled a feature that updates the UI on ChromiumOS/ThoriumOS, but it had the unforeseen effect of force-enabling it on other platforms.
  • Major vulnerability CVE-2024-4671 is fixed in this version.
Thorium-Win - M123.0.6312.133 - 39th Release

Published by Alex313031 6 months ago

M123

Big news! On top of Thorium continuing to support Windows 7/8/8.1 (which I have been doing for a while now, since M110), Thorium now supports Windows XP and Windows Vista! I made a page dedicated to it, with an XP style theme similar to the Win7 page > https://thorium.rocks/xp/.

Download releases for all these Pre-Windows 10 OSes here > https://github.com/Alex313031/thorium-legacy/releases

This also means that Thorium now supports more OSes and architectures than ANY other browser on the market!. Windows XP - 11 x32, x64, and arm64. MacOS x64 and arm64. Linux x64 and Raspberry Pi arm64. And Android arm32, arm64, and x86.

Thanks to @gz83 for helping with Windows builds + policy templates, and @win32ss for providing the baseline patches used to restore Windows XP/Vista support.

Thorium-Win - M122.0.6261.132 - 38th Release

Published by Alex313031 7 months ago

Nothing too special this release, just your standard Chromium upgrade.

However, five things:

Also, I got more issues regarding people disliking the custom colored top bar icons. Reminder that since M121, I added a flag to disable these > chrome://flags/#disable-thorium-icons

Thorium-Win - M121.0.6167.204 - 37th Release

Published by Alex313031 8 months ago

M121 Thorium's 30th version birthday!

  • Disabled annoying feature promos like "Show me how to set Chrome's theme?" and "Do you want to take the privacy check now?". It wouldn't be so bad if these didn't appear randomly, and interrupt your workflow by blocking interaction with the rest of the browser until you click "Yes" or "Not right now". (Also notice how they say "Not right now" instead of "No". WTF is up with corporations doing this. It's subtle, but it's like psychologically saying "we'll let you say no now, but we expect you to change your decision later". Like no, leave me alone!).
  • Dolby Vision should now use proper color space info from your machine. Note that Dolby support still requires a hardware decoder to work at all, unlike HEVC/H.265 content which we added a patch to allow software decoding.
  • Updated libhighway to 1.0.7, and libjxl to 0.9.2. This should hopefully fix the JPEG-XL HDR issues some people reported. Should fix https://github.com/Alex313031/thorium-libjxl/issues/18
  • On Windows, the mini_installer.exe unpacks itself faster due to an upstream change.
  • On Windows, preloading the browser, for example with background mode enabled, is now a little bit faster due to preloading pdh.dll and uxtheme.dll from system32.
  • Network Certificates now use the BoringSSL library (yes that's really its name), which is better overall than OpenSSL. (Don't worry, BoringSSL is still open source, and is actually a fork of OpenSSL).
  • Enabled a new Experimental feature, called kResponsiveToolbar. This makes it where when the window size is too small to hold both the tabstrip and top bar buttons (for example if you have alot of pinned extensions), the top bar buttons will be moved to a little chevron overflow menu.
  • Re-enabled a setting that I previously disabled due to crashes, which allows you to toggle AutoPlay settings at chrome://settings/content/sound
  • Added a much requested feature to be able to disable the colored custom top bar icons. You can now disable them with the flag > chrome://flags/#disable-thorium-icons. Rejoice! as I know many people don't like that I added blue and green colors to those. Note that icons used in the menus and settings still have blue colored triangles. I'm not gonna change those, as it's too much work and most people don't care about those. Fixes https://github.com/Alex313031/thorium/issues/307 and https://github.com/Alex313031/thorium/issues/66
  • Prevented Thorium complaining about missing Vulkan drivers on non-Intel platforms. This has been a long standing issue in Chromium, but I'm not going to file a bug because it is used by their infrastructure.
  • Added Thorium's extra search engines to even more locales, including Mexico and Venezuela.
  • Completely disabled the "Privacy Sandbox" (previously known as FLOC), because it's a s**tshow, and not good for user's privacy at all. See > https://proton.me/blog/google-privacy-sandbox
  • Enabled a compiler flag called _LIBCPP_HARDENING_MODE = _LIBCPP_HARDENING_MODE_FAST, which hardens C++ code against flow integrity issues and memory overflows, while still keeping stuff fast compared to = 1
  • Removed some extraneous LLVM opts
  • Re-enabled the chrome://whats-new page after I accidentally disabled it in M117.
  • More SIMD optimizations in the AVX2 versions.
  • I changed the download bubble flag name to chrome://flags/#disable-download-bubble, so if you changed this to restore the old download shelf, you will need to set it again.
  • Updated the documentation in the //docs directory, and on the site at https://thorium.rocks/docs which should allow you all to easily make your own builds now. Previously, following the docs which were very out of date (out of date for both upstream and because of the new build scripts added to the repo) would not yield a working browser. Fixes https://github.com/Alex313031/thorium/issues/488, https://github.com/Alex313031/thorium/issues/362, and https://github.com/Alex313031/thorium/issues/551, https://github.com/Alex313031/thorium/issues/477.
  • Added SSE3, AVX, and AVX2 builds for both Windows and Linux. I am deprecating the Thorium-Linux-AVX2, Thorium-SSE3, and Thorium-Win-AVX2 repos.
Thorium-Win - M120.0.6099.235 - 36th Release

Published by Alex313031 9 months ago

M120

  • More optimization flags as per guidance from @RobRich999 here > https://github.com/RobRich999/Chromium_Clang/issues/26#issuecomment-1898744696
  • Re-enabled component ffmpeg.dll (in case you ever wanted to replace it with a version that doesn't have proprietary codecs to make a "fully FOSS" build. Most people won't want this as it breaks media playback on alot of sites (including Widevine).
  • Added a new right-click menu item to "Save video frame" which you can use to save a .png of the current paused frame.

Added three new chrome://flags flags. These are:


IMPORTANT: Since we are building AVX2 and SSE3 releases every time now, I'm just gonna release them all here (Except the Windows on ARM versions). The Thorium-Win-AVX2 and Thorium-SSE3 repos will have an empty release redirecting users to this repo from now on. I will need to contact @ltguillaume in order to fix Thorium WinUpdater because of this.
Thanks again @gz83 for helping me make the builds.

Thorium-Win - M119.0.6045.214 - 35th Release

Published by Alex313031 10 months ago

First, to address the easter egg and website stuff, here is my explanation/apology post > https://alex313031.blogspot.com/2024/01/the-good-bad-and-ugly.html (it also addresses why I was gone for a month).

M119 (M118 was too old, so skipped that version)

  • Fixes multiple CVEs including https://github.com/advisories/GHSA-xm5p-7w7v-qqr5
  • Better HLS support
  • Better JavaScript compilation performance due to new Thorium compiler flags as well as upstream V8 re-workings.
  • Updated Widevine versions
  • The search engine choices that Thorium adds are now available in more locales. (Notably not in Russia or China because ya know, their governments not allowing certain URLs. Hong Kong and Ukraine are not affected).
  • Live Caption should now finally work (English only, sorry. The .grdp files for other languages are closed source for now).
  • ChromeCast can now use VP8 and VP9 codecs for less bandwidth consumption if you have slower internet. (Note that this is disabled by default in Chromium, I enabled it, but it is still experimental).
  • New chrome://flags flag chrome://flags#disable-aero This disables transparency effects and GPU accelerated window frame compositing (while still leaving GPU acceleration for the actual web contents intact). It is useful if you dislike transparency, or are getting glitches on Windows 11 with the window frame.
  • Storage Access API was disabled because the security risk is more than the usability improvement. If you need this, use the new chrome://flags/#storage-access-api flag I added to enable it.
  • Keyboard shortcuts in ThoriumOS now align better with Linux.
  • Portable version now also sets the cache dir to ./.config/cache, to prevent any disk writes outside of the dir.
  • Rejoice! If you are like me and hate the new "Download bubble" and want the old "Download shelf" back, well I reverted a commit from upstream, and now there is a flag for it! > chrome://flags#download-bubble
  • Windows builds are now more hardened against memory overflows by enabling the arg "win_enable_cfg_guards = true"
  • PGO is now more effective (thanks @RobRich999) > https://github.com/Alex313031/thorium/commit/5fe393754c8f49a27940b332affd5cc028be1e1d
  • New flag from Ungoogled-Chromium chrome://flags#tab-hover-cards Allows removing tab hover card images, and instead replace with a tooltip (the behavior before M106).
  • Added SSE3 builds for people without AVX-capable CPUs
Thorium-Win - M117.0.5938.157 - 34th Release

Published by Alex313031 about 1 year ago

  • Removed Linux middle click autoscroll by default because it caused bugs for some people. You can still enable it by using the cmdline flag --enable-blink-features=MiddleClickAutoscroll (and I removed the warning bar for people who do). Fixes > https://github.com/Alex313031/thorium/issues/199
  • You can now choose to not show full URLs. Previously it was forced to true, and selecting/unselecting "Always show full URLs" would do nothing. It is now still enabled by default, but you can choose to unselect it. I will be making a PR to Ungoogled Chromium about this.
  • HEVC/H.265 decoding is now multi-threaded. Thanks to @RobRich999 for pointing this out and where to enable it.
  • Two major security vulnerabilities in libwebp and libvpx were fixed. See the new security policy for info about submitting security bugs, and a list of fixed vulnerabilities (which will be updated henceforth). If you use any of my Electron apps, those were also recently fixed.
  • On top of my Thorium-Win7 fork, which will soon be updated to be based on Supermium M118 (me and @gz83 are working on a unified patch for this), I also made a new repo: https://github.com/Alex313031/chromium-xp with ongoing work to resurrect Chromium on XP. I currently have fixed google search, compiling with the windows 10 sdk, and added Thorium's optimizations (minus AVX).
  • chrome_management_service should work properly now, if any of you out there are using Thorium with enterprise policies set.
  • Slightly higher Speedometer scores, due to both upstream optimizations, and me tweaking rustflags in the compiler config.
Thorium-Win - M116.0.5845.169 - 33rd Release

Published by Alex313031 about 1 year ago

M116

  • chrome://whats-new page has been re-enabled by me, after Google made it "Chrome only". You will see it launch in a new tab on every version upgrade.
  • I enabled an experimental setting in Appearance to toggle tab hover cards. This can also be controlled via the traditional chrome://flags flag
  • I enabled an upcoming UI design change that was supposed to land in M117, but I enabled it early. This moves the Extensions submenu from "More Tools" in the main menu, into its own dedicated menu item.
  • New "Name Window" item in "More Tools". This allows you to manually override the window name, i.e. what appears in the window's title and what appears in the taskbar.
  • initial_preferences file is now included in the Windows installer, to show the Welcome page on first launch after the first install.
  • New internal variable specifying the type (i.e. AVX, AVX2, SSE3, etc.) is being shipped to facilitate the new Thorium-Win-Updater project me and ltguillaume have been working on, to allow auto update for Windows (Linux users already have it, if you are using the deb repo).

Thanks @gz83 @ltguillaume for helping.

Also, on another note, people have been complaining about me not releasing a new version on the exact same day as a new major Chromium version. To those people, I say, every major version takes me about 6+ Hours of intensive work to rebase. This is followed by many more hours for both me and @gz83 and @midzer to build each version, and this is assuming we are using all of our CPU cores pegged at 100% usage, which also slows our machines to a crawl for if we want to do anything else. Please be patient. If people still make issues or discussions about this, my response will be going forward: Then you try maintaining a Chromium fork!

Thorium-Win - M115.0.5790.172 - 32nd Release

Published by Alex313031 about 1 year ago

M115 : This release is all about bug fixes, rather than new features.

Might also fix other strange tabstrip bugs that people experienced in M114.

Next release we are planning to update libjxl and add a "Close tabs to the left" menu item.

Thorium-Win - 31st Release - M114.0.5735.205

Published by Alex313031 about 1 year ago

  • Minor revision update to fix security vulnerabilities, as an interim release until M115 which will come in 2 weeks.
  • Fixed minor WebUI images missing
    Otherwise, same release notes as the previous release.
     
Thorium-Win - 30th Release - M114.0.5735.134

Published by Alex313031 over 1 year ago

M114

Upstream Changes

  • Chromium 114 has even better support for WebGPU than 113. For more info about this, see the previous release notes.
  • Chromium and Thorium now support specifying and appending commandline flags via the CHROME_EXTRA_FLAGS environment variable. For example:
    export CHROME_EXTRA_FLAGS="--no-sandbox" and then running thorium-browser from the same shell, will append --no-sandbox. You could set this in your ~/.bashrc or /etc/profile However, keep in mind that Thorium already also has a custom way to set default flags, by making/editing ~/.config/thorium-flags.conf
  • V8 (Chromium's JavaScript engine) has added some new optimizations to the Maglev compiler. A noticeable difference in JIT javascript compilation can be seen between Chromium 113 and 114. Interesting read here > https://blog.chromium.org/2023/06/how-chrome-achieved-high-scores-on.html Thanks @midzer for telling me about this.

Thorium Changes

Thorium-Win - 29th Release - M113.0.5672.134

Published by Alex313031 over 1 year ago

M113

Upstream Changes

113 brings better support for WebGPU, and enables it by default. You can test it on my site here > https://thorium.rocks/misc/webgpu-test/ There are still some bugs with Nvidia GPUs on Linux. M114 seems to fix this. If you want to force WebGPU on, you can enable the chrome://flags/#enable-unsafe-webgpu flag. (I disabled the warning infobar with this flag since I use it alot, but know that by enabling it, malicious processes could potentially extract frames from GPU memory)
It also brings the new Performance pane in settings, to enable memory saver > chrome://settings/performance This allows Thorium to sleep tabs in the background. Edge users will be familiar with this feature.

Thorium Changes

I had to remove HEVC/H.265 and AC3 support temporarily. M114 will have it back again, so stay on M112 if you need this. This is because the guy who makes the patch skipped M113, and HEVC support is a prerequisite for my custom AC3 patch. I could manually patch ffmpeg by looking at how the M112 patch was formatted. But thats alot of files, more than Thorium as a whole even uses. Sooooooo....Sorry....LoL. Like I said, use 112 or wait until 114 if you wanna watch H.265 videos or AC3 audio.

4 new flags:
Two features I had previously enabled by default were removed upstream. I re-added them, but this time I put them behind two new flags > chrome://flags/#tab-outlines-in-low-contrast-themes and chrome://flags/#prominent-dark-mode-active-tab-title. They are disabled by default, and so in dark mode/incognito mode you will see a reversion back to the stock Chromium tabstrip theme. If you want the old behavior and look that Thorium has had since M100, simply enable these flags. Putting them behind flags was partially in response to this issue.

Then, the other two are flags from UnGoogled, one of which I modified.

  • chrome://flags/#scroll-tabs The default behavior on Linux is to have this on. On other platforms you had to use a cmdline flag. Now, you can control it through the UI for ALL platforms (even Android). This is different from the scrollable tabstrip flag here > chrome://flags/#scrollable-tabstrip which moves the entire tabstrip. The one I added simply changes which tab is active (which I think is more useful).
  • chrome://flags/#keep-all-history This is the one I modified. Chromium by default only keeps history for 90 days. I raised this to 120 days. By enabling this flag, it will keep history forever. Note that this could cause your user profile dir to grow up to its maximum allowed of 2GB, if you were to enable this flag and then browse for ~many months, etc.

Also I am proud to finally announce a new ThoriumOS release. Updated many packages, it uses Thorium 113, and it has Google Drive support and NVidia GPU support!! Get it here > https://github.com/Alex313031/ThoriumOS/releases/tag/V113.0.5672.177

Thorium-Win - 28th Release - M112.0.5615.166

Published by Alex313031 over 1 year ago

M112

M112 versions newer than 112.0.5615.137 fix important security vulnerabilities. See > CVE-2023-2136 and CVE-2023-2135
– Enabled AC3 for MacOS
– More compiler optimizations thanks to @RobRich999 See > https://github.com/Alex313031/thorium/commit/18ef7450f3675a2ec3aaba54b6b1ea8b215003cb
– Added LLD Tail Merging for Windows

– Added some new keyboard shortcuts:

  • "Ctrl+Shift+Q" to close all windows (exit)
  • "Ctrl+Shift+K" to open a new tab to the right
  • "Ctrl+Shift+D" to duplicate the current tab
  • "Ctrl+Shift+P" to pop out the current tab into a new window

Known Issue: Text highlighting doesn't work on some sites. It will still copy/paste, just sometimes won't highlight what you are selecting. @midzer and I are working on this.

IMPORTANT - Thorium for Windows 7/8/8.1 builds have been moved to their own repo > https://github.com/Alex313031/thorium-win7 , where development continues. I will no longer be posting builds of M109 here, and instead it will be there and of course on the https://thorium.rocks/win7 site.

Thorium-Win - Win7/8/8.1 Maintenance Release

Published by Alex313031 over 1 year ago

M109 Windows 7/8/8.1 Maintenance Release

IMPORTANT: PLEASE USE THE NEW WINDOWS 7/8 REPO HERE FOR FUTURE RELEASES > https://github.com/Alex313031/thorium-win7

As promised, here is a maintenance release of Thorium M109 for Windows 7/8/8.1!
Backported some stuff, and bumped minor rev number 109.0.5414.120 > 109.0.5414.139 which includes security fixes from upstream Chromium.

– Compiled with Polly enabled
– Pre-compiling of inline scripts enabled
– Added "Ctrl+Shift+Q" keyboard shortcut to close all windows.

  • Backported more optimization flags for V8, Chromium's Javascript engine, from the M111 release.

  • Backported five new new chrome://flags flags from the M110 & M111 release:
    chrome://flags/#force-gpu-mem-available-mb - Set available VRAM to be used by Thorium. Options are 128, 256, 512, and 1024 Mb. Useful for systems with very low or very high video memory. The default (if unset) is 512 Mb.
    chrome://flags/#enable-native-gpu-memory-buffers - Enable native CPU-mappable GPU memory buffer support on Linux. (Linux only) You can see the effect of this on chrome://gpu in the "GpuMemoryBuffers Status" section.
    chrome://flags/#double-click-close-tab - A flag that @gz83 came up with and we both implemented. Allows you to close a tab by simply double-clicking on it, similar to an option in Vivaldi.
    chrome://flags/#show-fps-counter - Show a F.P.S. counter on each display, which also shows used/available GPU memory. Useful for Web development.
    chrome://flags/#media-router to enable/disable the media router, i.e. for Cast.

  • Logo has had padding removed, and a new logo was created for the windows installer .exe.

  • Thorium mascot image added to chrome://version page, under the copyright (for fun)

Thorium-Win - 27th Release - M111.0.5563.111

Published by Alex313031 over 1 year ago

M111
– Added two new flags:

  • chrome://flags/#media-router to enable/disable the media router, i.e. for Cast.
  • chrome://flags/#close-confirmation modified from an ungoogled flag. Prompts the user before closing browser window(s) if enabled. Options are 'last window' and 'multiple windows'

Compiled with Polly enabled

– Pre-compiling of inline scripts enabled
– Added "Ctrl+Shift+Q" keyboard shortcut to close all windows.
– Added snap support

Thorium-Win - 26th Release - M110.0.5481.178

Published by Alex313031 over 1 year ago

M110 is shaping up to be a great release!

  • JPEG-XL functionality RESTORED; thanks to @jonsneyers @mo271 and @gz83 for helping with this.
    There is a new repo for the source code for this, used as a submodule in this repo. > https://github.com/Alex313031/thorium-libjxl
    In case you didn't know, Google decided to be a d**k and remove JPEG-XL support after M109, as well as Windows 7/8/8.1 support.
  • Thorium now supports the AC3 codec, including in HEVC/H.265 videos. Thanks to @midzer for helping find a patch, which I manually converted to work on M110.
  • HEVC/H.265 videos now support all profiles.
  • More optimization flags for V8, Chromium's Javascript engine.
  • Added four new chrome://flags flags:
    chrome://flags/#force-gpu-mem-available-mb - Set available VRAM to be used by Thorium. Options are 128, 256, 512, and 1024 Mb. Useful for systems with very low or very high video memory. The default (if unset) is 512 Mb.
    chrome://flags/#enable-native-gpu-memory-buffers - Enable native CPU-mappable GPU memory buffer support on Linux. (Linux only) You can see the effect of this on chrome://gpu in the "GpuMemoryBuffers Status" section.
    chrome://flags/#double-click-close-tab - A flag that @gz83 came up with and we both implemented. Allows you to close a tab by simply double-clicking on it, similar to an option in Vivaldi.
    chrome://flags/#show-fps-counter - Show a F.P.S. counter on each display, which also shows used/available GPU memory. Useful for Web development.
  • Logo has had padding removed, and a new logo was created for the windows installer .exe.
  • New desktop action on Linux, to "Open New Window with a temporary profile". This can be used even if Thorium is already running. It will make a new profile in /tmp, and use that. NOTE: Upon system restart, the /tmp dir is cleared.
  • Thorium mascot image added to chrome://version page, under the copyright (for fun)

IMPORTANT for Windows Users

– Two new flags from ungoogled chromium, to enable truly portable usage were added. They unencrypt your user data dir, and remove tying it to a specific machine. Meaning you can drag the .zip around with you from machine to machine, and you wont lose passwords, extensions, etc. You will need to back up your current config, or start with a fresh one. I.E. you can go from Unencrypted > Encrypted, but not Encrypted (the default) > Unencrypted. I should have introduced these a long time ago. Sorry if this annoys users of the portable .zips. Note that enabling these flags is inherently less secure.
They are:
chrome://flags/#disable-encryption and
chrome://flags/#disable-machine-id

Thorium-Win - 25th Release - M109.0.5414.120

Published by Alex313031 over 1 year ago

IMPORTANT: PLEASE USE THE NEW WINDOWS 7/8 REPO HERE FOR FUTURE RELEASES > https://github.com/Alex313031/thorium-win7

  • Special Windows 7/8/8.1 release! (Not only for these platforms, but see below.)
  • M109 Maintenance release.
  • HEVC patch updated.
  • Icon updated for Linux and Windows, which removes the padding on the outside of the thorium logo to match
    upstream change, the only effect is that the logo is slightly bigger.
  • More LLVM optimization flags
  • Removed the "unsupported OS" infobar banner for Win7/8/8.1 and Ubuntu 16.04, Debian 9, and Arch<2018.12

NOTE: Going forward, Thorium will be built to more stable versions. This one is based on M109 stable (see below), future versions will be based on the equivalent of "beta" or "dev" channel, rather than tip-o-tree, i.e. "canary" channel.

IMPORTANT M109 is the last version of Chromium for Windows 7, Windows 8, and Windows 8.1 😢 as per Here. I still use and enjoy Windows 7, and so have made a site for it here > https://thorium.rocks/win7 This is why this release is based on stable M109. I will be updating the links on my win7 page to link to these. Another deviation from standard Thorium releases, is that the windows 7 release will have a special 32 bit SSE2 build for old computers, on top of the SSE3, AVX, and AVX2 builds. There is also a small easter egg on the chrome://version page, to show love for one of Micro$oft's greatest OSes, back when that $ sign was a little smaller, lol.

M109 will also be getting maintenance releases for the Win7/8/8.1 version, tracking the official chrome stable versions as per https://chromiumdash.appspot.com/releases?platform=Windows and I will be attempting to backport patches from M110 into M109, as time and knowledge permits.

@gz83 @midzer