-
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: 1.4.12 Drop s4c-gui, bump deps (#106)
### Changed - Drop s4c-gui submodule since it's now included in sprites4curses - Change anvil header inclusion to be off by default - Use int32_t for coins balance in SerFighter - Bump HELAPORDO_BINSAVEFILE_VERSION to 0.0.6 - Bump sprites4curses to 0.4.8 - Bump koliseo to 0.4.6 - Bump invil to 0.2.19 - Bump amboso to 2.0.9 - Bump s4c-scripts to 0.1.3 - Update gif in README by @AliShahabzadeh
- Loading branch information
Showing
41 changed files
with
66 additions
and
139 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,6 @@ | |
[submodule "s4c-scripts"] | ||
path = s4c-scripts | ||
url = [email protected]:jgabaut/s4c-scripts.git | ||
[submodule "s4c-gui"] | ||
path = s4c-gui | ||
url = [email protected]:jgabaut/s4c-gui.git | ||
[submodule "ringabuf"] | ||
path = ringabuf | ||
url = [email protected]:jgabaut/ringabuf.git |
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
15 files
+134 −0 | CHANGELOG.md | |
+2 −2 | Makefile | |
+2 −3 | README.md | |
+2 −2 | amboso | |
+1,295 −804 | amboso_fn.sh | |
+2 −0 | example-src/hello_world.c | |
+2 −2 | kazoj/bone/anvil_stego.k.stdout | |
+1 −0 | kazoj/bone/good_vers.k.stdout | |
+0 −1 | kazoj/bone/std_amboso_kern.k.stdout | |
+1 −1 | kazoj/bone/std_amboso_set.k.stdout | |
+1 −1 | kazoj/bone/try_amboso_sourcing.k | |
+1 −1 | kazoj/bone/try_amboso_sourcing.k.stderr | |
+1 −0 | kazoj/kulpo/bad_vers.k.stdout | |
+2 −2 | stego-examples/lock.stego | |
+4 −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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Define the package name and version | ||
AC_INIT([helapordo], [1.4.11], [[email protected]]) | ||
AC_INIT([helapordo], [1.4.12], [[email protected]]) | ||
|
||
# Verify automake version and enable foreign option | ||
AM_INIT_AUTOMAKE([foreign -Wall]) | ||
|
@@ -37,7 +37,7 @@ AC_ARG_ENABLE([raylib], | |
AC_ARG_ENABLE([anvil], | ||
[AS_HELP_STRING([--enable-anvil], [Enable anvil-backed build])], | ||
[enable_anvil=$enableval], | ||
[enable_anvil=yes]) | ||
[enable_anvil=no]) | ||
|
||
AC_ARG_ENABLE([emoji], | ||
[AS_HELP_STRING([--enable-emoji], [Enable emoji icons of equips])], | ||
|
@@ -64,7 +64,7 @@ case "${host_os}" in | |
if test "$enable_raylib" = "yes"; then | ||
echo "CONF Building with raylib" | ||
build_raylib=yes | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -fstack-protector -DWINDOWS_BUILD -DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -fstack-protector -DWINDOWS_BUILD -DS4C_HAS_ANIMATE -DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib -lraylib -lm -lgdi32 -lwinmm -static"]) | ||
AC_SUBST([CCOMP], ["/usr/bin/x86_64-w64-mingw32-gcc"]) | ||
AC_SUBST([OS], ["w64-mingw32"]) | ||
|
@@ -81,7 +81,7 @@ case "${host_os}" in | |
echo "CONF Building with ncurses" | ||
#build_raylib=no | ||
#build_curses=yes | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -fstack-protector -DWINDOWS_BUILD -DKOLISEO_HAS_CURSES -DNCURSES_NO_PADDING -DNCURSES_STATIC -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/usr/x86_64-w64-mingw32/include -fstack-protector -DWINDOWS_BUILD -DNCURSES_NO_PADDING -DNCURSES_STATIC -DS4C_HAS_ANIMATE -DS4C_HAS_GUI -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-L/usr/x86_64-w64-mingw32/lib -lpanelw -lmenuw -lncursesw -static"]) | ||
AC_SUBST([CCOMP], ["/usr/bin/x86_64-w64-mingw32-gcc"]) | ||
AC_SUBST([OS], ["w64-mingw32"]) | ||
|
@@ -104,7 +104,7 @@ case "${host_os}" in | |
echo "CONF Building with raylib" | ||
build_raylib=yes | ||
build_curses=no | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/opt/homebrew/opt/raylib/include -DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/opt/homebrew/opt/raylib/include -DS4C_HAS_ANIMATE -DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-L/opt/homebrew/opt/raylib/lib -lraylib"]) | ||
AC_SUBST([OS], ["darwin"]) | ||
AC_SUBST([TARGET], ["helapordo"]) | ||
|
@@ -120,7 +120,7 @@ case "${host_os}" in | |
echo "CONF Building with ncurses" | ||
#build_raylib=no | ||
#build_curses=yes | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/opt/homebrew/opt/ncurses/include -DKOLISEO_HAS_CURSES -DNCURSES_NO_PADDING -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-I/opt/homebrew/opt/ncurses/include -DNCURSES_NO_PADDING -DS4C_HAS_ANIMATE -DS4C_HAS_GUI -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-L/opt/homebrew/opt/ncurses/lib -lmenu -lpanel -lncurses"]) | ||
AC_SUBST([OS], ["darwin"]) | ||
AC_SUBST([TARGET], ["helapordo"]) | ||
|
@@ -142,7 +142,7 @@ case "${host_os}" in | |
echo "CONF Building with raylib" | ||
build_raylib=yes | ||
build_curses=no | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-DS4C_HAS_ANIMATE -DS4C_RAYLIB_EXTENSION -DS4C_RL_QUIETER"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-lraylib"]) | ||
AC_SUBST([OS], ["Linux"]) | ||
AC_SUBST([CCOMP], ["gcc"]) #Yes | ||
|
@@ -160,7 +160,7 @@ case "${host_os}" in | |
echo "CONF Building with ncurses" | ||
#build_raylib=no | ||
#build_curses=yes | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-DKOLISEO_HAS_CURSES -DNCURSES_NO_PADDING -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_CFLAGS], ["-DNCURSES_NO_PADDING -DS4C_HAS_ANIMATE -DS4C_HAS_GUI -DS4C_UNCHECKED"]) | ||
AC_SUBST([HELAPORDO_LDFLAGS], ["-lmenu -lpanel -lncurses"]) | ||
AC_SUBST([OS], ["Linux"]) | ||
AC_SUBST([CCOMP], ["gcc"]) #Yes | ||
|
@@ -193,7 +193,7 @@ AM_CONDITIONAL([USE_DEFAULT_BACKGROUND], [test "$enable_default_background" = "y | |
# Set a default version number if not specified externally | ||
AC_ARG_VAR([VERSION], [Version number]) | ||
if test -z "$VERSION"; then | ||
VERSION="1.4.11" | ||
VERSION="1.4.12" | ||
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
8 files
+45 −0 | CHANGELOG.md | |
+111 −25 | Cargo.lock | |
+8 −6 | Cargo.toml | |
+6 −1 | README.md | |
+91 −0 | src/anvil_custom.rs | |
+427 −151 | src/core.rs | |
+8 −1 | src/main.rs | |
+492 −272 | src/ops.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
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
12 files
+1 −5 | Makefile.am | |
+0 −14 | README.md | |
+1 −1 | amboso | |
+8 −30 | configure.ac | |
+1 −1 | docs/koliseo.doxyfile | |
+1 −1 | invil | |
+280 −490 | src/koliseo.c | |
+142 −122 | src/koliseo.h | |
+1 −30 | static/demo.c | |
+83 −0 | static/kls_banner.c | |
+30 −0 | static/kls_banner.h | |
+1 −0 | stego.lock |
Submodule s4c-gui
deleted from
50da8f
Submodule s4c-scripts
updated
3 files
+1 −1 | pyproject.toml | |
+3 −3 | s4c/core/palette.py | |
+2 −2 | s4c/s4c_cli.py |
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 sprites4curses
updated
16 files
+0 −0 | .github/CODEOWNERS | |
+0 −0 | .github/CODE_OF_CONDUCT.md | |
+23 −5 | .gitignore | |
+42 −11 | Makefile.am | |
+48 −20 | README.md | |
+40 −22 | configure.ac | |
+4 −3 | documentation/s4c.doxyfile | |
+27 −0 | s4c-animate/README.md | |
+13 −13 | s4c-animate/animate.c | |
+10 −14 | s4c-animate/animate.h | |
+8 −596 | s4c-demo/demo.c | |
+598 −0 | s4c-demo/demo_animate.c | |
+154 −0 | s4c-demo/demo_gui.c | |
+1 −1 | s4c-scripts | |
+1,932 −0 | src/s4c.c | |
+509 −0 | src/s4c.h |
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
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
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
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
Oops, something went wrong.