-
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.
- Bump koliseo to 0.3.18 - Bump amboso to 1.9.9 - Bump invil to 0.1.6 - Drop 1.3.3 from stego.lock
- Loading branch information
Showing
11 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
Submodule amboso
updated
9 files
+2 −2 | Makefile | |
+8 −2 | README.md | |
+3 −3 | amboso | |
+105 −73 | amboso_fn.sh | |
+2 −0 | bin/stego.lock | |
+3 −0 | bin/v1.9.8/.gitignore | |
+3 −0 | bin/v1.9.9/.gitignore | |
+1 −1 | kazoj/bone/try_amboso_sourcing | |
+1 −1 | kazoj/bone/try_amboso_sourcing.stderr |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir | ||
#we also keep specific dependencies... | ||
* | ||
!.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([helapordo], [1.3.3], [[email protected]]) | ||
AC_INIT([helapordo], [1.3.4], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -48,7 +48,7 @@ fi | |
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="1.3.3" | ||
VERSION="1.3.4" | ||
fi | ||
|
||
# Output variables to the config.h header | ||
|
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 invil
updated
10 files
+3 −0 | .gitignore | |
+68 −1 | CHANGELOG.md | |
+44 −5 | Cargo.lock | |
+3 −2 | Cargo.toml | |
+41 −12 | README.md | |
+1 −1 | kazoj/bone/vershw.k.stdout | |
+1,489 −0 | src/core.rs | |
+101 −2,140 | src/main.rs | |
+1,024 −0 | src/ops.rs | |
+232 −0 | src/utils.rs |
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 koliseo
updated
22 files
+7 −0 | .gitignore | |
+49 −6 | Makefile.am | |
+20 −6 | README.md | |
+1 −1 | amboso | |
+2 −0 | bin/stego.lock | |
+4 −0 | bin/v0.3.17/.gitignore | |
+1 −0 | bin/v0.3.17/static | |
+4 −0 | bin/v0.3.18/.gitignore | |
+1 −0 | bin/v0.3.18/static | |
+35 −10 | configure.ac | |
+1 −1 | docs/koliseo.doxyfile | |
+188 −0 | installer-sh | |
+1 −1 | invil | |
+22 −0 | src/koliseo.c | |
+3 −2 | src/koliseo.h | |
+2 −2 | tests/error/bad_size.k.stderr | |
+3 −3 | tests/error/many_regions.k.stderr | |
+3 −3 | tests/error/many_regions_named.k.stderr | |
+3 −3 | tests/error/many_regions_typed.k.stderr | |
+3 −3 | tests/error/many_temp_regions.k.stderr | |
+3 −3 | tests/error/many_temp_regions_named.k.stderr | |
+3 −3 | tests/error/many_temp_regions_typed.k.stderr |
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