Skip to content

Releases: felikcat/W11Boost

C v1.1.1

22 Oct 03:51
Compare
Choose a tag to compare

1.1.1

  • Removed the installer for .appx and .appxbundle. I may revisit this using curl later on, as supporting Windows 10 versions older than 1803 is not intended and it is better than what I was using (wininet.lib).

1.1.0
Functionally no different from 1.0.

  • Swapped lots of size_t for int. Unsigned or size_t is for specific use cases only: bit manipulation, a larger value limit, or preventing overflow (you can now use <stdckdint.h> from C23 these days to keep on using signed ints).
  • Added file info to help anti-malware software whitelist W11Boost.
  • Switched compiler from MSVC to Clang (GNU command-line).
  • Switched from C++ to C.
  • Switched build system from MSBuild (Visual Studio GUI) to CMake.
  • Other changes I forgot to write down.