Cleanup: fix typos in release subdirectory

Fixed user facing bugs.
Found via `codespell -S "*.desktop,*.diff,./intern,./extern,./locale,./AUTHORS,./source/blender/blenlib/tests/BLI_string_utf8_test.cc,./doc/license/bf-members.txt" -L accessort,abd,aci,alo,ans,ba,bording,childrens,clen,constructin,datas,dependees,domin,eary,ege,eiter,elemt,eles,enew,espace,finded,fiter,fpt,groupd,hist,implementating,indext,ine,infront,inout,inouts,inpt,ist,lene,listenter,lod,maks,masia,mata,mis,mke,nam,nd,ned,opose,ot,outlow,parm,parms,passt,pinter,pixelx,poin,pres,ptd,re-usable,re-use,re-used,re-uses,re-using,ridiculus,schem,soler,strack,suh,te,tesselate,tham,ue,vai,varius,wew`

Pull Request: https://projects.blender.org/blender/blender/pulls/145825
This commit is contained in:
luz paz
2025-09-06 08:02:10 +02:00
committed by Aaron Carlisle
parent e2b24f0f38
commit a50ea6d578
3 changed files with 5 additions and 5 deletions

View File

@@ -709,7 +709,7 @@ They work together as a stack.
| [Inter](https://rsms.me/inter/) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)` | | [Inter](https://rsms.me/inter/) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright 2020 The Inter Project Authors (https://github.com/rsms/inter)` |
| [Noto Fonts](https://fonts.google.com/noto) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright 2018 The Noto Project Authors (github.com/googlei18n/noto-fonts)`| | [Noto Fonts](https://fonts.google.com/noto) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright 2018 The Noto Project Authors (github.com/googlei18n/noto-fonts)`|
| [Last Resort](https://github.com/unicode-org/last-resort-font) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright © 1998-2024 Unicode, Inc. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the United States and other countries.` | | [Last Resort](https://github.com/unicode-org/last-resort-font) | [SIL Open Font License 1.1](https://spdx.org/licenses/OFL-1.1.html) | `Copyright © 1998-2024 Unicode, Inc. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the United States and other countries.` |
| [DejaVu Sans Mono](https://github.com/dejavu-fonts/dejavu-fonts) | [Arev Fonts License](http://tavmjong.free.fr/FONTS/ArevCopyright.txt) + [Bistream Vera Font License](https://spdx.org/licenses/Bitstream-Vera.html) | `2003 Bitstream, Inc. (Bitstream font glyphs). 2006 Tavmjong Bah (Arev font glyphs). DejaVu changes are in public domain` | | [DejaVu Sans Mono](https://github.com/dejavu-fonts/dejavu-fonts) | [Arev Fonts License](http://tavmjong.free.fr/FONTS/ArevCopyright.txt) + [Bitstream Vera Font License](https://spdx.org/licenses/Bitstream-Vera.html) | `2003 Bitstream, Inc. (Bitstream font glyphs). 2006 Tavmjong Bah (Arev font glyphs). DejaVu changes are in public domain` |
<details> <details>
<summary>Arev Fonts License</summary> <summary>Arev Fonts License</summary>
@@ -763,7 +763,7 @@ from Tavmjong Bah. For further information, contact: tavmjong @ free
. fr. . fr.
</details> </details>
<details> <details>
<summary>Bistream Vera Font License</summary> <summary>Bitstream Vera Font License</summary>
Bitstream Vera Fonts Copyright Bitstream Vera Fonts Copyright
------------------------------ ------------------------------

View File

@@ -21,7 +21,7 @@
"url": "https://spdx.org/licenses/Apache-2.0.html" "url": "https://spdx.org/licenses/Apache-2.0.html"
}, },
"SPDX:Bitstream-Vera": { "SPDX:Bitstream-Vera": {
"name": "Bistream Vera Font License", "name": "Bitstream Vera Font License",
"url": "https://spdx.org/licenses/Bitstream-Vera.html" "url": "https://spdx.org/licenses/Bitstream-Vera.html"
}, },
"SPDX:BSL-1.0": { "SPDX:BSL-1.0": {

View File

@@ -50,7 +50,7 @@ issue: https://projects.blender.org/blender/blender/issues/137983
### How the script works ### How the script works
- First the script gathers all commits that contain `Fix #NUMBER` that - First the script gathers all commits that contain `Fix #NUMBER` that
occured between the two versions of Blender you're interested in. occurred between the two versions of Blender you're interested in.
- This is done using: - This is done using:
`git --no-pager log PREVIOUS_VERSION..CURRENT_VERSION --oneline -i -P --grep "Fix.*#+\d+"` `git --no-pager log PREVIOUS_VERSION..CURRENT_VERSION --oneline -i -P --grep "Fix.*#+\d+"`
- The script then extracts all report numbers (`#NUMBER`) - The script then extracts all report numbers (`#NUMBER`)
@@ -1033,7 +1033,7 @@ def validate_arguments(args: argparse.Namespace) -> bool:
if len(args.backport_tasks) == 0: if len(args.backport_tasks) == 0:
print("WARNING: (Optional) -bpt/--backport-tasks is not defined.") print("WARNING: (Optional) -bpt/--backport-tasks is not defined.")
if not (args.silence or should_quit): if not (args.silence or should_quit):
yes_no = input("Do you want to proceeed without it? (y/n)") yes_no = input("Do you want to proceed without it? (y/n)")
if yes_no.lower() == "n": if yes_no.lower() == "n":
should_quit = True should_quit = True