From 295ebecbc770883fa39d0b138758b682c38459ef Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Fri, 30 Jan 2026 08:38:38 +0100 Subject: [PATCH] add metadata --- Makefile | 6 +++++- metadata.json | 8 ++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 metadata.json diff --git a/Makefile b/Makefile index 2bde4bf..d734980 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,12 @@ ci-export: ci-upload: @VERSION=$$(cat $(VERSION_FILE)); \ FILE="$(PROJECT)-$$VERSION.html.zip"; \ + META_SRC="metadata.json"; \ + META_DST="$(PROJECT)-$$VERSION.metadata.json"; \ + cp $$META_SRC $$META_DST; \ sshpass -p "$(DROPAREA_SSH_PASSWORD)" scp -o StrictHostKeyChecking=no -P $(DROPAREA_PORT) \ - $$FILE $(DROPAREA_USER)@$(DROPAREA_HOST):$(DROPAREA_TARGET_PATH)/ + $$FILE $$META_DST \ + $(DROPAREA_USER)@$(DROPAREA_HOST):$(DROPAREA_TARGET_PATH)/ ci-update: @VERSION=$$(cat $(VERSION_FILE)); \ diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..6a7fd07 --- /dev/null +++ b/metadata.json @@ -0,0 +1,8 @@ +{ + "name": "ebitenginedemo", + "title": "Ebitengine Demo", + "author": "Teletype Games", + "desc": "It's a simple demo program in Ebitengine", + "site": "https://git.teletype.hu/games/ebitenginedemo", + "license": "MIT License" +}