Update CHANGELOG

This commit is contained in:
Héctor Ramón Jiménez 2025-12-03 19:50:18 +01:00
parent fc14f17d30
commit 7766eccc4a
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 4 additions and 2 deletions

View file

@ -117,6 +117,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `CornerPreference` window setting for Windows. [#3128](https://github.com/iced-rs/iced/pull/3128) - `CornerPreference` window setting for Windows. [#3128](https://github.com/iced-rs/iced/pull/3128)
- `move_to` method for `Editor` API. [#3125](https://github.com/iced-rs/iced/pull/3125) - `move_to` method for `Editor` API. [#3125](https://github.com/iced-rs/iced/pull/3125)
- `Background` and `padding_ratio` support for `toggler` styling. [#3129](https://github.com/iced-rs/iced/pull/3129) - `Background` and `padding_ratio` support for `toggler` styling. [#3129](https://github.com/iced-rs/iced/pull/3129)
- More syntaxes for `iced_highlighter`. [#2822](https://github.com/iced-rs/iced/pull/2822)
### Changed ### Changed
- Replace `Rc` with `Arc` for `markdown` caching. [#2599](https://github.com/iced-rs/iced/pull/2599) - Replace `Rc` with `Arc` for `markdown` caching. [#2599](https://github.com/iced-rs/iced/pull/2599)
@ -280,7 +281,6 @@ Many thanks to...
- @alex-ds13 - @alex-ds13
- @B0ney - @B0ney
- @bbb651 - @bbb651
- @EmmanuelDodoo
- @JL710 - @JL710
- @kenz-gelsoft - @kenz-gelsoft
- @mfreeborn - @mfreeborn
@ -289,7 +289,9 @@ Many thanks to...
- @13r0ck - @13r0ck
- @airstrike - @airstrike
- @bungoboingo - @bungoboingo
- @EmmanuelDodoo
- @karolisr - @karolisr
- @Redhawk18
- @Remmirad - @Remmirad
- @semiversus - @semiversus
- @Ultrasquid9 - @Ultrasquid9

View file

@ -170,7 +170,7 @@ impl Changelog {
target.push(item); target.push(item);
*self.contributions.entry(entry.author.clone()).or_default() += 1; let _ = self.contributions.entry(entry.author.clone()).or_default();
if entry.author != "hecrj" && !self.authors.contains(&entry.author) { if entry.author != "hecrj" && !self.authors.contains(&entry.author) {
self.authors.push(entry.author); self.authors.push(entry.author);