Skip to content

Commit 4bb93c7

Browse files
committed
wut v1.2.0
1 parent a62043a commit 4bb93c7

2 files changed

Lines changed: 59 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1+
#### wut 1.2.0
2+
3+
###### Important changes
4+
5+
- wutstdc++: Decrease the stack size for gthread threads from 4 MiB to 128 KiB by @Maschell in https://github.com/devkitPro/wut/pull/269
6+
- coreinit: Change the function declaration of OSDynLoad_FindExport by @gblues in https://github.com/devkitPro/wut/pull/289
7+
8+
###### Important bug fixes
9+
10+
- wutdevoptab: Fix memory leak in open() by @Maschell in https://github.com/devkitPro/wut/pull/261
11+
- wutstdc++: Check if memory allocations were successful on thread creation by @Maschell in https://github.com/devkitPro/wut/pull/268
12+
- wutstdc++: Fix potential memory leak when thread creation fails by @Maschell in https://github.com/devkitPro/wut/pull/271
13+
- wutstdc++: Fix __wut_cond_timedwait by @GaryOderNichts in https://github.com/devkitPro/wut/pull/281
14+
- libwhb: Fix length check in ConsoleAddLine by @Maschell in https://github.com/devkitPro/wut/pull/284
15+
- wutcrt: Fix the trap instruction by @Maschell in https://github.com/devkitPro/wut/pull/302
16+
- whb/console: Add missing MEMRecordStateForFrmHeap by @GaryOderNichts in https://github.com/devkitPro/wut/pull/272
17+
18+
###### New features / improvements
19+
20+
- wutdevoptab: Check size of a read/write before checking the buffer alignment to reduce the number of read/write calls by @Maschell in https://github.com/devkitPro/wut/pull/273
21+
- Add IR support by @GaryOderNichts in https://github.com/devkitPro/wut/pull/288
22+
- Adjust C/C++ flags (disable exceptions/rtti) by @fincs
23+
24+
###### CafeOS related changes
25+
26+
coreinit:
27+
28+
- Add const to paths in coreinit/filesystem.h by @Xpl0itU in https://github.com/devkitPro/wut/pull/262
29+
- Add missing IM_* functions from coreinit by @GaryOderNichts in https://github.com/devkitPro/wut/pull/263
30+
- Add missing FSARequest/FSAResponse structs by @Maschell in https://github.com/devkitPro/wut/pull/270
31+
- Add missing coreinit/context.h include in coreinit/interrupts.h by @Maschell in https://github.com/devkitPro/wut/pull/279
32+
- Update FSStateChangeParams and add offset checks by @NessieHax in https://github.com/devkitPro/wut/pull/287
33+
- Add CopyData functions by @GaryOderNichts in https://github.com/devkitPro/wut/pull/283
34+
- Add OSLaunchTitle* functions by @GaryOderNichts in https://github.com/devkitPro/wut/pull/293
35+
- Add missing (internal) OSDynload structs by @Maschell in https://github.com/devkitPro/wut/pull/296
36+
- Fix missing import in rendevouz.h by @Maschell in https://github.com/devkitPro/wut/pull/297
37+
- Add missing functions for setting the context by @Maschell in https://github.com/devkitPro/wut/pull/298
38+
- Add OSGetCodegenVirtAddrRange by @Maschell in https://github.com/devkitPro/wut/pull/300
39+
- Add __OSConsoleWrite by @Maschell in https://github.com/devkitPro/wut/pull/299
40+
- Add some kernel related functions by @Maschell in https://github.com/devkitPro/wut/pull/295
41+
- Add missing fields and enum definitions to OSThread and OSContext by @Maschell in https://github.com/devkitPro/wut/pull/294
42+
- Add FSARequestChangeOwner by @Xpl0itU in https://github.com/devkitPro/wut/pull/291
43+
- Add more languages to LanguageType by @Xpl0itU in https://github.com/devkitPro/wut/pull/290
44+
- Add smd functions/structs by @GaryOderNichts in https://github.com/devkitPro/wut/pull/301
45+
46+
Other:
47+
48+
- nn_ccr: Add several functions by @GaryOderNichts in https://github.com/devkitPro/wut/pull/264
49+
- nsysccr: Add several functions by @GaryOderNichts in https://github.com/devkitPro/wut/pull/265
50+
- gx2: Add several definitions for Multi/Double DRC mode by @GaryOderNichts in https://github.com/devkitPro/wut/pull/266
51+
- nn::Result: Add missing modules by @GaryOderNichts in https://github.com/devkitPro/wut/pull/267
52+
- nn_nfp: Update functions, structs and add documentation by @GaryOderNichts in https://github.com/devkitPro/wut/pull/275
53+
- nn_nfp: Add declarations for amiibo settings by @GaryOderNichts in https://github.com/devkitPro/wut/pull/277
54+
- sysapp: Add argument functions and _SYSDirectlySwitchTo by @GaryOderNichts in https://github.com/devkitPro/wut/pull/276
55+
- sysapp: Add missing functions and cleanup structs by @GaryOderNichts in https://github.com/devkitPro/wut/pull/282
56+
- camera: Add Camera lib (camera.rpl) by @Fangal-Airbag in https://github.com/devkitPro/wut/pull/280
57+
158
#### wut 1.1.1
259
###### Important changes
360
- Changed license to zlib to avoiding licensing issues when linking against wut in non-GPL projects. (#257)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ TOPDIR ?= $(CURDIR)
33
include $(TOPDIR)/share/wut_rules
44

55
export WUT_MAJOR := 1
6-
export WUT_MINOR := 1
7-
export WUT_PATCH := 1
6+
export WUT_MINOR := 2
7+
export WUT_PATCH := 0
88

99
VERSION := $(WUT_MAJOR).$(WUT_MINOR).$(WUT_PATCH)
1010

0 commit comments

Comments
 (0)