Skip to content

Commit

Permalink
Release v1.0.0 (#213)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
AlexParshh and Kevingislason committed Dec 23, 2022
1 parent 3d4441e commit 4a0cef8
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 18 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Expand Up @@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]

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

### Changed

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

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

### Security

## [1.0.0] 2022-11-23

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

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

## [0.8.0] 2022-10-05

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "manta-signer"
edition = "2021"
version = "0.8.0"
version = "1.0.0"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
Expand Down
21 changes: 18 additions & 3 deletions README.md
Expand Up @@ -14,9 +14,19 @@
- `ui`: `manta-signer` Desktop UI
- `js`: external Javascript libraries that interact with `manta-signer`

## Restarting Your Account
## Deleting Your Account

To remove your private account data completely and set up a new account, you should remove these files:
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.

<p align="center">
<img width="355" src="./delete-account-dropdown.png">
</p>

<p align="center">
<img width="455" src="./delete-account-tab.png">
</p>

Alternatively, you can achieve the same result by removing these files:

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

### Testing
Can use non-UI testing server in ./examples
```cargo run --example test_server --features=unsafe-disable-cors --release```
```cargo run --example test_server --features=unsafe-disable-cors,disable-restart --release```

```--features=unsafe-disable-cors``` use only if you are using the local manta-front-end

```--features=disable-restart``` this feature is required if signer is being run in dev mode.

To run the signer in dev mode: ```cargo tauri dev --features=disable-restart``` or ```cargo tauri dev --features=disable-restart,unsafe-disable-cors```
Binary file added delete-account-dropdown.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added delete-account-tab.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mac-installation.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ui/README.md
Expand Up @@ -14,7 +14,7 @@ See the `tauri` docs for `npm` or `yarn` installation of the `tauri-cli`.

### Building

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:
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:

Note that ZKP generation will be very slow for dev builds

Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
@@ -1,6 +1,6 @@
{
"name": "manta-signer-ui",
"version": "0.8.0",
"version": "1.0.0",
"private": true,
"dependencies": {
"@tauri-apps/api": "1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion ui/public/about.html
Expand Up @@ -38,7 +38,7 @@
<main>
<img src="manta.png"/>
<h3>Manta Signer</h3>
<p>Version 0.8.0</p>
<p>Version 1.0.0</p>
<p>Copyright © 2019-2022 Manta Network</p>
<p>
<a href="https://github.com/manta-network/manta-signer" target="_blank" rel="noreferrer">manta-network/manta-signer</a>
Expand Down
2 changes: 1 addition & 1 deletion ui/src-tauri/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "manta-signer-ui"
edition = "2018"
version = "0.8.0"
version = "1.0.0"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion ui/src-tauri/tauri.conf.json
@@ -1,7 +1,7 @@
{
"package": {
"productName": "manta-signer",
"version": "0.8.0"
"version": "1.0.0"
},
"build": {
"distDir": "../build",
Expand Down
6 changes: 3 additions & 3 deletions www/src/App.tsx
Expand Up @@ -76,10 +76,10 @@ function App() {
className='px-6 py-4 text-white text-2xl bg-button rounded-full mt-12 cursor-pointer'
href={
os === 'Mac'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-macos-latest_0.8.0-103_x64.dmg'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.0.0/manta-signer-macos-latest_1.0.0-103_x64.dmg'
: os === 'Windows'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-windows-2019_0.8.0_x64.msi'
: 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-ubuntu-18.04_0.8.0_amd64.deb'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.0.0/manta-signer-windows-2019_1.0.0_x64.msi'
: 'https://github.com/Manta-Network/manta-signer/releases/download/v1.0.0/manta-signer-ubuntu-18.04_1.0.0_amd64.deb'
}
title={
os === 'Mac'
Expand Down

1 comment on commit 4a0cef8

@vercel
Copy link

@vercel vercel bot commented on 4a0cef8 Dec 23, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.