Merge branch 'staging' into stop-wallet-listener-on-sync

This commit is contained in:
julian-CStack 2023-05-09 11:34:29 -06:00 committed by GitHub
commit 9f7783fb41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 103 additions and 1 deletions

64
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View file

@ -0,0 +1,64 @@
name: 🐞 Bug Report
description: File a new bug report
title: 'Bug: <title>'
labels: [Bug]
body:
- type: markdown
attributes:
value: ':stop_sign: _For support questions, please visit the [Discord](https://discord.gg/mRPZuXx3At), [Telegram](https://t.me/stackwallet) or [Reddit](https://www.reddit.com/r/stackwallet/) instead._'
- type: checkboxes
attributes:
label: 'Is there an existing issue for this?'
description: 'Please [search :mag: the issues](https://github.com/cypherstack/stack_wallet/issues) to check if this bug has already been reported.'
options:
- label: 'I have searched the existing issues'
required: true
- type: textarea
attributes:
label: 'Current Behavior'
description: 'Describe the problem you are experiencing. **Please do not paste your logs here.** Screenshots are welcome.'
validations:
required: true
- type: textarea
attributes:
label: 'Expected Behavior'
description: 'Describe what you expect to happen instead.'
validations:
required: true
- type: textarea
attributes:
label: 'Reproduce Steps'
description: |
Please provide a the _smallest, complete steps_ that Stack Wallet's maintainers can run to reproduce the issue ([read more about what this entails](https://stackoverflow.com/help/minimal-reproducible-example)). Failing this, any sort of reproduction steps are better than nothing!
validations:
required: true
- type: textarea
attributes:
label: 'Environment'
description: 'Please provide the following information about your environment.'
value: |
- Operating system and version:
- Device platform and version:
- Real device or emulator/simulator:
validations:
required: true
- type: input
attributes:
label: 'Logs'
description: |
Create a [Gist](https://gist.github.com) which contains your _full_ Stack Wallet logs and link it here.
:warning: _Remember to redact or remove any sensitive information!_
placeholder: 'https://gist.github.com/...'
validations:
required: false
- type: textarea
attributes:
label: 'Further Information'
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
validations:
required: false
- type: markdown
attributes:
value: ':stop_sign: _For support questions, please visit the [Discord](https://discord.gg/mRPZuXx3At), [Telegram](https://t.me/stackwallet) or [Reddit](https://www.reddit.com/r/stackwallet/) instead._'

View file

@ -0,0 +1,37 @@
name: Feature request
description: Suggest an idea for this project
title: 'FR: <title>'
labels: [Feature Request]
body:
- type: textarea
attributes:
label: 'Is Problem'
description: 'Is your feature request related to a problem? Please describe.'
value: |
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: false
- type: textarea
attributes:
label: 'Solution'
description: 'Describe the solution you'd like.'
value: |
A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: 'Alternatives'
description: 'Describe alternatives you've considered.'
value: |
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: true
- type: textarea
attributes:
label: 'Context'
description: 'Additional context.'
value: |
Add any other context or screenshots about the feature request here.
validations:
required: false

View file

@ -4,7 +4,7 @@ Here you will find instructions on how to install the necessary tools for buildi
## Prerequisites
- The only OS supported for building is Ubuntu 20.04. Advanced users may also be able to build on other Debian-based distributions like Fedora 37.
- The only OS supported for building is Ubuntu 20.04. Advanced users may also be able to build on other Debian-based distributions like Linux Mint.
- Android setup ([Android Studio](https://developer.android.com/studio) and subsequent dependencies)
- 100 GB of storage
@ -54,6 +54,7 @@ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-
Install [Rust](https://www.rust-lang.org/tools/install) with command:
```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.bashrc
rustup install 1.67.1
rustup default 1.67.1
```