diff --git a/Containerfile.build b/Containerfile.build
index 7747181..f9fab6a 100644
--- a/Containerfile.build
+++ b/Containerfile.build
@@ -35,15 +35,12 @@ RUN echo "Building Linux binary..." && \
# Build Windows binary
RUN echo "Building Windows binary..." && \
- echo 'IDI_ICON1 ICON "./app/gopherbook/static/images/favicon/favicon.ico"' > gopherbook.rc && \
- x86_64-w64-mingw32-windres gopherbook.rc -o ./app/gopherbook/gopherbook.syso && \
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc go build \
-a \
-ldflags="-s -w" \
-trimpath \
-o bin/gopherbook-windows.exe ./app/gopherbook && \
- upx --best --ultra-brute bin/gopherbook-windows.exe && \
- rm ./app/gopherbook/gopherbook.syso gopherbook.rc
+ upx --best --ultra-brute bin/gopherbook-windows.exe
# Verify binaries were created
RUN ls -lh bin/ && \
diff --git a/Makefile b/Makefile
index 797294d..11a28fe 100644
--- a/Makefile
+++ b/Makefile
@@ -2,4 +2,4 @@ build:
go build -o bin/main ./app/gopherbook
clean:
- rm -rf watch etc library cache binaries releases
+ rm -rf watch etc library cache
diff --git a/README.md b/README.md
index 007a519..2766fdc 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,11 @@
-
-
-
-
-
-
-
-
-## Self-Hosted Comic Library & CBZ/CBT Reader
+# Gopherbook – Self-Hosted Comic Library & CBZ/CBT Reader
Gopherbook is a lightweight, single-binary, self-hosted web comic reader and library manager written in Go.
It is designed for people who want full control over their digital comic collection (CBZ/CBT files), including support for password-protected/encrypted archives, per-user libraries, tagging, automatic organization, and a clean modern reader.
-