diff --git a/CHANGELOG.md b/CHANGELOG.md index de63f1c..f74d630 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [1.0.2] - 2024-01-09 +### Fixed +- Action metadata icon url ## [1.0.1] - 2023-12-11 ### Changed @@ -28,7 +31,8 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic - Initiated project -[Unreleased]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/1.0.1...HEAD +[Unreleased]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/1.0.2...HEAD +[1.0.2]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/0.1.0...1.0.0 [0.1.0]: https://github.com/rarimo/collabland-rarimo-poh-action/releases/tag/0.1.0 diff --git a/docker-compose.yml b/docker-compose.yml index c79381d..130a10a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.7" services: rarimo-poh: - image: rarimo-poh:latest + image: ghcr.io/rarimo/collabland-rarimo-poh-action:devnet-62e81efd9488c8eb70b6c4b7da6b9cdecf644902 restart: unless-stopped entrypoint: sh -c "node_modules/.bin/next start" ports: diff --git a/package.json b/package.json index 208e494..1dee57d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "collabland-rarimo-poh-action", "description": "Implementation of the Collab.Land action /verify command for the Discord server which allows members to verify their humanity using the Rarimo Proof of Humanity case.", - "version": "1.0.1", + "version": "1.0.2", "private": true, "license": "MIT", "author": "Zero Block Global Foundation", diff --git a/src/const/metadata.ts b/src/const/metadata.ts index 0f13339..45709a5 100644 --- a/src/const/metadata.ts +++ b/src/const/metadata.ts @@ -1,6 +1,5 @@ import { ApplicationCommandType, DiscordActionMetadata, InteractionType } from '@collabland/discord' import { MiniAppManifest } from '@collabland/models' -import { join } from 'path' import PackageJson from '@/../package.json' import { config } from '@/config' @@ -9,7 +8,7 @@ const keywords = ['verification', 'rarimo', 'proof-of-humanity'] const appIcon = { label: 'Rarimo Proof of Humanity Action', - src: join(config.appUrl, '/logo.png'), + src: new URL('/logo.png', config.appUrl).toString(), sizes: '186x186', }