diff --git a/.github/workflows/release-android.yaml b/.github/workflows/release-android.yaml index 9b8a883..386d4ab 100644 --- a/.github/workflows/release-android.yaml +++ b/.github/workflows/release-android.yaml @@ -45,12 +45,12 @@ jobs: uses: android-actions/setup-android@v3 - name: Grant execute permission for gradlew - run: chmod +x .apps/wallet/android/gradlew + run: chmod +x ./apps/wallet/android/gradlew - name: Update AndroidManifest.xml uses: damienaicheh/update-android-version-manifest-action@v1.0.0 with: - android-manifest-path: '.apps/wallet/android/app/src/main/AndroidManifest.xml' + android-manifest-path: './apps/wallet/android/app/src/main/AndroidManifest.xml' version-code: ${{ env.NUMBER_OF_COMMITS }} version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}' print-file: true @@ -58,7 +58,7 @@ jobs: - name: Update gradle version for Android uses: damienaicheh/update-android-version-gradle-action@v1.0.0 with: - build-gradle-path: '.apps/wallet/android/app/build.gradle' + build-gradle-path: './apps/wallet/android/app/build.gradle' version-code: ${{ env.NUMBER_OF_COMMITS }} version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}' print-file: true diff --git a/.github/workflows/release-desktop.yaml b/.github/workflows/release-desktop.yaml index bf5cdb7..fcef7ff 100644 --- a/.github/workflows/release-desktop.yaml +++ b/.github/workflows/release-desktop.yaml @@ -12,7 +12,7 @@ jobs: desktop: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-13, macos-latest] include: - os: ubuntu-latest platform: linux @@ -20,10 +20,10 @@ jobs: - os: windows-latest platform: Windows extension: exe - - os: macos-latest + - os: macos-13 platform: MacOS extension: dmg - - os: macos-14 + - os: macos-latest platform: MacOS extension: dmg runs-on: ${{ matrix.os }} @@ -61,12 +61,12 @@ jobs: run: rm apps/wallet/electron/assets/appIcon.icns - name: Build Electron - working-directory: .apps/wallet/electron + working-directory: ./apps/wallet/electron run: npm i; npm run electron:make - name: Upload Executable File to release uses: softprops/action-gh-release@v1 with: - files: electron/dist/minotaur*.${{ matrix.extension }} + files: ./apps/wallet/electron/dist/minotaur*.${{ matrix.extension }} env: GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} diff --git a/apps/wallet/CHANGELOG.md b/apps/wallet/CHANGELOG.md new file mode 100644 index 0000000..e0f1b34 --- /dev/null +++ b/apps/wallet/CHANGELOG.md @@ -0,0 +1,13 @@ +# minotaur-wallet + +## 2.2.0 + +### Minor Changes + +- Add Box Consolidation dApp + +### Patch Changes + +- Store Encrypted Mnemonic for each wallet. +- Explorer does not return the order of transactions correctly. We implemented a method to neutralize its effect. +- Fix Icon size diff --git a/apps/wallet/package.json b/apps/wallet/package.json index 7cfd044..5e4af1d 100644 --- a/apps/wallet/package.json +++ b/apps/wallet/package.json @@ -1,7 +1,7 @@ { "name": "minotaur-wallet", "private": true, - "version": "2.1.0", + "version": "2.2.0", "type": "module", "scripts": { "postinstall": "patch-package",