-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 0.4.0 Add ARR macro definitions, refactor old macros not to tak…
…e count arg (#63) * feat: add const default conf for KLS_BASIC reglist * feat: refactor core macros functions * fix: use README as docs index * chore: update docs * chore: update example in README * chore: update actions/checkout to v4 * feat: add kls_reglist_backend_string() * feat: add kls_reglist_backend_strings[] * feat: bump amboso to 2.0.3
- Loading branch information
Showing
24 changed files
with
400 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule amboso
updated
23 files
+2 −2 | Makefile | |
+73 −15 | amboso | |
+992 −53 | amboso_fn.sh | |
+0 −51 | bin/stego.lock | |
+1 −0 | bin/stego.lock | |
+3 −0 | bin/v2.0.1/.gitignore | |
+3 −0 | bin/v2.0.2/.gitignore | |
+3 −0 | bin/v2.0.3/.gitignore | |
+1 −0 | kazoj/bone/good_vers.k.stderr | |
+2 −0 | kazoj/bone/std_amboso_kern.k | |
+6 −0 | kazoj/bone/std_amboso_kern.k.stderr | |
+13 −0 | kazoj/bone/std_amboso_kern.k.stdout | |
+2 −0 | kazoj/bone/std_amboso_kern_1.k | |
+2 −0 | kazoj/bone/std_amboso_set.k | |
+0 −0 | kazoj/bone/std_amboso_set.k.stderr | |
+2 −0 | kazoj/bone/std_amboso_set.k.stdout | |
+49 −12 | kazoj/bone/try_amboso_sourcing.k | |
+1 −1 | kazoj/bone/try_amboso_sourcing.k.stderr | |
+2 −0 | kazoj/kulpo/bad_std_amboso_set.k | |
+0 −0 | kazoj/kulpo/bad_std_amboso_set.k.stderr | |
+2 −0 | kazoj/kulpo/bad_std_amboso_set.k.stdout | |
+1 −0 | kazoj/kulpo/bad_vers.k.stderr | |
+1 −0 | kazoj/kulpo/error_42.k.stderr | |
+60 −0 | stego.lock |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../stego.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir | ||
* | ||
!.gitignore | ||
!static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../static/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Define the package name and version | ||
AC_INIT([koliseo], [0.3.20], [[email protected]]) | ||
AC_INIT([koliseo], [0.4.0], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -89,7 +89,7 @@ AM_CONDITIONAL([LINUX_BUILD], [test "$build_linux" = "yes"]) | |
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="0.3.20" | ||
VERSION="0.4.0" | ||
fi | ||
|
||
# Output variables to the config.h header | ||
|
Oops, something went wrong.