Skip to content

Commit c05d3f9

Browse files
Merge pull request #7471 from iotaledger/main
chore: merge `main` into `develop`
2 parents f814004 + 29c231e commit c05d3f9

File tree

228 files changed

+167544
-933
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+167544
-933
lines changed

.github/workflows/build-and-release-desktop.yml

+35-35
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
name: Build and Release Desktop
22

3+
env:
4+
NETWORK: IOTA
5+
NETWORK_CODE: iota
6+
37
on:
48
push:
59
tags:
6-
- desktop-*
10+
- desktop-iota-*
711
workflow_dispatch:
812
inputs:
913
debugElectronBuilder:
@@ -35,7 +39,7 @@ jobs:
3539
- id: set_outputs
3640
name: Set outputs for version, release name, and stage
3741
run: |
38-
VERSION=${GITHUB_REF#refs/*/desktop-}
42+
VERSION=${GITHUB_REF#refs/*/desktop-iota-}
3943
RELEASE_NAME=$(echo $VERSION | perl -0777 -pe 's/^([0-9]\d*\.[0-9]\d*\.[0-9]\d*)(?:-([a-z]*)-(\d*))?$/$1 \u$2 $3/')
4044
STAGE=$(echo $VERSION | perl -0777 -pe 's/^([0-9]\d*\.[0-9]\d*\.[0-9]\d*)(?:-([a-z]*)-([0-9]\d*(\.[0-9]\d*)*))?$/$2/')
4145
@@ -167,24 +171,24 @@ jobs:
167171
if: matrix.os == 'ubuntu-20.04'
168172

169173
- name: Sign AppImage (Linux)
170-
run: echo $GPG_PASSPHRASE | gpg --pinentry-mode loopback --batch --passphrase-fd 0 --armor --detach-sign --default-key [email protected] firefly-desktop*.AppImage
174+
run: echo $GPG_PASSPHRASE | gpg --pinentry-mode loopback --batch --passphrase-fd 0 --armor --detach-sign --default-key [email protected] firefly-*.AppImage
171175
working-directory: packages/desktop/out
172176
env:
173177
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
174178
if: matrix.os == 'ubuntu-20.04'
175179

176180
- name: Compute checksums (Linux)
177-
run: for i in `ls | grep 'firefly-desktop*'` ; do sha256sum $i | awk {'print $1'} > $i.sha256 ; done
181+
run: for i in `ls | grep 'firefly-*'` ; do sha256sum $i | awk {'print $1'} > $i.sha256 ; done
178182
working-directory: packages/desktop/out
179183
if: matrix.os == 'ubuntu-20.04'
180184

181185
- name: Compute checksums (macOS)
182-
run: for i in `ls | grep 'firefly-desktop*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done
186+
run: for i in `ls | grep 'firefly-*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done
183187
working-directory: packages/desktop/out
184188
if: matrix.os == 'macos-11'
185189

186190
- name: Compute checksums (Windows)
187-
run: Get-ChildItem "." -Filter firefly-desktop* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') }
191+
run: Get-ChildItem "." -Filter firefly-* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') }
188192
working-directory: packages/desktop/out
189193
if: matrix.os == 'windows-2019'
190194

@@ -193,8 +197,8 @@ jobs:
193197
with:
194198
name: firefly-desktop-${{ matrix.os }}
195199
path: |
196-
packages/desktop/out/firefly-desktop*
197-
packages/desktop/out/shimmer*
200+
packages/desktop/out/firefly-*
201+
packages/desktop/out/latest*
198202
199203
release:
200204
runs-on: ubuntu-latest
@@ -232,20 +236,20 @@ jobs:
232236
- name: Preparing release body
233237
run: |
234238
sed -i 's/\r$//' ../../assets/*.sha256 && sed -i '/^$/d' ../../assets/*.sha256 && sed -i -e 's/\(.*\)/\L\1/' ../../assets/*.sha256
235-
WIN_SHA256=$(cat ../../assets/firefly-desktop-${{ env.VERSION }}.exe.sha256)
236-
LIN_SHA256=$(cat ../../assets/firefly-desktop-${{ env.VERSION }}.AppImage.sha256)
237-
MAC_SHA256=$(cat ../../assets/firefly-desktop-${{ env.VERSION }}.dmg.sha256)
239+
WIN_SHA256=$(cat ../../assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.exe.sha256)
240+
LIN_SHA256=$(cat ../../assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage.sha256)
241+
MAC_SHA256=$(cat ../../assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.dmg.sha256)
238242
echo $WIN_SHA256 $LIN_SHA256 $MAC_SHA256
239243
touch CHANGELOG.md
240244
echo '### Changelog' >> CHANGELOG.md
241245
echo '------' >> CHANGELOG.md
242246
echo '### File Hashes' >> CHANGELOG.md
243-
echo '[How to verify the authenticity of your Firefly Desktop download](https://wiki.iota.org/shimmer/introduction/how_tos/verify_download/#verify-your-firefly-desktop-download)' >> CHANGELOG.md
247+
echo '[How to verify the authenticity of your Firefly ${{ env.NETWORK }} Desktop download](https://wiki.iota.org/shimmer/introduction/how_tos/verify_download/#verify-your-firefly-desktop-download)' >> CHANGELOG.md
244248
echo '| File | Platform | SHA256 Hash |' >> CHANGELOG.md
245249
echo '| --- | --- | --- |' >> CHANGELOG.md
246-
echo '| firefly-desktop-${{ env.VERSION }}.exe | Windows |' $WIN_SHA256 '|' >> CHANGELOG.md
247-
echo '| firefly-desktop-${{ env.VERSION }}.AppImage | Linux |' $LIN_SHA256 '|' >> CHANGELOG.md
248-
echo '| firefly-desktop-${{ env.VERSION }}.dmg | MacOS | ' $MAC_SHA256 '|' >> CHANGELOG.md
250+
echo '| firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.exe | Windows |' $WIN_SHA256 '|' >> CHANGELOG.md
251+
echo '| firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage | Linux |' $LIN_SHA256 '|' >> CHANGELOG.md
252+
echo '| firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.dmg | MacOS | ' $MAC_SHA256 '|' >> CHANGELOG.md
249253
cat CHANGELOG.md
250254
working-directory: packages/desktop
251255

@@ -256,7 +260,7 @@ jobs:
256260
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
257261
with:
258262
tag_name: ${{ github.ref }}
259-
release_name: Firefly Desktop ${{ env.RELEASE_NAME }}
263+
release_name: Firefly ${{ env.NETWORK }} Desktop ${{ env.RELEASE_NAME }}
260264
body_path: packages/desktop/CHANGELOG.md
261265
draft: true
262266
prerelease: true
@@ -267,8 +271,8 @@ jobs:
267271
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
268272
with:
269273
upload_url: ${{ steps.create_release.outputs.upload_url }}
270-
asset_path: assets/firefly-desktop-${{ env.VERSION }}.dmg
271-
asset_name: firefly-desktop-${{ env.VERSION }}.dmg
274+
asset_path: assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.dmg
275+
asset_name: firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.dmg
272276
asset_content_type: application/octet-stream
273277

274278
- name: Upload Windows binary asset
@@ -277,8 +281,8 @@ jobs:
277281
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
278282
with:
279283
upload_url: ${{ steps.create_release.outputs.upload_url }}
280-
asset_path: assets/firefly-desktop-${{ env.VERSION }}.exe
281-
asset_name: firefly-desktop-${{ env.VERSION }}.exe
284+
asset_path: assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.exe
285+
asset_name: firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.exe
282286
asset_content_type: application/octet-stream
283287

284288
- name: Upload Linux binary asset
@@ -287,8 +291,8 @@ jobs:
287291
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
288292
with:
289293
upload_url: ${{ steps.create_release.outputs.upload_url }}
290-
asset_path: assets/firefly-desktop-${{ env.VERSION }}.AppImage
291-
asset_name: firefly-desktop-${{ env.VERSION }}.AppImage
294+
asset_path: assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage
295+
asset_name: firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage
292296
asset_content_type: application/octet-stream
293297

294298
- name: Upload Linux code signature asset
@@ -297,25 +301,21 @@ jobs:
297301
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
298302
with:
299303
upload_url: ${{ steps.create_release.outputs.upload_url }}
300-
asset_path: assets/firefly-desktop-${{ env.VERSION }}.AppImage.asc
301-
asset_name: firefly-desktop-${{ env.VERSION }}.AppImage.asc
304+
asset_path: assets/firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage.asc
305+
asset_name: firefly-${{ env.NETWORK_CODE }}-desktop-${{ env.VERSION }}.AppImage.asc
302306
asset_content_type: application/pgp-signature
303307

304-
- name: Listing artifacts
305-
run: ls -al assets
306-
307308
- name: Upload to S3
308309
run: |
309-
aws s3 cp assets/ s3://iotaledger-files/4a1ddea1-10c1-4f1d-83f0-e14903931a46/releases/ --recursive --include "*" --exclude "*.sha256" --exclude "*.blockmap" --exclude "*.asc" --acl public-read
310-
aws s3 cp assets/ s3://iotaledger-files/firefly/releases/ --recursive --include "*" --exclude "*.sha256" --exclude "*.blockmap" --exclude "*.asc" --acl public-read
310+
aws s3 cp assets/ s3://firefly-private/firefly/releases/ --recursive --include "*" --exclude "*.sha256" --exclude "*.blockmap" --exclude "*.asc" --acl public-read
311311
env:
312312
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
313313
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
314314
AWS_DEFAULT_REGION: eu-central-1
315315

316-
- name: Invalidate CloudFront cache for auto-update files
317-
run: aws cloudfront create-invalidation --distribution-id E32G4HRED4PO65 --paths "/shimmer*"
318-
env:
319-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
320-
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
321-
AWS_DEFAULT_REGION: eu-central-1
316+
#- name: Invalidate CloudFront cache for auto-update files
317+
#run: aws cloudfront create-invalidation --distribution-id E32G4HRED4PO65 --paths "/latest*"
318+
#env:
319+
#AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
320+
#AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
321+
#AWS_DEFAULT_REGION: eu-central-1

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<a href=""><img src="header.png"></a>
44
</h1>
55

6-
<h2 align="center">Firefly Shimmer</h2>
6+
<h2 align="center">Firefly</h2>
77

88
<p align="center">
99
<a href="https://discord.iota.org/" style="text-decoration:none;"><img src="https://img.shields.io/badge/Discord-9cf.svg?logo=discord" alt="Discord"></a>
@@ -27,13 +27,13 @@
2727

2828
## About
2929

30-
Firefly Shimmer is the official wallet for managing your tokens and assets on the Shimmer network.
30+
Firefly is the official wallet for managing your tokens and assets on the Shimmer network.
3131

3232
## Installation
3333

34-
There are a few options to install Firefly Shimmer:
34+
There are a few options to install Firefly:
3535

36-
- Download from [official Firefly Shimmer website](https://firefly.iota.org)
36+
- Download from [official Firefly website](https://firefly.iota.org)
3737
- Download from the latest [GitHub release](https://github.com/iotaledger/firefly/releases/tag/desktop-2.0.0)
3838
- Build from source code (see our handbook guide for ["Environment Setup"](https://iotaledger.github.io/firefly/guides/environment-setup/))
3939

docs/guides/developer-tips.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,24 @@ Welcome to the Firefly developer tips! Here you will find all sorts of helpful i
1010

1111
### Backend
1212

13-
It is likely that you **will NOT** have to re-compile the backend (NodeJS *or* Capacitor) bindings, unless you have either changed or modified specific "bridge" functions (like [this one](https://github.com/iotaledger/firefly/blob/develop/packages/shared/lib/typings/account.ts#L66)).
13+
It is likely that you **will NOT** have to re-compile the backend (NodeJS _or_ Capacitor) bindings, unless you have either changed or modified specific "bridge" functions (like [this one](https://github.com/iotaledger/firefly/blob/develop/packages/shared/lib/typings/account.ts#L66)).
1414

1515
### Desktop
1616

1717
#### Svelte Components
1818

1919
If simply making changes to Svelte component files, it is not usually required to fully refresh the development instance (it is typically refreshed for you).
2020

21-
In some cases, the changes can cause unrecoverable errors unless you refresh via the developer console. This usually happens when changing imports or adding a new Svelte file.
21+
In some cases, the changes can cause unrecoverable errors unless you refresh via the developer console. This usually happens when changing imports or adding a new Svelte file.
2222

2323
#### TypeScript Library
2424

2525
If making changes within the TypeScript library files, it is usually necessary to refresh the development instance via the console so load the changes.
2626

2727
If editing files that are imported within `packages/desktop`, then it will be necessary to fully rebuild and restart the development instance. In particular, the following files require rebuilding:
28-
- `shared/lib/core/shell/*.ts`
29-
- `shared/lib/core/validation/*.ts`
28+
29+
- `shared/lib/core/shell/*.ts`
30+
- `shared/lib/core/validation/*.ts`
3031

3132

3233
## Common Processes
@@ -35,29 +36,29 @@ If editing files that are imported within `packages/desktop`, then it will be ne
3536

3637
To add a new (SVG-based) icon for use in the application, simply create a new object entry [here](https://github.com/iotaledger/firefly/blob/develop/packages/shared/components/icon/icons.js#L1).
3738

38-
Most entries here simply include `width`, `height`, and `path` properties, however please be sure that whatever icon you are adding contains all of the necessary SVG data to be displayed correctly (e.g. `fillRule`s, `clipRule`s, `strokeWidth`).
39+
Most entries here simply include `width`, `height`, and `path` properties, however please be sure that whatever icon you are adding contains all of the necessary SVG data to be displayed correctly (e.g. `fillRule`s, `clipRule`s, `strokeWidth`).
3940

4041
If the icon is still not displaying properly, it is likely that it was either exported incorrectly or can be flattened in the design software **before** being exported.
4142

4243
### Adding a setting
4344

4445
There are a few steps to add a settings component to the Settings menu in Firefly:
4546

46-
- Add your component to the correct folder under `packages/shared/routes/dashboard/settings/views`
47-
- Add an `export` statement to the barrel import/export file in the directory of your new component
48-
- Add your component to the `settings` of the file with the same name as the settings (e.g. `Advance.svelte` for the advanced setting)
49-
- Add your route enum to the appropriate settings route in `packages/shared/lib/core/router/enums/routes.ts`
50-
- Add the correct `title` and additional texts to the `view` property in `packages/shared/locales/en.json` for the translations.
51-
- Add an appropriate icon to`packages/shared/lib/typings/icons.ts`
47+
- Add your component to the correct folder under `packages/shared/routes/dashboard/settings/views`
48+
- Add an `export` statement to the barrel import/export file in the directory of your new component
49+
- Add your component to the `settings` of the file with the same name as the settings (e.g. `Advance.svelte` for the advanced setting)
50+
- Add your route enum to the appropriate settings route in `packages/shared/lib/core/router/enums/routes.ts`
51+
- Add the correct `title` and additional texts to the `view` property in `packages/shared/locales/en.json` for the translations.
52+
- Add an appropriate icon to`packages/shared/lib/typings/icons.ts`
5253

5354
### Adding a Svelte page
5455

5556
There are a few steps besides just creating the component file before it can work in Firefly:
5657

57-
- Add an `export` statement to the barrel import/export file in the directory of your new component
58-
- Add the correct route value to the appropriate `enum` in `packages/shared/lib/typings/routes.ts`
59-
- Add the correct HTML (`Route` nested with `<Page>` element) in `packages/desktop/App.svelte`
60-
- Change logic as needed in `routerNext` in `packages/shared/lib/router.ts`
58+
- Add an `export` statement to the barrel import/export file in the directory of your new component
59+
- Add the correct route value to the appropriate `enum` in `packages/shared/lib/typings/routes.ts`
60+
- Add the correct HTML (`Route` nested with `<Page>` element) in `packages/desktop/App.svelte`
61+
- Change logic as needed in `routerNext` in `packages/shared/lib/router.ts`
6162

6263
### Exposing an API endpoint
6364

@@ -74,11 +75,11 @@ See its [README](https://github.com/iotaledger/wallet.rs#dependencies) for the r
7475

7576
Log files are often required to debug `wallet.rs` issues. They can be found in the following folders:
7677

77-
- Windows: `%APPDATA%\Roaming\Firefly\logs`
78-
- MacOS: `$HOME/Library/Application\ Support/Firefly/logs`
79-
- Linux: `~/.config/Firefly/logs`
78+
- Windows: `%APPDATA%\Roaming\Firefly\logs`
79+
- MacOS: `$HOME/Library/Application\ Support/Firefly/logs`
80+
- Linux: `~/.config/Firefly/logs`
8081

81-
For developer/alpha/beta builds you have to look for `Electron`/`'Firefly Shimmer - Alpha'`/`'Firefly Shimmer - Beta'` respectively.
82+
For developer/alpha/beta builds you have to look for `Electron`/`'Firefly - Alpha'`/`'Firefly - Beta'` respectively.
8283

8384
#### Desktop
8485

@@ -107,14 +108,14 @@ Wallet.initLogger({
107108

108109
in `desktop/electron/preload.js` after `const Wallet = binding`. Debug logs will then be added to the `wallet.log` file in the same location where Firefly or the Electron / Capacitor development instance is installed.
109110

110-
## Resetting Firefly
111+
## Resetting Firefly
111112

112113
### Desktop
113114

114115
If you want to reset Firefly your profiles are stored in the following places on the different OS'es for the official release:
115116

116-
- Windows: `%APPDATA%\Roaming\Firefly\__storage__/`
117-
- MacOS: `$HOME/Library/Application\ Support/Firefly/__storage__/`
118-
- Linux: `~/.config/Firefly/__storage__/`
117+
- Windows: `%APPDATA%\Roaming\Firefly\__storage__/`
118+
- MacOS: `$HOME/Library/Application\ Support/Firefly/__storage__/`
119+
- Linux: `~/.config/Firefly/__storage__/`
119120

120-
For developer/alpha/beta builds you have to look for `Electron`/`'Firefly Shimmer - Alpha'`/`'Firefly Shimmer - Beta'` respectively.
121+
For developer/alpha/beta builds you have to look for `Electron`/`'Firefly - Alpha'`/`'Firefly - Beta'` respectively.

docs/guides/git/branches.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ icon: git-branch
44

55
# Branches
66

7-
Branch names __must__ follow a certain structure, which is `branch-prefix/branch-name`. The `branch-prefix` corresponds to one of the conventional commit types defined above and the branch name is a concise but informative name representing your changes, e.g. `feat/your-cool-feature` and `chore/new-doc`. PR titles are based off of the branch name, so for the examples just used they __should be__ "feat: Your cool feature" and "chore: New doc".
7+
Branch names **must** follow a certain structure, which is `branch-prefix/branch-name`. The `branch-prefix` corresponds to one of the conventional commit types defined above and the branch name is a concise but informative name representing your changes, e.g. `feat/your-cool-feature` and `chore/new-doc`. PR titles are based off of the branch name, so for the examples just used they **should be** "feat: Your cool feature" and "chore: New doc".
88

99
## Protected Branches
1010

1111
The Firefly team develops code and pushes PRs on certain protected branches. The following three branches are protected:
1212

13-
- `main`: contains the code for Firefly Desktop v1.
14-
- `develop`: contains the code for Firefly Shimmer Desktop
13+
- `main`: contains the code for Firefly Desktop v1.
14+
- `develop`: contains the code for Firefly Shimmer Desktop

0 commit comments

Comments
 (0)