diff --git a/.clinerules/workspace_rules.md b/.clinerules/workspace_rules.md new file mode 100644 index 00000000..39d41d3e --- /dev/null +++ b/.clinerules/workspace_rules.md @@ -0,0 +1,8 @@ +This library is fully staticly linked. There should be no external dependencies. + +When building, use build.sh, not make. + +Use it as follows: build.sh -m "useful comment on changes being made" + +When making TUI menus, try to use the first leter of the command and the key to press to execute that command. For example, if the command is "Open file" try to use a keypress of "o" upper or lower case to signal to open the file. Use this instead of number keyed menus when possible. In the command, the letter should be underlined that signifies the command. + diff --git a/.gitignore b/.gitignore index d5ea82fc..1a3b5f0c 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ node_modules/ nostr-tools/ tiny-AES-c/ mbedtls/ +openssl*/ +curl*/ # Auto-generated version files nostr_core/version.h diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..3b664107 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.ignoreLimitWarning": true +} \ No newline at end of file diff --git a/VERSION b/VERSION index 04c5555c..f8bc4c62 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.17 +0.1.18 diff --git a/libnostr_core.a b/libnostr_core.a index 30aa23fe..898fe93f 100644 Binary files a/libnostr_core.a and b/libnostr_core.a differ diff --git a/tests/Makefile b/tests/Makefile index fc11c92d..4107fab4 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -105,6 +105,7 @@ sync_test: sync_test.c @echo "Building synchronous relay query test program (x86_64)..." $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) + # Build crypto test ARM64 executable $(ARM64_CRYPTO_TEST_EXEC): nostr_crypto_test.c @echo "Building crypto test suite (ARM64)..." diff --git a/tests/nip04_test b/tests/nip04_test deleted file mode 100755 index 1717ad60..00000000 Binary files a/tests/nip04_test and /dev/null differ diff --git a/tests/static_linking_only_test b/tests/static_linking_only_test deleted file mode 100755 index 26360cf7..00000000 Binary files a/tests/static_linking_only_test and /dev/null differ