-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
113 lines (106 loc) · 3.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<title>TurboWarp Packager Legacy Versions</title>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: hsla(0, 100%, 65%, 1);
color: white;
text-align: center;
padding: 20px 0;
}
main {
max-width: 600px;
margin: auto;
}
footer {
font-size: small;
}
footer a {
color: inherit;
}
summary {
cursor: pointer;
}
.packager {
display: flex;
flex-direction: column;
color: inherit;
text-decoration: none;
border: 4px solid #ccc;
border-radius: 8px;
padding: 8px;
gap: 8px;
margin: 16px 0;
}
.packager:hover {
border-color: #ff4c4c;
}
.packager h2, .packager p {
margin: 0;
}
@media (prefers-color-scheme: dark) {
:root {
background-color: #111;
color: #eee;
color-scheme: dark;
}
.packager {
border-color: #333;
}
}
</style>
</head>
<body>
<header>
<h1>TurboWarp Packager Legacy Versions</h1>
</header>
<main>
<p>
These are old versions of the <a href="https://packager.turbowarp.org/">TurboWarp Packager</a>.
While we think that every new version of the packager is better than the previous, we understand
there are cases where you might want to use an old version.
</p>
<p>
We will keep these versions up and in (mostly) working condition for as long as possible, but we
can't provide any support for non-critical bugs or feature requests.
</p>
<a href="apache/" class="packager">
<h2>apache (February 23, 2024)</h2>
<p>
This is a snapshot of the packager before we changed its license from the Apache
2.0 license to the Mozilla Public License version 2.0.
</p>
<p>
While don't expect the LGPL to cause any problems, even for people who are selling packaged
projects, there might be some legal edge cases where it is a problem. We're keeping this
around for them.
</p>
</a>
<a href="p3/" class="packager">
<h2>p3 (June 23, 2021)</h2>
<p>
This is the old version of packager before we rewrote it all from the ground-up.
The name "p3" comes from the internal name we gave it: "packager v3".
The first two versions were the forkphorus packager, which itself was rewritten once.
</p>
<p>
p3 is notable for using TurboWarp/scratch-gui as the basis for packaged projects, which subjected
packaged projects to the full GNU General Public License version 3, and made the projects significantly
slower, bigger, and less customizable than the rewrite.
</p>
</a>
<footer>
<p><a href="https://github.com/TurboWarp/packager-legacy">All code on GitHub</a></p>
<p><a href="https://turbowarp.org/privacy.html">Privacy Policy</a></p>
</footer>
</main>
</body>
</html>