Skip to content

Commit e318dda

Browse files
committed
Move referer information page to desktop.turbowarp.org
1 parent d2e82fa commit e318dda

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

docs/referer.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>TurboWarp Desktop Referer</title>
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="robots" content="noindex">
8+
<style>
9+
:root {
10+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
11+
}
12+
@media (prefers-color-scheme: dark) {
13+
:root {
14+
color-scheme: dark;
15+
background-color: #111;
16+
color: #eee;
17+
}
18+
}
19+
main {
20+
max-width: 480px;
21+
margin: auto;
22+
}
23+
</style>
24+
</head>
25+
26+
<body>
27+
<main>
28+
<h1>TurboWarp Desktop Referer</h1>
29+
<p>If you're seeing requests to your website with this page in its <code>Referer</code> header, that probably means someone is using a program they created in <a href="/">TurboWarp Desktop</a> to interact with your website.</p>
30+
<p>Per our <a href="/privacy.html">privacy policy</a>, we do not track our users and can't tell you who is accessing your website or why.</p>
31+
<p>Questions or concerns? You can email contact at turbowarp dot org, but again, TurboWarp Desktop is just a programming environment. We aren't the people sending requests to your server.</p>
32+
</main>
33+
</body>
34+
</html>

src-main/windows/project-running-window.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class ProjectRunningWindow extends AbtractWindow {
140140
// revealing any metadata that they couldn't already have access to.
141141
return callback({
142142
requestHeaders: {
143-
referer: 'https://docs.turbowarp.org/desktop/referer'
143+
referer: 'https://desktop.turbowarp.org/referer.html'
144144
}
145145
});
146146
}

0 commit comments

Comments
 (0)