Skip to content

Commit

Permalink
Tweaks for 0.11.0 releease (#162)
Browse files Browse the repository at this point in the history
* Tweaks for 0.11.0 releease

* package not yet working android x
  • Loading branch information
SpicyPete authored Sep 24, 2019
1 parent 5f1c39d commit 859a9b3
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 14 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Badger Wallet - Changelog

## 0.11.0

- Larger QR codes
- Slide to send improvements
- Activates earlier in swipe
- FAQ Page to address common questions
- Direct link to explorer from each transaction
- Paper Wallet Sweeping screen added

## 0.10.3

- React Native 0.60 upgrade
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ To run on a specific device, such as required for taking screenshots for the sto

```bash
> yarn run ios --simulator="iPhone Xs Max"
> yarn run ios --simulator="iPhone 11 Pro"
> yarn run ios --simulator="iPhone 8 Plus"
> yarn run ios --simulator="iPhone 6"
> yarn run ios --simulator="iPhone SE"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildSystemType</key>
<string>Original</string>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>
26 changes: 14 additions & 12 deletions screens/FAQScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,24 @@ const FAQScreen = (props: Props) => {
return (
<SafeAreaView style={{ height: "100%" }}>
<ScreenWrapper contentContainerStyle={{ flexGrow: 1 }}>
<FAQItem title="What is Badger wallet?">
<FAQItem title="What is Badger Wallet?">
<T>
Badger Wallet is a Bitcoin Cash (BCH) and Simple Token (SLP) wallet,
made to prioritize simplicity for everyday use.
designed to prioritize simplicity for everyday use.
</T>
<TouchableOpacity
onPress={() => Linking.openURL("https://badger.bitcoin.com")}
>
<T type="accent">badger.bitcoin.com</T>
</TouchableOpacity>
</FAQItem>
<FAQItem title="Which currencies does Badger wallet support?">
<T>Bitcoin Cash (BCH) and Simple Ledger Protocol (SLP) tokens</T>
</FAQItem>
<FAQItem title="What is Bitcoin Cash (BCH)?">
<T>
Bitcoin Cash (BCH) is a version of bitcoin which focuses on being
peer to peer electronic cash for everyone. Learn more at
peer to peer for the world. Learn more at
</T>
<TouchableOpacity
onPress={() => Linking.openURL("https://bitcoincash.org")}
Expand All @@ -56,11 +59,11 @@ const FAQScreen = (props: Props) => {
</TouchableOpacity>
</FAQItem>

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

<FAQItem title="Why can't I send SLP tokens?">
<FAQItem title="Why can't I send tokens?">
<T>
To send SLP tokens, a small amount of BCH is used to pay for the
transaction fee. Make sure you have some BCH in your wallet before
sending SLP tokens. If this isn't the case, and the problem persists
then please get in contact with the team from the Contact Us page.
Receiving tokens is free, but sending requires a little bit of
Bitcoin Cash (BCH) to pay the transaction fee. Make sure your wallet
has a little bit of BCH before sending SLP tokens.
</T>
</FAQItem>
<Spacer large />
Expand Down
16 changes: 16 additions & 0 deletions screens/KeySweepScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,22 @@ const KeySweepScreen = ({ address }: Props) => {
</View>

<View style={{ flex: 1 }}>
{sweepState === "neutral" && (
<>
<T size="small" center>
To recover Bitcoin Cash (BCH) from a paper wallet, follow the
three outlined steps.
</T>
<Spacer small />
<T size="small">
1. Scan the private QR code on the paper wallet.
</T>
<Spacer small />
<T size="small">2. Review details.</T>
<Spacer small />
<T size="small">3. Sweep to your Badger wallet.</T>
</>
)}
{sweepState === "scanned" && (
<>
<T weight="bold">2. Review Details</T>
Expand Down
5 changes: 3 additions & 2 deletions screens/MenuScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { currencySelector } from "../data/prices/selectors";

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

import packageJson from "../package.json";
// import packageJson from "../package.json";

const StyledScrollView = styled(ScrollView)`
height: 100%;
Expand Down Expand Up @@ -155,7 +155,8 @@ const MenuScreen = ({ navigation, seedViewed, fiatCurrency }: Props) => {
<Spacer fill />
<Spacer small />
<T center size="small" type="muted2">
Version {packageJson.version} - Beta
{/* Version {packageJson.version} - Beta */}
Version 0.11.0 - Beta
</T>
<Spacer small />
</StyledScrollView>
Expand Down
Empty file added yarn
Empty file.

0 comments on commit 859a9b3

Please sign in to comment.