diff --git a/.github/workflows/publish-version.yml b/.github/workflows/publish-version.yml index 4ac2260de..843ec1edc 100644 --- a/.github/workflows/publish-version.yml +++ b/.github/workflows/publish-version.yml @@ -206,27 +206,3 @@ jobs: asset_path: release/leather-wallet-${{ matrix.stx_network }}-${{ matrix.os }}/leather-wallet.${{ matrix.stx_network }}.${{ matrix.ext }} asset_name: leather-wallet.${{ matrix.stx_network }}.v${{ needs.create-release.outputs.new_version }}.${{ matrix.ext }} asset_content_type: application/octet-stream - - announce-release: - runs-on: ubuntu-20.04 - env: - DISCORD_WEBHOOK: ${{ secrets.DISCORD_UX_NOTIFS_WEBHOOK }} - - needs: - - create-release - - upload-release-assets - - steps: - - name: Discord Stable Release Notification - if: contains(needs.create-release.outputs.new_version, 'dev') == false - uses: Ilshidur/action-discord@master - with: - args: | - 🔔 New Leather released: [Download `v${{ needs.create-release.outputs.new_version }}` here](https://github.com/${{ github.repository }}/releases/tag/v${{ needs.create-release.outputs.new_version }}) - - - name: Discord Dev Release Notification - if: contains(needs.create-release.outputs.new_version, 'dev') == true - uses: Ilshidur/action-discord@master - with: - args: | - New Leather Preview released: [Download `v${{ needs.create-release.outputs.new_version }}` here](https://github.com/${{ github.repository }}/releases/tag/v${{ needs.create-release.outputs.new_version }}) diff --git a/CHANGELOG.md b/CHANGELOG.md index a989ca6ec..2e560ea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [4.14.1-dev.1](https://github.com/leather-wallet/desktop/compare/v4.14.0...v4.14.1-dev.1) (2023-09-19) + + +### Bug Fixes + +* fix typo in leather-wallet, closes [#1221](https://github.com/leather-wallet/desktop/issues/1221) ([66b8efa](https://github.com/leather-wallet/desktop/commit/66b8efa222ac2edbba00b2fd755d3b828c217356)) +* update link to leather-wallet desktop download, closes [#1220](https://github.com/leather-wallet/desktop/issues/1220) ([4cd64ac](https://github.com/leather-wallet/desktop/commit/4cd64ac9a8149a3648e2b80dfebfb92156a3379b)) + # [4.14.0](https://github.com/leather-wallet/desktop/compare/v4.13.0...v4.14.0) (2023-09-01) diff --git a/app/components/title-bar/title-bar.tsx b/app/components/title-bar/title-bar.tsx index 2e0996f82..275f36e0f 100644 --- a/app/components/title-bar/title-bar.tsx +++ b/app/components/title-bar/title-bar.tsx @@ -53,7 +53,7 @@ export const TitleBar: FC = () => { {isNewerReleaseAvailable && latestRelease && ( openExternalLink('https://www.hiro.so/wallet/install-desktop')} + onClick={() => openExternalLink('https://leather.io/wallet/install-desktop')} /> )} diff --git a/app/constants/index.ts b/app/constants/index.ts index 4fd7c2448..d20f4ca3c 100644 --- a/app/constants/index.ts +++ b/app/constants/index.ts @@ -32,7 +32,7 @@ export const DEFAULT_STACKS_NODE_URL = whenNetwork({ export const EXPLORER_URL = 'https://explorer.hiro.so'; -export const GITHUB_ORG = 'leather-walet'; +export const GITHUB_ORG = 'leather-wallet'; export const GITHUB_REPO = 'desktop'; diff --git a/package.json b/package.json index a58f24f0a..42a66724f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stacks-wallet", - "version": "4.14.0", + "version": "4.14.1-dev.1", "description": "Leather 2.0 — Stacking", "prettier": "@stacks/prettier-config", "homepage": "https://hiro.so/wallet",