Skip to content

Commit

Permalink
Add link to privacy policy (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
Terkwood authored Nov 9, 2020
1 parent 8a03428 commit 4fe042c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NEXT: v1.0.3
# v1.0.3

- Add PRIVACY.md. #452
- Address GDPR. #453, #452, #416

# v1.0.2

Expand Down
2 changes: 1 addition & 1 deletion browser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bugout-browser",
"productName": "BUGOUT",
"version": "1.0.2",
"version": "1.0.3",
"description": "Graphical user interface for BUGOUT Go/Baduk/Weiqi",
"author": "Terkwood <[email protected]>",
"homepage": "https://github.com/Terkwood/BUGOUT",
Expand Down
2 changes: 1 addition & 1 deletion browser/src/components/App.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const EDITION = "Speechless";
const EDITION = "EUGOOD";

const EventEmitter = require("events");
const { ipcRenderer, remote } = require("electron");
Expand Down
6 changes: 4 additions & 2 deletions browser/src/components/bugout/WelcomeModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,12 @@ class WelcomeModal extends Component {
"div",
{ id: "welcome-front-matter" },
FRONT_MATTER_TEXT,
h("a", { href: "https://github.com/Terkwood/BUGOUT" }, "Source code."),
" ",
h(
"a",
{ href: "https://github.com/Terkwood/BUGOUT" },
"View the source on Github."
{ href: "https://github.com/Terkwood/BUGOUT/blob/unstable/PRIVACY.md" },
"Privacy policy."
)
);

Expand Down

0 comments on commit 4fe042c

Please sign in to comment.