Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
lmachens committed Feb 27, 2024
1 parent f2c287a commit 652d91b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Skeleton is a powerful desktop application that enhances your gaming and streaming experience by providing seamless website overlays directly on your screen. It allows you to display any website as an overlay, whether you need a map or guide in-game without ALT+TAB or prefer to watch your favorite stream in a click-throughable window.

https://user-images.githubusercontent.com/10058950/147827788-3132f6e1-f6da-453e-b4ed-1a1a41d0ed15.mp4
<https://user-images.githubusercontent.com/10058950/147827788-3132f6e1-f6da-453e-b4ed-1a1a41d0ed15.mp4>

## Features

Expand All @@ -24,7 +24,7 @@ To get started with Skeleton, follow these steps:

## Contribution

Skeleton is an open-source project, and contributors are highly welcome! If you'd like to get involved and help make Skeleton even better, please join us on our [Discord](https://discord.gg/NTZu8Px).
Skeleton is an open-source project, and contributors are highly welcome! If you'd like to get involved and help make Skeleton even better, please join us on our [Discord](https://th.gl/discord).

## Development

Expand Down
2 changes: 1 addition & 1 deletion src/child.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { ipcRenderer } = require("electron");
const { initPlausible, trackPageView } = require("./lib/plausible");
const { webFrame } = require("electron");

initPlausible("skeleton.th.gl", "https://apps.machens.dev");
initPlausible("skeleton.th.gl", "https://metrics.th.gl");
window.addEventListener("DOMContentLoaded", () => {
ipcRenderer.on("update", (_event, website) => {
const crop = website.crop || {
Expand Down
4 changes: 2 additions & 2 deletions src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const WebsiteNav = require("./WebsiteNav");
const { shell } = require("electron");

const App = () => {
initPlausible("skeleton.th.gl", "https://apps.machens.dev");
initPlausible("skeleton.th.gl", "https://metrics.th.gl");
trackPageView({ url: "https://skeleton.th.gl" });

const newLink = NewLink();
Expand Down Expand Up @@ -61,7 +61,7 @@ const App = () => {
createElement("button", {
className: "support",
innerText: "Join Discord for Support",
onclick: () => shell.openExternal("https://discord.gg/NTZu8Px"),
onclick: () => shell.openExternal("https://th.gl/discord"),
}),
createElement("button", {
className: "support",
Expand Down
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self' https://skeleton.th.gl https://apps.machens.dev; script-src 'self'"
content="default-src 'self' https://skeleton.th.gl https://metrics.th.gl; script-src 'self'"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self' https://skeleton.th.gl https://apps.machens.dev; script-src 'self'"
content="default-src 'self' https://skeleton.th.gl https://metrics.th.gl; script-src 'self'"
/>
<title>Skeleton</title>
<link rel="stylesheet" href="styles/index.css" />
Expand Down

0 comments on commit 652d91b

Please sign in to comment.