Skip to content

Commit 6bc765f

Browse files
authored
Merge pull request #375 from lockdown-systems/open-source-changes
Open source changes
2 parents 1240af6 + 2f1636a commit 6bc765f

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Cyd
1+
![Cyd](./assets/cyd-readme-header.png)
22

3-
![Cyd](./assets/cyd-sign.png)
3+
# Cyd: Claw back your data from Big Tech
44

55
Tech platforms can't be trusted. It's time to regain control of your data. [Cyd](https://cyd.social/) is an open source app for Windows, Mac, and Linux that lets you back up and selectively delete your data, and migrate it to open platforms.
66

assets/cyd-readme-header.png

175 KB
Loading

assets/cyd-sign.png

-88.4 KB
Binary file not shown.

src/renderer/src/views/AboutView.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ defineProps<{
99
shouldShow: boolean;
1010
}>();
1111
12+
const sourceClicked = async () => {
13+
await window.electron.openURL("https://github.com/lockdown-systems/cyd");
14+
};
15+
1216
const privacyClicked = async () => {
1317
await window.electron.openURL("https://cyd.social/privacy");
1418
};
@@ -42,7 +46,8 @@ onMounted(async () => {
4246
version {{ appVersion }}
4347
</p>
4448
<p class="text-muted">
45-
Copyright © Lockdown Systems LLC {{ currentYear }}
49+
Copyright © Lockdown Systems LLC {{ currentYear }}, licensed under GPLv3<br>
50+
<span class="btn btn-link" @click="sourceClicked">Source Code</span>
4651
<span class="btn btn-link" @click="privacyClicked">Privacy Policy</span>
4752
<span class="btn btn-link" @click="termsClicked">Terms of Use</span>
4853
</p>

0 commit comments

Comments
 (0)