Skip to content
This repository was archived by the owner on Aug 6, 2021. It is now read-only.

Commit 6eb6c0f

Browse files
committed
Fixed disclaimer page and removed invalid translations
1 parent cc92a24 commit 6eb6c0f

File tree

5 files changed

+57
-53
lines changed

5 files changed

+57
-53
lines changed

bunqdesktop.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>bunqdesktop</id>
5-
<version>0.8.5</version>
5+
<version>0.8.6</version>
66
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
77
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
88
<owners>BunqCommunity</owners>

chocolatey/chocolateyInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$name = 'BunqDesktop'
22
$installerType = 'exe'
3-
$url = 'https://github.com/BunqCommunity/BunqDesktop/releases/download/0.8.5/BunqDesktop.Setup.0.8.5.exe'
3+
$url = 'https://github.com/BunqCommunity/BunqDesktop/releases/download/0.8.6/BunqDesktop.Setup.0.8.6.exe'
44
$silentArgs = '/silent'
55

66
Install-ChocolateyPackage $name $installerType $silentArgs $url

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A desktop implementation for the bunq API",
44
"productName": "BunqDesktop",
55
"homepage": "https://bunqdesktop.com/",
6-
"version": "0.8.5",
6+
"version": "0.8.6",
77
"author": {
88
"name": "BunqCommunity",
99
"email": "bunqcommunity@gmail.com"

src/react/Locales/de.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@
145145
"Loading cards": "Karten werden geladen",
146146
"Loading user accounts": "Lade Benutzerkonten",
147147
"Login": "Anmeldung",
148-
"LoginActiveDevelopmentWarning": "LoginActiveDevelopmentWarnung",
149-
"LoginBunqDesktopWarning": "LoginBunqDesktopWarnung",
150148
"LoginPasswordWarningPart1": "Um deine Daten zu schützen, wird alles mit dem eingegebenen Passwort verschlüsselt. Wenn du dieses Passwort vergisst, werden alle persönlichen Daten in BunqDesktop zurückgesetzt und du musst dich erneut anmelden.",
151149
"LoginPasswordWarningPart2": "Wenn du dich dazu entschließt, ein leeres Passwort zu verwenden, kann jeder mit Zugang zu deinem Gerät deine Daten einsehen!",
152150
"Logout": "Ausloggen",
@@ -373,4 +371,4 @@
373371
"weeks": "Wochen",
374372
"year": "Jahr",
375373
"years": "Jahre"
376-
}
374+
}

src/react/Pages/Disclaimer.jsx

Lines changed: 53 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ import { FormControlLabel } from "material-ui/Form";
99
import Card, { CardContent } from "material-ui/Card";
1010
import Checkbox from "material-ui/Checkbox";
1111
import Typography from "material-ui/Typography";
12-
import IconButton from "material-ui/IconButton";
1312

14-
import WarningIcon from "@material-ui/icons/Warning";
1513
import LockIcon from "@material-ui/icons/Lock";
16-
import HelpIcon from "@material-ui/icons/Help";
14+
import DesktopIcon from "@material-ui/icons/DesktopMac";
15+
import BuildIcon from "@material-ui/icons/Edit";
1716

1817
import TranslateButton from "../Components/TranslationHelpers/Button";
1918

@@ -84,50 +83,57 @@ class Disclaimer extends React.Component {
8483
</Helmet>
8584

8685
<Grid item xs={12} sm={8} md={6} lg={4}>
87-
<Card>
88-
<Card style={styles.warningCard}>
89-
<CardContent>
90-
<Typography variant="headline">
91-
<WarningIcon /> Caution!
92-
</Typography>
93-
<Typography variant="body2">
94-
{t("ActiveDevelopmentWarning")}
95-
</Typography>
96-
<br />
97-
<Typography variant="headline">
98-
<LockIcon /> Password
99-
</Typography>
100-
<Typography variant="body2">
101-
{t("PasswordWarningPart1")}
102-
</Typography>
103-
<Typography variant="body2">
104-
{t("PasswordWarningPart2")}
105-
</Typography>
106-
107-
<FormControlLabel
108-
control={
109-
<Checkbox
110-
checked={analyticsEnabled !== false}
111-
onChange={this.toggleAnalytics}
112-
/>
113-
}
114-
label={t(
115-
"Allow basic and anonymous Google Analytics tracking"
116-
)}
117-
/>
118-
119-
<div style={{ textAlign: "center" }}>
120-
<TranslateButton
121-
variant={"raised"}
122-
color={"primary"}
123-
style={styles.buttons}
124-
onClick={this.ignoreWarning}
125-
>
126-
Get started
127-
</TranslateButton>
128-
</div>
129-
</CardContent>
130-
</Card>
86+
<Card style={styles.warningCard}>
87+
<CardContent>
88+
<Typography variant="headline">
89+
<DesktopIcon /> BunqDesktop
90+
</Typography>
91+
<Typography variant="body2">
92+
{t("LoginBunqDesktopWarning")}
93+
</Typography>
94+
<br />
95+
96+
<Typography variant="headline">
97+
<BuildIcon /> Development
98+
</Typography>
99+
<Typography variant="body2">
100+
{t("LoginActiveDevelopmentWarning")}
101+
</Typography>
102+
<br />
103+
104+
<Typography variant="headline">
105+
<LockIcon /> Password
106+
</Typography>
107+
<Typography variant="body2">
108+
{t("LoginPasswordWarningPart1")}
109+
</Typography>
110+
<Typography variant="body2">
111+
{t("LoginPasswordWarningPart2")}
112+
</Typography>
113+
114+
<FormControlLabel
115+
control={
116+
<Checkbox
117+
checked={analyticsEnabled !== false}
118+
onChange={this.toggleAnalytics}
119+
/>
120+
}
121+
label={t(
122+
"Allow basic and anonymous Google Analytics tracking"
123+
)}
124+
/>
125+
126+
<div style={{ textAlign: "center" }}>
127+
<TranslateButton
128+
variant={"raised"}
129+
color={"primary"}
130+
style={styles.buttons}
131+
onClick={this.ignoreWarning}
132+
>
133+
Get started
134+
</TranslateButton>
135+
</div>
136+
</CardContent>
131137
</Card>
132138
</Grid>
133139
</Grid>

0 commit comments

Comments
 (0)