Skip to content

Commit 4a0cef8

Browse files
Release v1.0.0 (#213)
* readme update * readme update * update readme * fix readme image sizes * v0.8.0 -> v1.0.0 * changelog * changelog * update readme Co-authored-by: Kevin Gislason <33131270+Kevingislason@users.noreply.github.com>
1 parent 3d4441e commit 4a0cef8

File tree

13 files changed

+39
-18
lines changed

13 files changed

+39
-18
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
## [Unreleased]
77

88
### Added
9-
- [\#228](https://github.com/Manta-Network/manta-signer/pull/228) Adding support for new V3 protocol(AES) and bug fixes (UI).
10-
- [\#215](https://github.com/Manta-Network/manta-signer/pull/215) Added signer redesign UI, account deletion and recovery.
119

1210
### Changed
1311

@@ -16,11 +14,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1614
### Removed
1715

1816
### Fixed
19-
- [\#199](https://github.com/Manta-Network/manta-signer/pull/199) Fix unable to login to signer if close during state save
20-
- [\#204](https://github.com/Manta-Network/manta-signer/pull/204) Check for storage file before deleting it
2117

2218
### Security
2319

20+
## [1.0.0] 2022-11-23
21+
22+
### Added
23+
- [\#228](https://github.com/Manta-Network/manta-signer/pull/228) Adding support for new V3 protocol(AES) and bug fixes (UI).
24+
- [\#215](https://github.com/Manta-Network/manta-signer/pull/215) Added signer redesign UI, account deletion and recovery.
25+
26+
### Fixed
27+
- [\#199](https://github.com/Manta-Network/manta-signer/pull/199) Fix unable to login to signer if close during state save
28+
- [\#204](https://github.com/Manta-Network/manta-signer/pull/204) Check for storage file before deleting it
29+
2430
## [0.8.0] 2022-10-05
2531

2632
### Added

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "manta-signer"
33
edition = "2021"
4-
version = "0.8.0"
4+
version = "1.0.0"
55
authors = ["Manta Network <contact@manta.network>"]
66
readme = "README.md"
77
license-file = "LICENSE"

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,19 @@
1414
- `ui`: `manta-signer` Desktop UI
1515
- `js`: external Javascript libraries that interact with `manta-signer`
1616

17-
## Restarting Your Account
17+
## Deleting Your Account
1818

19-
To remove your private account data completely and set up a new account, you should remove these files:
19+
To delete your private account data completely and set up a new account, open manta-signer on the task bar, select 'Delete Account' and confirm that you would like to delete your account in the pop-up window.
20+
21+
<p align="center">
22+
<img width="355" src="./delete-account-dropdown.png">
23+
</p>
24+
25+
<p align="center">
26+
<img width="455" src="./delete-account-tab.png">
27+
</p>
28+
29+
Alternatively, you can achieve the same result by removing these files:
2030

2131
- macOS: `~/Library/Application Support/manta-signer/`
2232
- Linux: `~/.config/manta-signer/`
@@ -36,5 +46,10 @@ Executables can be found in ./target/release or ./ui/src-tauri/target/release.
3646

3747
### Testing
3848
Can use non-UI testing server in ./examples
39-
```cargo run --example test_server --features=unsafe-disable-cors --release```
49+
```cargo run --example test_server --features=unsafe-disable-cors,disable-restart --release```
50+
4051
```--features=unsafe-disable-cors``` use only if you are using the local manta-front-end
52+
53+
```--features=disable-restart``` this feature is required if signer is being run in dev mode.
54+
55+
To run the signer in dev mode: ```cargo tauri dev --features=disable-restart``` or ```cargo tauri dev --features=disable-restart,unsafe-disable-cors```

delete-account-dropdown.png

55.6 KB
Loading

delete-account-tab.png

78.7 KB
Loading

mac-installation.png

-80.2 KB
Loading

ui/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the `tauri` docs for `npm` or `yarn` installation of the `tauri-cli`.
1414

1515
### Building
1616

17-
To build the project go to the `src-tauri` directory and run any `cargo` commands like `cargo build`, `cargo clippy`, or `cargo doc`. To run the executable, first run `yarn start`, then run `cargo tauri dev` (installed above using `cargo`) in a separate terminal window:
17+
To build the project go to the `src-tauri` directory and run any `cargo` commands like `cargo build`, `cargo clippy`, or `cargo doc`. To run the executable, first run `yarn start`, then run `cargo tauri dev --features=disable-restart` (installed above using `cargo`) in a separate terminal window:
1818

1919
Note that ZKP generation will be very slow for dev builds
2020

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "manta-signer-ui",
3-
"version": "0.8.0",
3+
"version": "1.0.0",
44
"private": true,
55
"dependencies": {
66
"@tauri-apps/api": "1.0.1",

ui/public/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<main>
3939
<img src="manta.png"/>
4040
<h3>Manta Signer</h3>
41-
<p>Version 0.8.0</p>
41+
<p>Version 1.0.0</p>
4242
<p>Copyright © 2019-2022 Manta Network</p>
4343
<p>
4444
<a href="https://github.com/manta-network/manta-signer" target="_blank" rel="noreferrer">manta-network/manta-signer</a>

0 commit comments

Comments
 (0)