Skip to content

Commit

Permalink
Merge pull request #1229 from leather-wallet/dev
Browse files Browse the repository at this point in the history
Release desktop fixes
  • Loading branch information
kyranjamie authored Sep 20, 2023
2 parents 64a2a74 + ef6e47d commit f7001d2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 27 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/publish-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }})
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion app/components/title-bar/title-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const TitleBar: FC = () => {
{isNewerReleaseAvailable && latestRelease && (
<UpdateAvailableButton
windowState={winState}
onClick={() => openExternalLink('https://www.hiro.so/wallet/install-desktop')}
onClick={() => openExternalLink('https://leather.io/wallet/install-desktop')}
/>
)}
<Flex alignItems="center" ml="base">
Expand Down
2 changes: 1 addition & 1 deletion app/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const DEFAULT_STACKS_NODE_URL = whenNetwork<string>({

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';

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit f7001d2

Please sign in to comment.