Update DLL naming to codename scheme (rs2, ni, ge)#1
Open
rodboev wants to merge 1 commit into
Open
Conversation
c0dd98c to
6189c21
Compare
- Fix dll_name setting (was reading nonexistent "pinned_version") - Map numeric versions to codenames: - 0 -> rs2 (Windows 10) - 2 -> ni (Windows 11 22H2/23H2, builds 22621-22635 and 23403-23620) - 5 -> ge (Windows 11 24H2+) - Correct build ranges per EP wiki: - ni: 23403-23620 (not 25197) - .3 request-only: 25115-25915 (not 25201) - Return std::nullopt on failure instead of empty string - Fix memory leak: move install_path allocation after PickTaskbarDll() check - Update settings description and README for codename filenames - Add UBR limitation comment for 22621 < .1343
6189c21 to
dcbc7c9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dll_namesetting (was reading nonexistentpinned_version)install_pathallocation afterPickTaskbarDll()checkRationale
The ep_taskbar_releases repo switched from numeric naming to codename naming as of April 2026. The latest release (
1d8133a) ships:ep_taskbar.rs2(Windows 10)ep_taskbar.ni(Windows 11 22H2/23H2)ep_taskbar.ge(Windows 11 24H2+)Builds requiring ep_taskbar.1, .3, or .4 are listed as "available upon request" in the EP wiki. These versions exist due to ABI differences in
ITrayComponentHostacross Windows builds. Neither the old numeric releases nor the new codename releases ship these publicly. Users on those builds can obtain the DLL separately and pin it via thedll_namesetting.Build ranges corrected per the EP taskbar wiki: Dev builds 25115+ require .3, not .2/ni.