Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cyd
![Cyd](./assets/cyd-readme-header.png)

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

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.

Expand Down
Binary file added assets/cyd-readme-header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/cyd-sign.png
Binary file not shown.
7 changes: 6 additions & 1 deletion src/renderer/src/views/AboutView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ defineProps<{
shouldShow: boolean;
}>();

const sourceClicked = async () => {
await window.electron.openURL("https://github.com/lockdown-systems/cyd");
};

const privacyClicked = async () => {
await window.electron.openURL("https://cyd.social/privacy");
};
Expand Down Expand Up @@ -42,7 +46,8 @@ onMounted(async () => {
version {{ appVersion }}
</p>
<p class="text-muted">
Copyright © Lockdown Systems LLC {{ currentYear }}
Copyright © Lockdown Systems LLC {{ currentYear }}, licensed under GPLv3<br>
<span class="btn btn-link" @click="sourceClicked">Source Code</span>
<span class="btn btn-link" @click="privacyClicked">Privacy Policy</span>
<span class="btn btn-link" @click="termsClicked">Terms of Use</span>
</p>
Expand Down
Loading