Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Chore: Update repo URL" #137

Merged
merged 1 commit into from
Mar 23, 2022
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
6 changes: 3 additions & 3 deletions docs/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Samuwrite does not collect any personal data. It's a browser-only web app that d

"samuwrite.com" is hosted on Vercel, under [Vercel's Privacy Policy](https://vercel.com/legal/privacy-policy). It is also proxied behind Cloudflare, under [Cloudflare's Privacy Policy](https://www.cloudflare.com/privacypolicy/). Search for "End users" keyword in these policies to understand how your data is handle there.

If you are concerned about these providers, feel free to [suggest alternatives](https://github.com/samuwrite/samuwrite/issues/new). You can also [build the app](https://github.com/samuwrite/samuwrite) yourself to use it on your machine.
If you are concerned about these providers, feel free to [suggest alternatives](https://github.com/thien-do/samuwrite/issues/new). You can also [build the app](https://github.com/thien-do/samuwrite) yourself to use it on your machine.

### How we collect analytics

Expand All @@ -20,13 +20,13 @@ There are several ways we think you can do to see how serious we are about prote

- To see if there is any trackers, some browsers have built-in privacy tool, such as [Safari's Privacy Report](https://support.apple.com/guide/safari/view-a-privacy-report-ibrw35004465/mac) and [Edge's Tracking Prevention](https://support.microsoft.com/en-us/microsoft-edge/learn-about-tracking-prevention-in-microsoft-edge-5ac125e8-9b90-8d59-fa2c-7f2e9a44d869).
- To be more sure, check the [Network tab](https://developer.chrome.com/docs/devtools/network) in your browser's developer tools. All requests should be static resources from samuwrite.com.
- To see Samuwrite's souce code, visit our [repository](https://github.com/samuwrite/samuwrite) on GitHub.
- To see Samuwrite's souce code, visit our [repository](https://github.com/thien-do/samuwrite) on GitHub.
- To ensure we don't inject anything outside of the source code, you can build the app's files locally, then compare their hash with the ones on samuwrite.com.

If you find anything strange, don't hesitate to contact us.

### How to contact us

- GitHub: https://github.com/samuwrite/samuwrite
- GitHub: https://github.com/thien-do/samuwrite
- Twitter: https://twitter.com/_thiendo
- Email: texts.carpel0i@icloud.com
10 changes: 5 additions & 5 deletions src/toolbar/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ const MENU_ITEMS: MenuItem[] = [
{
type: "link",
label: "Version: 1.0",
url: "https://github.com/samuwrite/samuwrite/releases/tag/v1.0",
url: "https://github.com/thien-do/samuwrite/releases/tag/v1.0",
target: "_blank",
},
{ type: "divider" },
{
type: "link",
label: "Support",
url: "https://github.com/samuwrite/samuwrite/issues/new",
url: "https://github.com/thien-do/samuwrite/issues/new",
target: "_blank",
},
{
type: "link",
label: "GitHub",
url: "https://github.com/samuwrite/samuwrite",
url: "https://github.com/thien-do/samuwrite",
target: "_blank",
},
{
Expand All @@ -45,13 +45,13 @@ const MENU_ITEMS: MenuItem[] = [
{
type: "link",
label: "About",
url: "https://github.com/samuwrite/samuwrite/blob/main/README.md",
url: "https://github.com/thien-do/samuwrite/blob/main/README.md",
target: "_blank",
},
{
type: "link",
label: "Privacy Policy",
url: "https://github.com/samuwrite/samuwrite/blob/main/docs/privacy.md",
url: "https://github.com/thien-do/samuwrite/blob/main/docs/privacy.md",
target: "_blank",
},
];
Expand Down
4 changes: 1 addition & 3 deletions src/utils/vote.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
const ISSUES_URL = "https://github.com/samuwrite/samuwrite/issues";
const ISSUES_URL = "https://github.com/thien-do/samuwrite/issues";

const MESSAGE = `
This feature is not yet available. Would you like to vote for it?

Click OK to go to the corresponding issue on our GitHub.
`.trim();

export const vote = (issue: number): void => {
Expand Down