Skip to content

Conversation

tomasz1986
Copy link
Member

@tomasz1986 tomasz1986 commented Aug 10, 2025

chore(gui): remove redundant "authenticated" conditions from Actions menu (#10235)

Due to previous code changes, the whole Actions menu is only available
when the user is logged in. As such, there is no reason to have the same
ng-if="authenticated" condition repeated in other items belonging to it.

Signed-off-by: Tomasz Wilczyński twilczynski@naver.com

@github-actions github-actions bot added the chore label Aug 10, 2025
…menu (syncthing#10235)

Due to previous code changes, the whole Actions menu is only available
when the user is logged in. As such, there is no reason to have the same
ng-if="authenticated" condition repeated in other items belonging to it.

Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
@tomasz1986 tomasz1986 force-pushed the tomasz86/prs/gui/clean-up-actions-menu branch from f3cd11f to 6acb4be Compare August 10, 2025 19:55
@calmh calmh merged commit ad19617 into syncthing:main Aug 10, 2025
29 checks passed
@calmh
Copy link
Member

calmh commented Aug 10, 2025

(It was also incorrect before, as when authentication was enabled but you weren't logged in, support bundle would fail with an auth error...)

@tomasz1986 tomasz1986 deleted the tomasz86/prs/gui/clean-up-actions-menu branch August 10, 2025 20:50
@calmh calmh added this to the v2.0.0 milestone Aug 12, 2025
spirkaa added a commit to spirkaa/infra that referenced this pull request Aug 17, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [syncthing/syncthing](https://syncthing.net) ([source](https://github.com/syncthing/syncthing)) | major | `1.30.0` -> `2.0.2` |

---

### Release Notes

<details>
<summary>syncthing/syncthing (syncthing/syncthing)</summary>

### [`v2.0.2`](https://github.com/syncthing/syncthing/releases/tag/v2.0.2)

[Compare Source](syncthing/syncthing@v2.0.1...v2.0.2)

#### 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 [#&#8203;10251](syncthing/syncthing#10251)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10256
- build: bump required language level to 1.24, compiler to 1.25 by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10248
- build: set netgo & osusergo tags for Linux build by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10261

**Full Changelog**: syncthing/syncthing@v2.0.1...v2.0.2

### [`v2.0.1`](https://github.com/syncthing/syncthing/releases/tag/v2.0.1)

[Compare Source](syncthing/syncthing@v2.0.0...v2.0.1)

#### 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.1` or `ghcr.io/syncthing/syncthing:2.0.1`
  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

#### What's Changed

##### Fixes

- fix: allow upgrade without config dir (fixes [#&#8203;10240](syncthing/syncthing#10240)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10241
- fix(all): various typos by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10242
- fix(etc): correct incantation to launch browser in Linux desktop file by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10246
- fix(db): handle path names that include URL special chars (fixes [#&#8203;10245](syncthing/syncthing#10245)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10247
- fix: increase default delete retention to 15 months by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10252

##### Other

- build(deps): update (most) dependencies by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10243

**Full Changelog**: syncthing/syncthing@v2.0.0...v2.0.1

### [`v2.0.0`](https://github.com/syncthing/syncthing/releases/tag/v2.0.0)

[Compare Source](syncthing/syncthing@v1.30.0...v2.0.0)

#### ⚠️ First 2.0 release ⚠️

This is the first release of the new 2.0 series. Expect some rough edges and keep a sense of adventure! 🙏

#### 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 six months. If your use case require deletes to take
  effect after more than a six 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.0` or `ghcr.io/syncthing/syncthing:2.0.0`
  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

#### What's Changed

##### Fixes

- fix(db): handle large numbers of blocks in update by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10025
- fix(syncthing): make directory flags global for all commands by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10028
- fix(sqlite): apply options by [@&#8203;pixelspark](https://github.com/pixelspark) in syncthing/syncthing#10049
- fix(db): version vector serialisation :( by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10050
- fix(model): loop-break regression while block copying in puller by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10069
- fix(model): close fd immediately in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10079
- fix(model): use same folder first in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10093
- fix(model): correct bufferpool handling; simplify by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10113
- fix(protocol): avoid deadlock with concurrent connection start and close by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10140
- fix(syncthing): avoid writing panic log to nil fd by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10154
- fix(fs): check for unsupported error on modern Windows (fixes [#&#8203;10164](syncthing/syncthing#10164)) by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10165
- fix(gui): don't show dial errors for paused devices (fixes [#&#8203;10166](syncthing/syncthing#10166)) by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10167
- fix: track invalid files in LocalFlags to fix global count by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10170
- fix(watchaggregator): properly handle sub-second watch durations (fixes [#&#8203;9927](syncthing/syncthing#9927)) by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10179
- fix(db): remove invalid member from FileMetadata by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10180
- fix(model): avoid flashing "Sync Waiting" unnecessarily by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10181
- fix(protocol): slightly loosen/correct ownership comparison criteria (fixes [#&#8203;9879](syncthing/syncthing#9879)) by [@&#8203;yparitcher](https://github.com/yparitcher) in syncthing/syncthing#10176
- fix(model): don't clobber local flags when receiving index by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10190
- fix(beacon, osutil, upnp): fix local discovery send and intf detection on Android by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10196
- fix(pmp, netutil): workaround native code denied to discover gateway ipv4 addr on Android 14+ by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10204
- fix: allow deleted files to win conflict resolution by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10207
- fix(gui): show revert buttons only when folder is idle (fixes [#&#8203;10191](syncthing/syncthing#10191)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10212
- fix(gui): fix identicon generation by [@&#8203;aionescu](https://github.com/aionescu) in syncthing/syncthing#10228
- fix(model): properly set folder state "syncing" when copying data by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10227
- fix(slogutil): quote values with parentheses in them by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10229
- fix(test): remove lib/logger from testmocks target by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10231
- fix: correct logging of our ID after startup & generate by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10234

##### Features

- feat: add `syncthing debug database-statistics` command by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10117
- feat(config): enable multiple connections by default by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10151
- feat(config): expose folder and device info as metrics (fixes [#&#8203;9519](syncthing/syncthing#9519)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10148
- feat: use [`Ed25519`](syncthing/syncthing@Ed25519) keys for sync connections by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10162
- feat(gui): add option to limit bandwidth in LAN to Settings (ref [#&#8203;10046](syncthing/syncthing#10046)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10182
- feat(connections, nat): add UDP portmapping/pinhole for QUIC (fixes [#&#8203;7403](syncthing/syncthing#7403)) by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10171
- feat: add debug commands for folder counts and files by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10206
- feat(ignore): add .stignore escaping on Windows by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10205
- feat: switch logging framework by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10220

##### Other

- chore: remove abandoned next-gen-gui experiment by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10004
- chore: remove weak hashing which does not pull its weight by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10005
- chore: switch database engine to sqlite (fixes [#&#8203;9954](syncthing/syncthing#9954)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#9965
- chore: harmonise command line flags by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10007
- chore(db): increase journal limit to 64MiB by [@&#8203;bt90](https://github.com/bt90) in syncthing/syncthing#10022
- chore: forget deleted files older than six months (fixes [#&#8203;6284](syncthing/syncthing#6284)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10023
- chore(db): use shorter read transactions and periodic checkpoint for smaller WAL by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10027
- chore: configurable delete retention interval by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10030
- chore(db): fix debug logging by [@&#8203;bt90](https://github.com/bt90) in syncthing/syncthing#10033
- chore(db): buffer pulled files for smaller WAL by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10036
- chore(db): use one SQLite database per folder by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10042
- chore(model): delay starting a pull while there are incoming index updates by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10041
- chore(syncthing): remove "default" folder concept by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10068
- chore(syncthing): ensure migrated database is closed before exiting by [@&#8203;xjtdy888](https://github.com/xjtdy888) in syncthing/syncthing#10076
- chore(db, model): simplify per hash DB lookup in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10080
- chore(model): refactor copier for more flatness by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10094
- build: upgrade setup-zig action by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10134
- build: properly propagate build tags to Debian build by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10144
- chore(protocol): don't start connection routines a second time by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10146
- chore(protocol): only allow enc. password changes on cluster config by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10145
- chore: various linter fixes by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10157
- build: streamline gathering of facts, checkouts by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10158
- build: build both Debian armel and armhf (though they are the same for us) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10159
- build: explicitly trigger build after pushing release tag by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10160
- chore(syncthing): ensure response body is closed in upgrade request by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10169
- refactor(syncthing): use named constant for SIGHUP by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10168
- chore(model): remove redundant removal of internal fields in indexsender by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10173
- chore: add migration for remote invalid local flag by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10174
- chore(config): increase max concurrent writes default by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10200
- chore(gui): added spacing between folder name and error message by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10201
- build: unset build ID in generated binaries by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10203
- chore(protocol): minor cleanup of ClusterConfig messages; remove DisableTempIndexes option by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10202
- refactor(beacon, osutil, upnp, netutil): only use anet on Android by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10211
- chore(gui): fix "Shut Down" spelling in Actions by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10213
- chore(gui): update fancytree from 2.38.0 to 2.38.5 (ref [#&#8203;10051](syncthing/syncthing#10051), ref [#&#8203;10155](syncthing/syncthing#10155)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10214
- chore(config): remove fallback STUN servers that are CNAMEs to stun.counterpath.com by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10219
- chore(scanner): reduce memory pressure by using pools inside hasher by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10222
- chore(fs): slightly reduce memory usage of IsParent by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10223
- refactor(scanner): use recommended pattern for slice pool by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10225
- chore(slogutil): ensure quoting of empty and confusing log values by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10236
- chore: remove GUI "debugging" toggle, debug HTTP metrics by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10235
- chore(gui): remove redundant "authenticated" conditions from Actions menu ([#&#8203;10235](syncthing/syncthing#10235)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10237

#### New Contributors

- [@&#8203;ardevd](https://github.com/ardevd) made their first contribution in syncthing/syncthing#10154
- [@&#8203;yparitcher](https://github.com/yparitcher) made their first contribution in syncthing/syncthing#10176
- [@&#8203;danog](https://github.com/danog) made their first contribution in syncthing/syncthing#10222

**Full Changelog**: syncthing/syncthing@v1.30.0...v2.0.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC4yIiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: https://git.devmem.ru/projects/infra/pulls/2048
Co-authored-by: Renovate Bot <renovate@devmem.ru>
Co-committed-by: Renovate Bot <renovate@devmem.ru>
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Aug 17, 2025
--------------------------------------------------------------------------------------------------------
batocera-emulationstation.mk b25849a3e6d48689bf134e55198f1ffb0b8365d3 # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------------------------
Merge pull request #1960 from fabricecaruso/win

[Win32/ZipFile] Can't open files with unicode chars on Windows,

------------------------------------------------------------------------------------------------
batocera-es-piboy.mk b25849a3e6d48689bf134e55198f1ffb0b8365d3 # Version: Commits on Aug 12, 2025
------------------------------------------------------------------------------------------------
Merge pull request #1960 from fabricecaruso/win

[Win32/ZipFile] Can't open files with unicode chars on Windows,

---------------------------------------------------------------------------------------
amiberry.mk 00dabfc12c78df16deb252e8b165210e95d1debf # Version: Commits on Aug 11, 2025
---------------------------------------------------------------------------------------
Respect active_capture_automatically on non-gui startup (#1701)

See BlitterStudio/amiberry#1700,

----------------------------------------------------------------------------------
clk.mk 246d34e072583e2289f9230bdbab7b6f50d96833 # Version: Commits on Aug 11, 2025
----------------------------------------------------------------------------------
Merge pull request #1532 from TomHarte/SimplerDescriptors

Boil down descriptor attributes.,

------------------------------------------------------------------------------------------
dolphin-emu.mk 72ef27c157e13075b656334657e46a3952ae2dff # Version: Commits on Aug 10, 2025
------------------------------------------------------------------------------------------
Merge pull request #13861 from Tilka/unused_lambda_captures

DolphinQt: fix two -Wunused-lambda-capture warnings,

------------------------------------------------------------------------------------------
duckstation.mk 327e9b5ce0a874931ee8242fc92f952dee0e225a # Version: Commits on Aug 13, 2025
------------------------------------------------------------------------------------------
XInputSource: Set initial state on connection

Instead of after polling.,

--------------------------------------------------------------------------------------
flycast.mk 33833cfd1ed2d94d907223442fdb8cdafd8d5d80 # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------
vonot: don't disable VM when acting as master

Issue #2037,

-------------------------------------------------------------------------------------
hatari.mk 9343bbb16b98f27dfd8e91f9175226414a66cac7 # Version: Commits on Aug 12, 2025
-------------------------------------------------------------------------------------
Add \Shifter Inside\ to compatibility docs

https://www.atari-forum.com/viewtopic.php?p=484235,

-------------------------------------------------------------------------------------
ikemen.mk 283c222a9c3f866b2578c739edc1d5816b83fb92 # Version: Commits on Aug 13, 2025
-------------------------------------------------------------------------------------
Merge pull request #2576 from NeatUnsou/develop

feat: Added the $N command,

--------------------------------------------------------------------------------------
melonds.mk f9e46fdc29f8e55aca6bc121c424890faee2e51d # Version: Commits on Aug 10, 2025
--------------------------------------------------------------------------------------
Windows: Quick and Dirty Build Fix (#2401)

An upper version limit should be set here again when there is a new GCC release that fixes the bug.,

--------------------------------------------------------------------------------------
openmsx.mk 174a3a623a660dd72ae3353fa20afc003668d0ce # Version: Commits on Aug 13, 2025
--------------------------------------------------------------------------------------
Tweak concatArray()

We had two overloaded versions of concatArray(). One that could

concatenate two arrays, and another that could do three. This patch

replaces those with a single version that can handle an arbitrary

number.,

----------------------------------------------------
pcsx2.mk v2.5.105 # Version: Commits on Aug 13, 2025
----------------------------------------------------
- [GS/HW: Adjust updating rt and ds to improve resizing.](PCSX2/pcsx2#13127)

,

-------------------------------------------------------------------------------------
ppsspp.mk 4f90b78cd4bb30c99079c79f52cf38d4125013e8 # Version: Commits on Aug 13, 2025
-------------------------------------------------------------------------------------
Merge pull request #20699 from DDinghoya/patch-37

Update ko_KR.ini,

---------------------------------------------------------------
ruffle.mk nightly-2025-08-13 # Version: Commits on Aug 13, 2025
---------------------------------------------------------------
## What's Changed

* build(deps-dev): bump the npm-minor group in /web with 17 updates by @dependabot[bot] in ruffle-rs/ruffle#21309

* build(deps-dev): bump @vitejs/plugin-react from 4.7.0 to 5.0.0 in /web by @dependabot[bot] in ruffle-rs/ruffle#21307

* build(deps-dev): bump eslint-plugin-jsdoc from 52.0.2 to 53.0.1 in /web by @dependabot[bot] in ruffle-rs/ruffle#21308

* build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in ruffle-rs/ruffle#21312

* build(deps): bump actions/download-artifact from 4 to 5 by @dependabot[bot] in ruffle-rs/ruffle#21311

* build(deps): bump the cargo-minor group with 2 updates by @dependabot[bot] in ruffle-rs/ruffle#21310

* pixelbender: Implement assembly by @kjarosh in ruffle-rs/ruffle#21297

**Full Changelog**: ruffle-rs/ruffle@nightly-2025-08-12...nightly-2025-08-13,

-----------------------------------------------------
ryujinx.mk 1.3.118 # Version: Commits on Aug 13, 2025
-----------------------------------------------------
Canary-1.3.118

--------------------------------------------------------------------------------------
shadps4.mk 1b621e4b1d6b473d3fdc9f02e96912e483a399d6 # Version: Commits on Aug 10, 2025
--------------------------------------------------------------------------------------
Add stubbed libSceNpProfileDialog library (#3411)

* Stubbed library

* Silence sceNpProfileDialogUpdateStatus

* the loathsome clang-formatter,

-------------------------------------------------------------------------------------
snes9x.mk b33f2afb33c61d675aaf0319bd3b8cc8d6924d49 # Version: Commits on Aug 12, 2025
-------------------------------------------------------------------------------------
Gtk: Fix cheat window locking up when newly loaded game has fewer cheats.,

---------------------------------------------------------------------------------------
thextech.mk 814a22268d75a56dab6f306d725d7e60d8a27dfc # Version: Commits on Aug 12, 2025
---------------------------------------------------------------------------------------
controls.cpp: allow deleting profile in use,

--------------------------------------------------------------------------------------
tsugaru.mk 9387017b1ce013e4f617288468d1fbe0921f1118 # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------
Changed default frequency to 40MHz.,

-------------------------------------------------
vice.mk r45735 # Version: Commits on Aug 11, 2025
-------------------------------------------------
allow uppercase characters with and without shift in swedish symbolic keympas, should fix problem(s) with caps-lock and Z

git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45735 379a1393-f5fb-40a0-bcee-ef074d9b53f7,

-------------------------------------------------------------------------------------------
xenia-native.mk 7d379952f19bded6931f821fad7df29166ec2cc3 # Version: Commits on Aug 12, 2025
-------------------------------------------------------------------------------------------
[3PP] RAPIDJSON_SSE42,

-----------------------------------------------------------------------------------
ymir.mk 3eeac5f9d949915311dde7570c4bdef5033bd346 # Version: Commits on Aug 13, 2025
-----------------------------------------------------------------------------------
feat(debug): Add oscilloscope views to slots

Highly inefficient and aliased,

--------------------------------------------------------------------------------------------------------
kodi-audiodecoder-openmpt.mk 3bc0a8727b7ff28ccbd48b95db599dcbce3cdc45 # Version: Commits on Aug 13, 2025
--------------------------------------------------------------------------------------------------------
Tag version 22.0.1,

--------------------------------------------------------------------------------------
aic8800.mk 553c43022bd87804ece08b13782c04386823c05a # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------
Merge pull request #50 from radxa-pkg/dependabot/github_actions/actions/checkout-5

chore(deps): bump actions/checkout from 4 to 5,

------------------------------------------------------------------------------------
box64.mk af057e309ad5a3eec07f549132d89b0c0a55e22e # Version: Commits on Aug 13, 2025
------------------------------------------------------------------------------------
[RV64_DYNAREC] Removed a dispensable line from dump (#2932),

---------------------------------------------------------------------------------------
corsixth.mk e48ea317cbbb2381ee1e68c5cfec67819f2e495e # Version: Commits on Aug 13, 2025
---------------------------------------------------------------------------------------
Remove repeat in World:nextEmergency() (#2970),

------------------------------------------------------------------------------------------
devilutionx.mk 1724f8a68f32f1b15f6b9fb48ac210639fdd3264 # Version: Commits on Aug 13, 2025
------------------------------------------------------------------------------------------
Fixed IsUniqueMonsterValid() so that it doesn't wrongly return false for Zhar the Mad and the Warlord of Blood (#8104),

-------------------------------------------------------------------------------------------
jazz2-native.mk 24dc22a2decd217944f719f3e563a62d8e67d095 # Version: Commits on Aug 10, 2025
-------------------------------------------------------------------------------------------
Backtrace initialized on current thread to fix 32-bit ARM Android (part 2),

----------------------------------------------------------------------------------------
openjkdf2.mk 684f264e0a9fa5611287df884866baa46580186f # Version: Commits on Aug 13, 2025
----------------------------------------------------------------------------------------
SITHAI_CRC32_INSTINCTS, more memory savings, DSi micro-opts,

----------------------------------------------------------------------------------------
openmohaa.mk f502f6a3c66e89289b40b0e93c89f3a8bcf22072 # Version: Commits on Aug 12, 2025
----------------------------------------------------------------------------------------
Don't include third-party client libraries when not building the client,

-----------------------------------------------------------------------------------
rott.mk 93cdf019f7c8682253fe6d3bee5554e37858c70c # Version: Commits on Aug 13, 2025
-----------------------------------------------------------------------------------
More code cleanup and removing some confusing misdirections (#109)

* remove more VR related code

* remove some old VGA page flipping code

* simplify some blit operations in modexlib.c

* properly clean up stuff in this function

* remove more superfluous planar VGA functions

* remove old debugging \whereami\ thing

* remove more old DOS remnants,

--------------------------------------------------------------------------------------
stalker.mk eafe96c3f6cb38a79e756e6dca43bbedb35a1e0f # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------
build(deps): bump Externals/sse2neon from `6abd463` to `8721e97` (#1926)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>,

----------------------------------------------------------------------------------
stk.mk a4ca4c7dc4bb26241aa5b946e37dada125b7d103 # Version: Commits on Aug 13, 2025
----------------------------------------------------------------------------------
Update the credits and the changelog,

----------------------------------------------------------------------------------------
supertux2.mk 76e936ba31ab266cadc584bddc7eb3e339e4d524 # Version: Commits on Aug 12, 2025
----------------------------------------------------------------------------------------
Rename bridgeocean-origina.deprecatedl.png to bridgeocean-original.deprecated.png

[ci skip],

------------------------------------------------------
syncthing.mk v2.0.0 # Version: Commits on Aug 12, 2025
------------------------------------------------------
## ⚠� First 2.0 release ⚠�

This is the first release of the new 2.0 series. Expect some rough edges and keep a sense of adventure! �

## 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 six months. If your use case require deletes to take

  effect after more than a six 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.0` or `ghcr.io/syncthing/syncthing:2.0.0`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(db): handle large numbers of blocks in update by @calmh in syncthing/syncthing#10025

* fix(syncthing): make directory flags global for all commands by @calmh in syncthing/syncthing#10028

* fix(sqlite): apply options by @pixelspark in syncthing/syncthing#10049

* fix(db): version vector serialisation :( by @calmh in syncthing/syncthing#10050

* fix(model): loop-break regression while block copying in puller by @imsodin in syncthing/syncthing#10069

* fix(model): close fd immediately in copier by @imsodin in syncthing/syncthing#10079

* fix(model): use same folder first in copier by @imsodin in syncthing/syncthing#10093

* fix(model): correct bufferpool handling; simplify by @calmh in syncthing/syncthing#10113

* fix(protocol): avoid deadlock with concurrent connection start and close by @calmh in syncthing/syncthing#10140

* fix(syncthing): avoid writing panic log to nil fd by @ardevd in syncthing/syncthing#10154

* fix(fs): check for unsupported error on modern Windows (fixes #10164) by @rasa in syncthing/syncthing#10165

* fix(gui): don't show dial errors for paused devices (fixes #10166) by @marbens-arch in syncthing/syncthing#10167

* fix: track invalid files in LocalFlags to fix global count by @imsodin in syncthing/syncthing#10170

* fix(watchaggregator): properly handle sub-second watch durations (fixes #9927) by @imsodin in syncthing/syncthing#10179

* fix(db): remove invalid member from FileMetadata by @imsodin in syncthing/syncthing#10180

* fix(model): avoid flashing \Sync Waiting\ unnecessarily by @calmh in syncthing/syncthing#10181

* fix(protocol): slightly loosen/correct ownership comparison criteria (fixes #9879) by @yparitcher in syncthing/syncthing#10176

* fix(model): don't clobber local flags when receiving index by @calmh in syncthing/syncthing#10190

* fix(beacon, osutil, upnp): fix local discovery send and intf detection on Android by @Catfriend1 in syncthing/syncthing#10196

* fix(pmp, netutil): workaround native code denied to discover gateway ipv4 addr on Android 14+ by @Catfriend1 in syncthing/syncthing#10204

* fix: allow deleted files to win conflict resolution by @calmh in syncthing/syncthing#10207

* fix(gui): show revert buttons only when folder is idle (fixes #10191) by @tomasz1986 in syncthing/syncthing#10212

* fix(gui): fix identicon generation by @aionescu in syncthing/syncthing#10228

* fix(model): properly set folder state \syncing\ when copying data by @calmh in syncthing/syncthing#10227

* fix(slogutil): quote values with parentheses in them by @calmh in syncthing/syncthing#10229

* fix(test): remove lib/logger from testmocks target by @rasa in syncthing/syncthing#10231

* fix: correct logging of our ID after startup & generate by @calmh in syncthing/syncthing#10234

### Features

* feat: add `syncthing debug database-statistics` command by @calmh in syncthing/syncthing#10117

* feat(config): enable multiple connections by default by @calmh in syncthing/syncthing#10151

* feat(config): expose folder and device info as metrics (fixes #9519) by @calmh in syncthing/syncthing#10148

* feat: use Ed25519 keys for sync connections by @calmh in syncthing/syncthing#10162

* feat(gui): add option to limit bandwidth in LAN to Settings (ref #10046) by @tomasz1986 in syncthing/syncthing#10182

* feat(connections, nat): add UDP portmapping/pinhole for QUIC (fixes #7403) by @marbens-arch in syncthing/syncthing#10171

* feat: add debug commands for folder counts and files by @calmh in syncthing/syncthing#10206

* feat(ignore): add .stignore escaping on Windows by @rasa in syncthing/syncthing#10205

* feat: switch logging framework by @calmh in syncthing/syncthing#10220

### Other

* chore: remove abandoned next-gen-gui experiment by @calmh in syncthing/syncthing#10004

* chore: remove weak hashing which does not pull its weight by @calmh in syncthing/syncthing#10005

* chore: switch database engine to sqlite (fixes #9954) by @calmh in syncthing/syncthing#9965

* chore: harmonise command line flags by @calmh in syncthing/syncthing#10007

* chore(db): increase journal limit to 64MiB by @bt90 in syncthing/syncthing#10022

* chore: forget deleted files older than six months (fixes #6284) by @calmh in syncthing/syncthing#10023

* chore(db): use shorter read transactions and periodic checkpoint for smaller WAL by @calmh in syncthing/syncthing#10027

* chore: configurable delete retention interval by @calmh in syncthing/syncthing#10030

* chore(db): fix debug logging by @bt90 in syncthing/syncthing#10033

* chore(db): buffer pulled files for smaller WAL by @calmh in syncthing/syncthing#10036

* chore(db): use one SQLite database per folder by @calmh in syncthing/syncthing#10042

* chore(model): delay starting a pull while there are incoming index updates by @calmh in syncthing/syncthing#10041

* chore(syncthing): remove \default\ folder concept by @calmh in syncthing/syncthing#10068

* chore(syncthing): ensure migrated database is closed before exiting by @xjtdy888 in syncthing/syncthing#10076

* chore(db, model): simplify per hash DB lookup in copier by @imsodin in syncthing/syncthing#10080

* chore(model): refactor copier for more flatness by @imsodin in syncthing/syncthing#10094

* build: upgrade setup-zig action by @calmh in syncthing/syncthing#10134

* build: properly propagate build tags to Debian build by @calmh in syncthing/syncthing#10144

* chore(protocol): don't start connection routines a second time by @imsodin in syncthing/syncthing#10146

* chore(protocol): only allow enc. password changes on cluster config by @imsodin in syncthing/syncthing#10145

* chore: various linter fixes by @calmh in syncthing/syncthing#10157

* build: streamline gathering of facts, checkouts by @calmh in syncthing/syncthing#10158

* build: build both Debian armel and armhf (though they are the same for us) by @calmh in syncthing/syncthing#10159

* build: explicitly trigger build after pushing release tag by @calmh in syncthing/syncthing#10160

* chore(syncthing): ensure response body is closed in upgrade request by @ardevd in syncthing/syncthing#10169

* refactor(syncthing): use named constant for SIGHUP by @ardevd in syncthing/syncthing#10168

* chore(model): remove redundant removal of internal fields in indexsender by @imsodin in syncthing/syncthing#10173

* chore: add migration for remote invalid local flag by @imsodin in syncthing/syncthing#10174

* chore(config): increase max concurrent writes default by @imsodin in syncthing/syncthing#10200

* chore(gui): added spacing between folder name and error message by @ardevd in syncthing/syncthing#10201

* build: unset build ID in generated binaries by @Catfriend1 in syncthing/syncthing#10203

* chore(protocol): minor cleanup of ClusterConfig messages; remove DisableTempIndexes option by @calmh in syncthing/syncthing#10202

* refactor(beacon, osutil, upnp, netutil): only use anet on Android by @marbens-arch in syncthing/syncthing#10211

* chore(gui): fix \Shut Down\ spelling in Actions by @tomasz1986 in syncthing/syncthing#10213

* chore(gui): update fancytree from 2.38.0 to 2.38.5 (ref #10051, ref #10155) by @tomasz1986 in syncthing/syncthing#10214

* chore(config): remove fallback STUN servers that are CNAMEs to stun.counterpath.com by @marbens-arch in syncthing/syncthing#10219

* chore(scanner): reduce memory pressure by using pools inside hasher by @danog in syncthing/syncthing#10222

* chore(fs): slightly reduce memory usage of IsParent by @danog in syncthing/syncthing#10223

* refactor(scanner): use recommended pattern for slice pool by @danog in syncthing/syncthing#10225

* chore(slogutil): ensure quoting of empty and confusing log values by @calmh in syncthing/syncthing#10236

* chore: remove GUI \debugging\ toggle, debug HTTP metrics by @calmh in syncthing/syncthing#10235

* chore(gui): remove redundant \authenticated\ conditions from Actions menu (#10235) by @tomasz1986 in syncthing/syncthing#10237

## New Contributors

* @ardevd made their first contribution in syncthing/syncthing#10154

* @yparitcher made their first contribution in syncthing/syncthing#10176

* @danog made their first contribution in syncthing/syncthing#10222

**Full Changelog**: syncthing/syncthing@v1.30.0...v2.0.0,

-----------------------------------------------------------------------------------------
winetricks.mk 9006a3663212c11cd2c491c47cd9d95ba38fe29c # Version: Commits on Aug 09, 2025
-----------------------------------------------------------------------------------------
refactor: avoid x-prefix in comparisons

- Unnecessary and is flagged by recent versions of shellcheck due to SC2268. See https://www.shellcheck.net/wiki/SC2268 for details.,

----------------------------------------------------------------------------------------
retroarch.mk f0370a1bfb468b457be53ff6013b6e12ab3962f9 # Version: Commits on Aug 12, 2025
----------------------------------------------------------------------------------------
ui/qt6: replace deprecated count() with size() (#18169)

* Bump required wayland-protocols

* ui/qt: replace deprecated count with size,

----------------------------------------------------------------------------------------
doomretro.mk f7175d898db48a593ca585a41b53ec21621d7137 # Version: Commits on Aug 13, 2025
----------------------------------------------------------------------------------------
Allow `nojump`, `nofreelook` to work per level,

-------------------------------------------------------------------------------------
gzdoom.mk f2745e4c8233e45e6de3a88ed2f05cdcccf88bb9 # Version: Commits on Aug 12, 2025
-------------------------------------------------------------------------------------
Fixed net event data being dropped in packet-server mode

Previously hosts would clear this data after executing which cannot be done as this will fundamentally break retransmissions when playing in packet-server mode.,

--------------------------------------------------------------------------------------
vkquake.mk 36ac9a3444b615a80089ec5a04b8c7cf89ac4f80 # Version: Commits on Aug 12, 2025
--------------------------------------------------------------------------------------
gl_screen.c: staticfications,

-----------------------------------------------------------------------------------------
sonicmania.mk 43373142bb103af2a2a4dac468ba6a8dcde7c341 # Version: Commits on Aug 11, 2025
-----------------------------------------------------------------------------------------
Fix missing Player_HandleGroundMovement() call

Fixes #316,

-----------------------------------------------------------------------------------
tr1x.mk 57312c88080c09a5df97a34b8d2488652011a932 # Version: Commits on Aug 11, 2025
-----------------------------------------------------------------------------------
tr2/gun: fix projectiles ending in overlapping rooms

Resolves #3824.,

-----------------------------------------------------------------------------------
tr2x.mk 57312c88080c09a5df97a34b8d2488652011a932 # Version: Commits on Aug 11, 2025
-----------------------------------------------------------------------------------
tr2/gun: fix projectiles ending in overlapping rooms

Resolves #3824.,

------------------------------------------------------------------------------------------
xash3d-fwgs.mk f0720026fc3cf877cd21304408d2ae95f8a0a387 # Version: Commits on Aug 13, 2025
------------------------------------------------------------------------------------------
engine: client: touch: don't reset state if clientonly didn't change,

------------------------------------------------------------------------------------------------------
libretro-doublecherrygb.mk a48e93ffc0efef1b2525c8dde25121fb289fb28c # Version: Commits on Aug 11, 2025
------------------------------------------------------------------------------------------------------
💚,

---------------------------------------------------------------------------------------------
libretro-fbneo.mk 525a07bd5abd52481a653dc790b987b8f50d0686 # Version: Commits on Aug 13, 2025
---------------------------------------------------------------------------------------------
(libretro) update files,

-----------------------------------------------------------------------------------------------
libretro-flycast.mk 33833cfd1ed2d94d907223442fdb8cdafd8d5d80 # Version: Commits on Aug 12, 2025
-----------------------------------------------------------------------------------------------
vonot: don't disable VM when acting as master

Issue #2037,

--------------------------------------------------------------------------------------------------
libretro-gearcoleco.mk 3b07a5c6981d0c139608a1de58cd2a80f13e22c4 # Version: Commits on Aug 10, 2025
--------------------------------------------------------------------------------------------------
Update readme,

-------------------------------------------------------------------------------------------------
libretro-geargrafx.mk f0e6b4e4dcab421a3ae8547514004117132120d9 # Version: Commits on Aug 10, 2025
-------------------------------------------------------------------------------------------------
Update readme,

--------------------------------------------------------------------------------------------------
libretro-gearsystem.mk 3671746ba070d3e2a4815f547f5290a3192c06f1 # Version: Commits on Aug 10, 2025
--------------------------------------------------------------------------------------------------
Update readme,

------------------------------------------------------------------------------------------------
libretro-mojozork.mk 5672d7e88acd7f583f01a559ad4a93e84b965ff2 # Version: Commits on Aug 13, 2025
------------------------------------------------------------------------------------------------
multizorkd: Print client IP when connecting.,

------------------------------------------------------------------------------------------
libretro-mu.mk b7f7715e756b146cc9b3f73aaab7ad9a372b3c61 # Version: Commits on Aug 11, 2025
------------------------------------------------------------------------------------------
When loading content when there is no pre-existing SRAM do not indicate that there is SRAM as otherwise the device will not be able to handle data that gets injected into the RAM directly accordingly, thanks to natanprog for the bisect!; Add a bouncing pixel indicator for when the LCD is off but the device is still on in sleep mode.,

------------------------------------------------------------------------------------------------
libretro-panda3ds.mk 6b35d3b6d66a4e0e1002d7dbddbd8de8ee44d21a # Version: Commits on Aug 12, 2025
------------------------------------------------------------------------------------------------
MacOS App Bundle fixes (#804)

* Mac bundle: Delete temporary icon files

* Mac bundle: Register app as game

* Mac bundle: Enable game mode support,

----------------------------------------------------------------------------------------------
libretro-ppsspp.mk 4f90b78cd4bb30c99079c79f52cf38d4125013e8 # Version: Commits on Aug 13, 2025
----------------------------------------------------------------------------------------------
Merge pull request #20699 from DDinghoya/patch-37

Update ko_KR.ini,

---------------------------------------------------------------------------------------------
libretro-vba-m.mk 0510656ca3a24b30762e12c637fa548d2da5bd01 # Version: Commits on Aug 13, 2025
---------------------------------------------------------------------------------------------
translations: transifex pull

Signed-off-by: Rafael Kitover <rkitover@gmail.com>,

--------------------------------------------------------------------------------------------
slang-shaders.mk 30d6497f045179342afd5199039b62ceab7ff0ab # Version: Commits on Aug 13, 2025
--------------------------------------------------------------------------------------------
Fix DX11 \unable to unroll loop\ compile error by changing for-loop to do/while with safety break (#726),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants