Skip to content

Commit 35045e7

Browse files
committed
Initial commit
0 parents  commit 35045e7

30 files changed

+19669
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
dist/
3+
node_modules/
4+
thumbs.db
5+
.idea/

LICENSE

+674
Large diffs are not rendered by default.

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# turbowarp-desktop
2+
3+
Prototype.
4+
5+
<!--
6+
## Build
7+
8+
```bash
9+
npm i
10+
npm run build
11+
```
12+
13+
Building scratch-gui
14+
15+
```bash
16+
$env:STATIC_PATH="static"; $env:NODE_ENV="production"; npm run build
17+
```
18+
-->

docs/index.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>TurboWarp Desktop</title>
5+
<style>
6+
main {
7+
width: 480px;
8+
margin: auto;
9+
font-family: sans-serif;
10+
}
11+
</style>
12+
</head>
13+
14+
<body>
15+
16+
<main>
17+
<h1>TurboWarp Desktop App</h1>
18+
<p>Very early prototype.</p>
19+
20+
<h2>Downloads</h2>
21+
22+
<ul>
23+
<li><a href="TODO">Windows</a></li>
24+
<li><s>Mac</s> (Maybe eventually)</li>
25+
<li><s>Linux</s> (Maybe eventually)</li>
26+
</ul>
27+
28+
<h2>Included addons</h2>
29+
30+
<ul>
31+
<li>Editor devtools</li>
32+
<li>Searchable dropdowns</li>
33+
<li>Block switching</li>
34+
<li>Onion skinning</li>
35+
<li>Maybe more soon. Currently not configurable.</li>
36+
</ul>
37+
38+
<h2>Source Code</h2>
39+
40+
<p><a href="https://github.com/TurboWarp/turbowarp-desktop">TurboWarp/turbowarp-desktop</a>. GPLv3.</p>
41+
42+
</main>
43+
44+
</body>
45+
</html>

0 commit comments

Comments
 (0)