-
-
Notifications
You must be signed in to change notification settings - Fork 910
chore: Various code improvements #21256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Lord-McSweeney
merged 10 commits into
ruffle-rs:master
from
SuchAFuriousDeath:various-code-improvements
Aug 15, 2025
Merged
chore: Various code improvements #21256
Lord-McSweeney
merged 10 commits into
ruffle-rs:master
from
SuchAFuriousDeath:various-code-improvements
Aug 15, 2025
Conversation
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
081b907
to
781e322
Compare
beacaba
to
b19d8bb
Compare
evilpie
reviewed
Aug 9, 2025
517a0ba
to
443dda8
Compare
04ec52a
to
5401f2d
Compare
5401f2d
to
58af173
Compare
Lord-McSweeney
approved these changes
Aug 15, 2025
Hancock33
added a commit
to Hancock33/batocera.piboy
that referenced
this pull request
Aug 17, 2025
----------------------------------------------------------------------------------- cemu.mk d7c510ed31afb2acfb31e07c1e50a9057e4e0e04 # Version: Commits on Aug 16, 2025 ----------------------------------------------------------------------------------- Update vcpkg dependency SDL2 to 2.32.8 (#1670), ------------------------------------------------------------------------------------------ dolphin-emu.mk b8352eeeb99721abbfa34473878f10863223b178 # Version: Commits on Aug 15, 2025 ------------------------------------------------------------------------------------------ Merge pull request #13865 from Pokechu22/dsi-mention-mmu Mention enable MMU in the DSI Exception message (Invalid read from ###/Invalid write to ###), ----------------------------------------------------------------------------------------------- dolphin-triforce.mk 842a088dcecbc99348b24557396f56456ceaf2ac # Version: Commits on Aug 15, 2025 ----------------------------------------------------------------------------------------------- [PATCH] Updated timeout Updated debug text Updated debug text Co-authored-by:: crediar <[email protected]>, ------------------------------------------------------------------------------------------ duckstation.mk 276211b9fc8c56951a101c24ceaa24460b47af4a # Version: Commits on Aug 16, 2025 ------------------------------------------------------------------------------------------ GameDB: Disable auto analog mode on Echo Night (#3514), -------------------------------------------------------------------------------------- melonds.mk af84734e576aaa59c56f61e266359a4ef31db5b7 # Version: Commits on Aug 15, 2025 -------------------------------------------------------------------------------------- nix: add faad2 dependency, update packages while we're at it, ---------------------------------------------------- pcsx2.mk v2.5.112 # Version: Commits on Aug 16, 2025 ---------------------------------------------------- - [ImGui: Use Shortcut api for most input handling](PCSX2/pcsx2#13073) --------------------------------------------------------------- ruffle.mk nightly-2025-08-16 # Version: Commits on Aug 16, 2025 --------------------------------------------------------------- ## What's Changed * chore: Various code improvements by @SuchAFuriousDeath in ruffle-rs/ruffle#21256 * avm2: Throw correct errors when get/set/call super ops fail by @Lord-McSweeney in ruffle-rs/ruffle#21169 * Improve String.lastIndexOf and String.split accuracy by @SuchAFuriousDeath in ruffle-rs/ruffle#21339 **Full Changelog**: ruffle-rs/ruffle@nightly-2025-08-14...nightly-2025-08-16, ------------------------------------------------------------------------------------------- xenia-native.mk a9fb32a2fddaf46573a0300c84db2b530cc62c2f # Version: Commits on Aug 15, 2025 ------------------------------------------------------------------------------------------- [GPU] More post merge fixes, ----------------------------------------------------------------------------------- ymir.mk 89bc6ff879006aac4e5edf0f68370e9873d6448b # Version: Commits on Aug 16, 2025 ----------------------------------------------------------------------------------- chore(VDP1): Include command addresses in devlog, ------------------------------------------------------------------------------------ box64.mk 167217c76b9fc226c7da1b4482a39b90b63b4bd9 # Version: Commits on Aug 15, 2025 ------------------------------------------------------------------------------------ [LA64_DYNAREC] Added more scalar AVX opcodes (#2943), ------------------------------------------------------------------------------------------ devilutionx.mk df82616df1f897714cd581a3f543a88de84ccc29 # Version: Commits on Aug 15, 2025 ------------------------------------------------------------------------------------------ clang-tidy: auto fix headers for DiabloUI, ---------------------------------------------------------------------------------------- openmohaa.mk f5b01e7137b91e8a9e9b6c00e554aa1935af0035 # Version: Commits on Aug 15, 2025 ---------------------------------------------------------------------------------------- Fix window icon, ------------------------------------------------------ syncthing.mk v2.0.2 # Version: Commits on Aug 16, 2025 ------------------------------------------------------ ## Major changes in 2.0 - Database backend switched from LevelDB to SQLite. There is a migration on first launch which can be lengthy for larger setups. The new database is easier to understand and maintain and, hopefully, less buggy. - The logging format has changed to use structured log entries (a message plus several key-value pairs). Additionally, we can now control the log level per package, and a new log level WARNING has been inserted between INFO and ERROR (which was previously known as WARNING...). The INFO level has become more verbose, indicating the sync actions taken by Syncthing. A new command line flag `--log-level` sets the default log level for all packages, and the `STTRACE` environment variable and GUI has been updated to set log levels per package. The `--verbose` and `--logflags` command line options have been removed and will be ignored if given. - Deleted items are no longer kept forever in the database, instead they are forgotten after fifteen months. If your use case require deletes to take effect after more than a fifteen month delay, set the `--db-delete-retention-interval` command line option or corresponding environment variable to zero, or a longer time interval of your choosing. - Modernised command line options parsing. Old single-dash long options are no longer supported, e.g. `-home` must be given as `--home`. Some options have been renamed, others have become subcommands. All serve options are now also accepted as environment variables. See `syncthing --help` and `syncthing serve --help` for details. - Rolling hash detection of shifted data is no longer supported as this effectively never helped. Instead, scanning and syncing is faster and more efficient without it. - A \default folder\ is no longer created on first startup. - Multiple connections are now used by default between v2 devices. The new default value is to use three connections: one for index metadata and two for data exchange. - The following platforms unfortunately no longer get prebuilt binaries for download at syncthing.net and on GitHub, due to complexities related to cross compilation with SQLite: - dragonfly/amd64 - illumos/amd64 and solaris/amd64 - linux/ppc64 - netbsd/* - openbsd/386 and openbsd/arm - windows/arm - The handling of conflict resolution involving deleted files has changed. A delete can now be the winning outcome of conflict resolution, resulting in the deleted file being moved to a conflict copy. This release is also available as: * APT repository: https://apt.syncthing.net/ * Docker image: `docker.io/syncthing/syncthing:2.0.2` or `ghcr.io/syncthing/syncthing:2.0.2` (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version) ## What's Changed ### Other * build: remove netgo and osusergo build tags (fixes #10251) by @calmh in syncthing/syncthing#10256 * build: bump required language level to 1.24, compiler to 1.25 by @calmh in syncthing/syncthing#10248 * build: set netgo & osusergo tags for Linux build by @calmh in syncthing/syncthing#10261 **Full Changelog**: syncthing/syncthing@v2.0.1...v2.0.2, ------------------------------------------------------------------------------------------ openbor7530.mk fb76ba85dfefa329be2dabc430fe651dcc756f56 # Version: Commits on Aug 15, 2025 ------------------------------------------------------------------------------------------ Merge pull request #335 from toxieainc/master Fix some warnings and typos and remove duplicate win-sdk, ---------------------------------------------------------------------------------------- retroarch.mk e6328b57074b9eb088aca26dc4d1672596b172ce # Version: Commits on Aug 16, 2025 ---------------------------------------------------------------------------------------- Fetch translations from Crowdin, -------------------------------------------------------------------------------------------- libretro-pcsx.mk 8da7189ef558eacaa80a37d542ade67b6717c812 # Version: Commits on Aug 15, 2025 -------------------------------------------------------------------------------------------- Merge branch 'master' into libretro,
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
No description provided.