diff --git a/ueforth/Makefile b/ueforth/Makefile index 998a129..0f46ce7 100644 --- a/ueforth/Makefile +++ b/ueforth/Makefile @@ -288,6 +288,15 @@ $(DEPLOY)/app.yaml: $(ARDUINO)/ESP32forth.zip \ cp -r $(WINDOWS)/uEf64.exe $(DEPLOY)/downloads/uEf64.exe cp -r $(RES)/eforth.ico $(DEPLOY)/downloads/favicon.ico cp site/.gcloudignore $(DEPLOY) + cat site/ESPForth.html | \ + sed "s/{{VERSION}}/${VERSION}/g" | \ + sed "s/{{REVISION}}/${REVISION}/g" > $(DEPLOY)/ESP32Forth.html + cat site/windows.html | \ + sed "s/{{VERSION}}/${VERSION}/g" | \ + sed "s/{{REVISION}}/${REVISION}/g" > $(DEPLOY)/windows.html + cat site/linux.html | \ + sed "s/{{VERSION}}/${VERSION}/g" | \ + sed "s/{{REVISION}}/${REVISION}/g" > $(DEPLOY)/linux.html deploy: clean all cd out/deploy && gcloud app deploy -q --project esp32forth *.yaml diff --git a/ueforth/site/ESP32forth.html b/ueforth/site/ESP32forth.html index bd23b53..18137ff 100644 --- a/ueforth/site/ESP32forth.html +++ b/ueforth/site/ESP32forth.html @@ -21,6 +21,7 @@
ESP32forth.zip - Single .ino file ready for installation + - Version: {{VERSION}} Rev: {{REVISION}}
diff --git a/ueforth/site/linux.html b/ueforth/site/linux.html index eb1f18c..72810bd 100644 --- a/ueforth/site/linux.html +++ b/ueforth/site/linux.html @@ -19,7 +19,8 @@
ueforth.linux - - Linux 64-bit Executable µEforth + - Linux 64-bit Executable µEforth + - Version: {{VERSION}} Rev: {{REVISION}}
diff --git a/ueforth/site/windows.html b/ueforth/site/windows.html index e668275..0fc5acb 100644 --- a/ueforth/site/windows.html +++ b/ueforth/site/windows.html @@ -20,11 +20,13 @@
uEf32.exe - Window 32-bit EXE µEforth + - Version: {{VERSION}} Rev: {{REVISION}}
uEf64.exe - Window 64-bit EXE µEforth + - Version: {{VERSION}} Rev: {{REVISION}}