diff --git a/go.mod b/go.mod index 8a477f3..85b9191 100644 --- a/go.mod +++ b/go.mod @@ -26,7 +26,7 @@ require ( github.com/labstack/echo/v4 v4.11.4 github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/redis/go-redis/v9 v9.4.0 + github.com/redis/go-redis/v9 v9.5.0 github.com/resendlabs/resend-go v1.7.0 github.com/yuin/goldmark v1.7.0 github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc diff --git a/go.sum b/go.sum index bf07876..1cf8dc3 100644 --- a/go.sum +++ b/go.sum @@ -48,6 +48,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/redis/go-redis/v9 v9.4.0 h1:Yzoz33UZw9I/mFhx4MNrB6Fk+XHO1VukNcCa1+lwyKk= github.com/redis/go-redis/v9 v9.4.0/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M= +github.com/redis/go-redis/v9 v9.5.0 h1:Xe9TKMmZv939gwTBcvc0n1tzK5l2re0pKw/W/tN3amw= +github.com/redis/go-redis/v9 v9.5.0/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M= github.com/resendlabs/resend-go v1.7.0 h1:DycOqSXtw2q7aB+Nt9DDJUDtaYcrNPGn1t5RFposas0= github.com/resendlabs/resend-go v1.7.0/go.mod h1:yip1STH7Bqfm4fD0So5HgyNbt5taG5Cplc4xXxETyLI= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= diff --git a/stylegen/base.css b/stylegen/base.css index 9c54021..e21092c 100644 --- a/stylegen/base.css +++ b/stylegen/base.css @@ -3,12 +3,12 @@ @tailwind utilities; @layer base { - html, - container, - body { - height: 100%; - width: 100%; - overflow-y: auto; - position: fixed; - } + html, + container, + body { + height: 100%; + width: 100%; + overflow-y: auto; + position: fixed; + } } diff --git a/stylegen/gen.sh b/stylegen/gen.sh index 29c8d7b..fb9729a 100755 --- a/stylegen/gen.sh +++ b/stylegen/gen.sh @@ -23,6 +23,8 @@ esac # For macOS, we use a single binary called 'macos' if [ "$OS" = "macos" ]; then BINARY="./tw/macos" + # Set execute permissions on the binary + chmod +x $BINARY else case $ARCH in "x86_64") @@ -82,4 +84,4 @@ for PAGE in $PAGES; do done # Wait for all background processes to finish -wait \ No newline at end of file +wait diff --git a/stylegen/tw/linux-arm64 b/stylegen/tw/linux-arm64 old mode 100644 new mode 100755 index b1d466c..3eaf9a2 Binary files a/stylegen/tw/linux-arm64 and b/stylegen/tw/linux-arm64 differ diff --git a/stylegen/tw/linux-x64 b/stylegen/tw/linux-x64 old mode 100644 new mode 100755 index 576e7a8..107bad2 Binary files a/stylegen/tw/linux-x64 and b/stylegen/tw/linux-x64 differ diff --git a/stylegen/tw/macos b/stylegen/tw/macos index 260cf89..4504134 100755 Binary files a/stylegen/tw/macos and b/stylegen/tw/macos differ diff --git a/stylegen/tw/windows-arm64.exe b/stylegen/tw/windows-arm64.exe old mode 100644 new mode 100755 index d9edabd..94b7097 Binary files a/stylegen/tw/windows-arm64.exe and b/stylegen/tw/windows-arm64.exe differ diff --git a/stylegen/tw/windows-x64.exe b/stylegen/tw/windows-x64.exe old mode 100644 new mode 100755 index 5803ef0..4f086d0 Binary files a/stylegen/tw/windows-x64.exe and b/stylegen/tw/windows-x64.exe differ