Skip to content

Commit

Permalink
Merge pull request #6 from rarimo/fix/icon-url
Browse files Browse the repository at this point in the history
fix icon url
  • Loading branch information
napalmpapalam authored Jan 9, 2024
2 parents dba8ced + 7fc8ae3 commit 9d3915d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 1 addition & 2 deletions src/const/metadata.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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',
}

Expand Down

0 comments on commit 9d3915d

Please sign in to comment.