diff --git a/api/index.css b/api/index.css index 315b0c2..3c0b747 100644 --- a/api/index.css +++ b/api/index.css @@ -305,6 +305,8 @@ h2 { border-radius: var(--border-radius); padding: 20px; margin-bottom: 20px; + margin-left: 5px; + margin-right:5px; } .input-group { diff --git a/increment_and_push.sh b/increment_and_push.sh index c4619f4..4e36f3e 100755 --- a/increment_and_push.sh +++ b/increment_and_push.sh @@ -122,7 +122,7 @@ increment_version() { print_status "New version: $NEW_VERSION" # Update version in src/main.h - update_version_in_header "$NEW_VERSION" "$MAJOR" "$NEW_MINOR" "$NEW_PATCH" + update_version_in_header "$NEW_VERSION" "$MAJOR" "${NEW_MINOR:-$MINOR}" "${NEW_PATCH:-$PATCH}" # Export for use in other functions export NEW_VERSION diff --git a/src/main.h b/src/main.h index 17341b3..e075e93 100644 --- a/src/main.h +++ b/src/main.h @@ -10,10 +10,10 @@ #define MAIN_H // Version information (auto-updated by build system) -#define VERSION "v0.7.29" +#define VERSION "v0.7.30" #define VERSION_MAJOR 0 -#define VERSION_MINOR -#define VERSION_PATCH 29 +#define VERSION_MINOR 7 +#define VERSION_PATCH 30 // Relay metadata (authoritative source for NIP-11 information) #define RELAY_NAME "C-Relay"