diff --git a/README.md b/README.md index 7172e76..898bb7c 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,11 @@ # PAX graphics An MIT graphics library for [Badge.team](https://badge.team/). -Version: v1.1.0-snapshot +Version: v1.1.0 # Documentation Documentation can be found [here](docs). -# Target v1.1.0 TODO list -- [x] Fix all remaining build warnings -- [x] More advanced text options -- [x] Triangulation that can handle simple inputs -- [x] Add `const` to all read-only accesses -- [x] Add special case to text functions for buffers with palette types -- [ ] Check for other buffer type inconsistencies -- [x] Leave this box unchecked - # Feature wishlist - GPU acceleration - Antialiasing diff --git a/src/pax_types.h b/src/pax_types.h index 2f0223f..2df96ec 100644 --- a/src/pax_types.h +++ b/src/pax_types.h @@ -51,11 +51,11 @@ extern "C" { #define PAX_RENDERER_ID_SWR 0x00 // A human-readable representation of the current version number. -#define PAX_VERSION_STR "1.1.0-snapshot" +#define PAX_VERSION_STR "1.1.0" // A numeric representation of the version, one decimal digit per version part (MAJOR.MINOR.PATCH). #define PAX_VERSION_NUMBER 110 // Whether this is a prerelease version of PAX. -#define PAX_VERSION_IS_SNAPSHOT true +#define PAX_VERSION_IS_SNAPSHOT false // The MAJOR part of the version (MAJOR.MINOR.PATCH). #define PAX_VERSION_MAJOR 1 // The MINOR part of the version (MAJOR.MINOR.PATCH).