Skip to content

Commit 859a9b3

Browse files
authored
Tweaks for 0.11.0 releease (#162)
* Tweaks for 0.11.0 releease * package not yet working android x
1 parent 5f1c39d commit 859a9b3

File tree

7 files changed

+53
-14
lines changed

7 files changed

+53
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Badger Wallet - Changelog
22

3+
## 0.11.0
4+
5+
- Larger QR codes
6+
- Slide to send improvements
7+
- Activates earlier in swipe
8+
- FAQ Page to address common questions
9+
- Direct link to explorer from each transaction
10+
- Paper Wallet Sweeping screen added
11+
312
## 0.10.3
413

514
- React Native 0.60 upgrade

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ To run on a specific device, such as required for taking screenshots for the sto
9090

9191
```bash
9292
> yarn run ios --simulator="iPhone Xs Max"
93+
> yarn run ios --simulator="iPhone 11 Pro"
9394
> yarn run ios --simulator="iPhone 8 Plus"
9495
> yarn run ios --simulator="iPhone 6"
9596
> yarn run ios --simulator="iPhone SE"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildSystemType</key>
6+
<string>Original</string>
7+
<key>PreviewsEnabled</key>
8+
<false/>
9+
</dict>
10+
</plist>

screens/FAQScreen.js

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,24 @@ const FAQScreen = (props: Props) => {
3333
return (
3434
<SafeAreaView style={{ height: "100%" }}>
3535
<ScreenWrapper contentContainerStyle={{ flexGrow: 1 }}>
36-
<FAQItem title="What is Badger wallet?">
36+
<FAQItem title="What is Badger Wallet?">
3737
<T>
3838
Badger Wallet is a Bitcoin Cash (BCH) and Simple Token (SLP) wallet,
39-
made to prioritize simplicity for everyday use.
39+
designed to prioritize simplicity for everyday use.
4040
</T>
4141
<TouchableOpacity
4242
onPress={() => Linking.openURL("https://badger.bitcoin.com")}
4343
>
4444
<T type="accent">badger.bitcoin.com</T>
4545
</TouchableOpacity>
4646
</FAQItem>
47+
<FAQItem title="Which currencies does Badger wallet support?">
48+
<T>Bitcoin Cash (BCH) and Simple Ledger Protocol (SLP) tokens</T>
49+
</FAQItem>
4750
<FAQItem title="What is Bitcoin Cash (BCH)?">
4851
<T>
4952
Bitcoin Cash (BCH) is a version of bitcoin which focuses on being
50-
peer to peer electronic cash for everyone. Learn more at
53+
peer to peer for the world. Learn more at
5154
</T>
5255
<TouchableOpacity
5356
onPress={() => Linking.openURL("https://bitcoincash.org")}
@@ -56,11 +59,11 @@ const FAQScreen = (props: Props) => {
5659
</TouchableOpacity>
5760
</FAQItem>
5861

59-
<FAQItem title="What are Simple Tokens (SLP)?">
62+
<FAQItem title="What are Simple Ledger Protocol (SLP) tokens?">
6063
<T>
61-
Simple tokens are tokens following the Simple Ledger Protocol
62-
specification which is built upon the Bitcoin Cash network. With
63-
simple tokens you can tokenize anything and everything easily.
64+
SLP tokens are tokens following the Simple Ledger Protocol
65+
specification which is built upon the Bitcoin Cash network. With SLP
66+
tokens can be created and shared by anyone easily.
6467
</T>
6568
<TouchableOpacity
6669
onPress={() => Linking.openURL("https://simpleledger.cash")}
@@ -69,12 +72,11 @@ const FAQScreen = (props: Props) => {
6972
</TouchableOpacity>
7073
</FAQItem>
7174

72-
<FAQItem title="Why can't I send SLP tokens?">
75+
<FAQItem title="Why can't I send tokens?">
7376
<T>
74-
To send SLP tokens, a small amount of BCH is used to pay for the
75-
transaction fee. Make sure you have some BCH in your wallet before
76-
sending SLP tokens. If this isn't the case, and the problem persists
77-
then please get in contact with the team from the Contact Us page.
77+
Receiving tokens is free, but sending requires a little bit of
78+
Bitcoin Cash (BCH) to pay the transaction fee. Make sure your wallet
79+
has a little bit of BCH before sending SLP tokens.
7880
</T>
7981
</FAQItem>
8082
<Spacer large />

screens/KeySweepScreen.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,22 @@ const KeySweepScreen = ({ address }: Props) => {
136136
</View>
137137

138138
<View style={{ flex: 1 }}>
139+
{sweepState === "neutral" && (
140+
<>
141+
<T size="small" center>
142+
To recover Bitcoin Cash (BCH) from a paper wallet, follow the
143+
three outlined steps.
144+
</T>
145+
<Spacer small />
146+
<T size="small">
147+
1. Scan the private QR code on the paper wallet.
148+
</T>
149+
<Spacer small />
150+
<T size="small">2. Review details.</T>
151+
<Spacer small />
152+
<T size="small">3. Sweep to your Badger wallet.</T>
153+
</>
154+
)}
139155
{sweepState === "scanned" && (
140156
<>
141157
<T weight="bold">2. Review Details</T>

screens/MenuScreen.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { currencySelector } from "../data/prices/selectors";
2020

2121
import { T, Spacer } from "../atoms";
2222

23-
import packageJson from "../package.json";
23+
// import packageJson from "../package.json";
2424

2525
const StyledScrollView = styled(ScrollView)`
2626
height: 100%;
@@ -155,7 +155,8 @@ const MenuScreen = ({ navigation, seedViewed, fiatCurrency }: Props) => {
155155
<Spacer fill />
156156
<Spacer small />
157157
<T center size="small" type="muted2">
158-
Version {packageJson.version} - Beta
158+
{/* Version {packageJson.version} - Beta */}
159+
Version 0.11.0 - Beta
159160
</T>
160161
<Spacer small />
161162
</StyledScrollView>

yarn

Whitespace-only changes.

0 commit comments

Comments
 (0)