Skip to content

Commit af2fdbb

Browse files
[toolchain] bump version to 12.0
1 parent d2e196b commit af2fdbb

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

changelog.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Change Log
22

3-
## [Unreleased](https://github.com/CE-Programming/toolchain/compare/v11.3...master)
3+
## [Unreleased](https://github.com/CE-Programming/toolchain/compare/v12.0...master)
44

5-
# [v11.3](https://github.com/CE-Programming/toolchain/releases/tag/v11.3) (2024-7-14)
5+
# [v12.0](https://github.com/CE-Programming/toolchain/releases/tag/v12.0) (2024-10-6)
66

77
* **New features**
8+
* Added optimized 48-bit runtime routines by @calc84maniac / @fundudeone
89
* Added strftime implementation by @mateoconlechuga
910
* Fixed off-by-one localtime day calculation (#469) by @mateoconlechuga
10-
* Added features to convimg by @mateoconlechuga
11+
* Added flip and rotate options for tilesets to convimg by @mateoconlechuga
1112
* Added support for different memory allocators by @mateoconlechuga
1213

1314
* **Bugfixes**
@@ -19,7 +20,12 @@
1920
* Fixed write crash in fileioc (#461) by @mateoconlechuga
2021
* Fixed floating point multiply bug by @calc84maniac
2122
* Fixed incorrect sign compare in __lcmpzero by @calc84maniac
22-
23+
* Fixed bug in fatdrvce that could corrupt the root directory when creating a file by @mateoconlechuga
24+
* Fixed ldexpf behaviour for NaN and Inf by @ZERICO2005
25+
* Fixed duplicated OS_TOK_STAT_F define by @adriweb
26+
* Fixed some repository submodule issues by @myclevorname
27+
* Fixed color quantization for unique colors in convimg by @mateoconlechuga
28+
2329
* **Improvements**:
2430
* Fixes/improvements for str[n]casecmp by @calc84maniac
2531
* Fixes/improvements for GetStringInput by @calc84maniac
@@ -28,6 +34,9 @@
2834
* Optimize 24-bit and 32-bit and/or/xor operations by @calc84maniac
2935
* Optimize malloc implementation by @calc84maniac
3036
* CI macos improvements by @adriweb
37+
* Greatly optimized the fatdrvce fat_SetFileBlockOffset function by @mateoconlechuga
38+
* Enforce fatdrvce to only support uppercase filenames by @mateoconlechuga
39+
* Added prefix and suffix options for convimg by @JonasVdS18
3140

3241
# [v11.2](https://github.com/CE-Programming/toolchain/releases/tag/v11.2) (2023-8-24)
3342

docs/build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/bash
22

33
# Default toolchain docs (should be latest release!)
4-
export default_version=v11.2
4+
export default_version=v12.0
55

66
# Maps target directory name to branch
77
declare -A versions_map=(
8+
[v12.0]=v12.0
89
[v11.2]=v11.2-docs
910
[v11.1]=v11.1-docs
1011
[v11.0]=v11.0-docs

0 commit comments

Comments
 (0)