diff options
author | Sven Göthel <[email protected]> | 2024-05-12 08:52:59 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-05-12 08:52:59 +0200 |
commit | b3eb40899c3e01e7773c1e45b40757138d9d80cf (patch) | |
tree | 39489e67d482f85da468270f72f9039649855d62 | |
parent | 3d1503ccb20f3c0f2b23940fc9395f3395c503c0 (diff) |
Bump for v1.3.0v1.3.0
-rw-r--r-- | CHANGES.md | 9 | ||||
-rw-r--r-- | README.md | 8 | ||||
-rwxr-xr-x | scripts/git-push-public.sh | 5 |
3 files changed, 21 insertions, 1 deletions
@@ -4,6 +4,15 @@ ## Changes +**1.3.0** +* WebAssembly / Emscripten fixes +* Better cmake build support with presets and clangd setup + - Works well with Eclipse CDT-LSP (and all client projects) +* Misc. math function fixes +* Misc. API renames, i.e. free enum types to be lower-case with `_t` ending. + - Classes *may* use CamelCase +* TODO: Code test coverage test + **1.2.0** * Last C++17 release, moving to C++20 as minimum requirement because - Moving metaprogramming to C++20 concepts and constrains @@ -9,7 +9,8 @@ This project's canonical repositories is hosted on [Gothel Software](https://jau This project provides general C++ collections, algorithms and utilities. `jaulib` was extracted from [Direct-BT](https://jausoft.com/cgit/direct_bt.git/about/) to enable general use and enforce better encapsulation, -now it is utilized in multiple projects ranging from cryptography, over-the-air (OTA) updates to computer graphics. +now it is utilized in multiple projects ranging from cryptography with [Cipherpack](https://jausoft.com/cgit/cipherpack.git/about/), +over-the-air (OTA) updates to computer graphics with [Gamp](https://jausoft.com/cgit/gamp.git/about/). It also provides a basic mechanisms to create a thin Java JNI binding as well as some Java JNI bindings for a subset of `jaulib`. @@ -49,6 +50,11 @@ Up to date API documentation can be found: ## Examples See *Direct-BT* [C++ API Doc](https://jausoft.com/projects/direct_bt/build/documentation/cpp/html/examples.html). +# Usage +* [Direct-BT](https://jausoft.com/cgit/direct_bt.git/about/) +* [Cipherpack](https://jausoft.com/cgit/cipherpack.git/about/) +* [Gamp](https://jausoft.com/cgit/gamp.git/about/) + <a name="cpp_min_req"></a> ## C++ Minimum Requirements diff --git a/scripts/git-push-public.sh b/scripts/git-push-public.sh index f23d906..319ab5c 100755 --- a/scripts/git-push-public.sh +++ b/scripts/git-push-public.sh @@ -1,8 +1,13 @@ #! /bin/sh +echo jordan git push jordan $* +echo jausoft git push jausoft $* +echo github git push github $* +echo gitlab git push gitlab $* +echo gitflic git push gitflic $* |