Skip to content

Commit

Permalink
added card error help link
Browse files Browse the repository at this point in the history
  • Loading branch information
robertclarkson committed May 24, 2023
1 parent a6609ca commit a8e676b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Since December 2022 it may be possible to add iOS support using the new [NXP Mif
Find out more at [boltcard.org](https://boltcard.org)

## Current Version
v0.1.4
v0.1.9

## NFC Card Support
* NXP NTAG424 DNA
Expand Down Expand Up @@ -99,6 +99,9 @@ Keep all your keys secret, and be careful when creating your cards that there ar

# Version info

## 0.1.9
Various fixes to attempt to prevent card programming errors

## 0.1.6
Remove key check code to prevent card programming errors

Expand Down
2 changes: 1 addition & 1 deletion gitinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"{\"commit\":\"b832c32\"}"
"{\"commit\":\"a6609ca\"}"
10 changes: 9 additions & 1 deletion src/screens/HelpScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function HelpScreen({ navigation }) {
<ScrollView>
<Card style={{ marginBottom: 20, marginHorizontal: 10 }}>
<Card.Content>
<Title selectable={true}>v0.1.8 ({gitinfo.commit})</Title>
<Title selectable={true}>v0.1.9 ({gitinfo.commit})</Title>
</Card.Content>
</Card>
<Card style={{ marginBottom: 20, marginHorizontal: 10 }}>
Expand All @@ -36,6 +36,14 @@ export default function HelpScreen({ navigation }) {
</Card>
<Card style={{ marginBottom: 20, marginHorizontal: 10 }}>
<Card.Content>
<Title>Card Errors</Title>
<Text style={styles.paragraph}>
<TouchableOpacity style={styles.button} onPress={() => Linking.openURL("https://github.com/boltcard/bolt-nfc-android-app/blob/master/card-programming-errors.md")}>
<Text style={styles.buttonText}>
<Ionicons name="logo-github" size={20} color="white" /> Card Programming Errors
</Text>
</TouchableOpacity>
</Text>
<Title>Instructions</Title>
<TouchableOpacity style={styles.button} onPress={() => Linking.openURL("https://lasereyes.cards/how-to-use/lnbits-bolt-card-setup-instructions/")}>
<Text style={styles.buttonText}>
Expand Down

0 comments on commit a8e676b

Please sign in to comment.