Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yuying-y committed Apr 17, 2024
1 parent e4997a7 commit 42c9c94
Showing 1 changed file with 0 additions and 58 deletions.
58 changes: 0 additions & 58 deletions starboard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,67 +10,9 @@ version previous to it.

## Experimental Version

<<<<<<< HEAD
A description of all changes currently in the experimental Starboard version
can be found in the comments of the "Experimental Feature Defines" section of
[configuration.h](configuration.h).
=======
### Changed InstallCrashpadHandler API
This API doesn't support the option to start the crashpad handler at the
same time as the app launches anymore. Instead, the crashpad handler is
started when a crash happens. See details in starboard/doc/crash_handlers.md.

### Convert SbUiNavGetInterface Starboard API into an extension
The `SbUiNavGetInterface` API is deprecated and replaced with a Starboard
extension named `SbUiNavInterface`.

### Decrecated SbTime APIs and migrated to POSIX time APIs
The time APIs `SbTimeGetNow`, `SbTimeGetMonotonicNow`,
`SbTimeIsTimeThreadNowSupported` and `SbTimeGetMonotonicThreadNow` are
deprecated and the standard APIs `gettimeofday` from `<sys/time.h>` and
`clock_gettime` from `<time.h>` should be used instead.

### Deprecated SbStringFormat APIs and migrated to POSIX memory APIs
The StringFormat management APIs `SbStringFormat`, `SbStringFormatF`,
`SbStringFormatWide`, `SbStringFormatUnsifeF` are deprecated and the
standard APIs `vsnprintf`, `vfnprintf`, `vswprintf`, `snprintf`
from `<stdlib.h>` should be used instead.

### Deprecated SbMemoryMap APIs and migrated to POSIX mmap
The memory mapping APIs `SbMemoryMap`, `SbMemoryUnmap`, `SbMemoryProtect` and
`SbMemoryFlush` are deprecated and the standard APIs `mmap`, `munmap`,
`mprotect`, `msync` from `<sys/mman.h>` should be used instead.

### Deprecated SbMemory allocation APIs and migrated to POSIX memory APIs
The memory management APIs `SbMemoryAllocate`, `SbMemoryReallocate`,
`SbMemoryCalloc`, `SbMemoryAllocateAligned`, `SbMemoryDeallocate`,
`SbMemoryDeallocateAligned` `SbStringDuplicate` are deprecated and the
standard APIs `malloc`, `realloc`, `calloc`, `posix_memalign`, `free`
from `<stdlib.h>` and `strdup` from `<string.h>` should be used instead.

### Deprecated SbMediaGetBufferAlignment
The `SbMediaGetBufferAlignment` API was deprecated.

### Removed SbUser from SbStorageOpenRecord and SbStorageDeleteRecord
The `SbStorageOpenRecord` and `SbStorageDeleteRecord` APIs defined in
`starboard/storage.h` no longer have a parameter for `SbUser` as the APIs are
user-agnostic.

### Removed SbUserGetCurrent, SbUserGetSignedIn, SbUserGetProperty, SbUserGetPropertySize, and kSbUserMaxSignedIn
The APIs defined in `starboard/user.h` are no longer used and have been
deprecated.

### Removed SbByteSwapS16, SbByteSwapS32, SbByteSwapS64, SbByteSwapU16, SbByteSwapU32, and SbByteSwapU64
The APIs defined in `starboard/byte_swap.h` are no longer used and have been
deprecated.

### Removed SbImageDecode and SbImageIsDecodeSupported
The APIs defined in `starboard/image.h` are no longer used and have been
deprecated.

### Deprecated SbStringScan and SbStringScanF
The APIs defined in `starboard/string.h` are deprecated and the standard API `vsscanf` and `sscanf` are used instead.
>>>>>>> 1c7af636223 (Remove the option to start crash handler at launch (#2387))

## Version 15
### Removed version suffixes of SbPlayer functions and structures
Expand Down

0 comments on commit 42c9c94

Please sign in to comment.