|
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width,initial-scale=1" /> |
6 | | - <title>Prefix Changelog</title> |
| 6 | + <title>Prefix Change Log</title> |
7 | 7 | <link rel="icon" href="./icon.png" /> |
8 | 8 | <style> |
9 | | - @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap'); |
10 | | - @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap'); |
11 | | - body{background:#222;color:#99ddff;font-family:Open Sans, sans-serif;margin:0;padding:1rem} |
12 | | - .container{max-width:1000px;margin:0 auto;text-align:justify;text-justify:inter-word} |
13 | | - .container h1{ text-align:center; margin-top:0; } |
14 | | - .container h2{ text-align:center } |
15 | | - pre, code{background:#3c3c3c;color:inherit;font-family:Source Code Pro, monospace;padding:.25rem .5rem} |
16 | | - img{max-width:100%} |
| 9 | + /* Self-hosted fonts (local workspace) */ |
| 10 | + @font-face { |
| 11 | + font-family: 'Prefix Open Sans'; |
| 12 | + src: url('open-sans/OpenSans-Regular.ttf') format('truetype'); |
| 13 | + font-weight: 400; |
| 14 | + font-style: normal; |
| 15 | + font-display: swap; |
| 16 | + } |
| 17 | + @font-face { |
| 18 | + font-family: 'Prefix Open Sans'; |
| 19 | + src: url('open-sans/OpenSans-Bold.ttf') format('truetype'); |
| 20 | + font-weight: 700; |
| 21 | + font-style: normal; |
| 22 | + font-display: swap; |
| 23 | + } |
| 24 | + @font-face { |
| 25 | + font-family: 'Prefix Open Sans'; |
| 26 | + src: url('open-sans/OpenSans-Semibold.ttf') format('truetype'); |
| 27 | + font-weight: 600; |
| 28 | + font-style: normal; |
| 29 | + font-display: swap; |
| 30 | + } |
| 31 | + @font-face { |
| 32 | + font-family: 'Prefix Open Sans'; |
| 33 | + src: url('open-sans/OpenSans-Italic.ttf') format('truetype'); |
| 34 | + font-weight: 400; |
| 35 | + font-style: italic; |
| 36 | + font-display: swap; |
| 37 | + } |
| 38 | + @font-face { |
| 39 | + font-family: 'Prefix Open Sans'; |
| 40 | + src: url('open-sans/OpenSans-BoldItalic.ttf') format('truetype'); |
| 41 | + font-weight: 700; |
| 42 | + font-style: italic; |
| 43 | + font-display: swap; |
| 44 | + } |
| 45 | + |
| 46 | + @font-face { |
| 47 | + font-family: 'Prefix Source Code Pro'; |
| 48 | + src: url('source-code-pro/SourceCodePro-Regular.otf') format('opentype'); |
| 49 | + font-weight: 400; |
| 50 | + font-style: normal; |
| 51 | + font-display: swap; |
| 52 | + } |
| 53 | + |
| 54 | + body{background:#222;color:#99ddff;font-family:'Prefix Open Sans', Open Sans, sans-serif;margin:0;padding:1rem} |
| 55 | + .container{max-width:1000px;margin:0 auto;text-align:justify;text-justify:inter-word} |
| 56 | + .container h1{position:relative;text-align:center;margin-top:0;min-height:3rem;line-height:3rem;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;} |
| 57 | + .container h1 .grey{color:#3b3b3b} |
| 58 | + .container h1 .semibold{font-weight:600} |
| 59 | + .container h2{text-align: center} |
| 60 | + .title-icon{position:absolute;left:0;top:50%;transform:translateY(-50%);display:block;width:3rem;height:3rem} |
| 61 | + pre, code{background:#3c3c3c;color:inherit;font-family:'Prefix Source Code Pro', 'Source Code Pro', monospace;padding:.25rem .5rem} |
| 62 | + ::selection { background: #000000; color: #FFFF00; } |
| 63 | + ::-moz-selection { background: #000000; color: #FFFF00; } |
| 64 | + img{max-width:100%} |
| 65 | + /* Markdown horizontal rules (---) rendered by marked.js */ |
| 66 | + .container hr, hr { |
| 67 | + border: none; |
| 68 | + border-top: 2px solid #3c3c3c; |
| 69 | + height: 1px; |
| 70 | + margin: 1.5rem 0; |
| 71 | + background: transparent; |
| 72 | + } |
17 | 73 | </style> |
18 | 74 | </head> |
19 | 75 | <body> |
20 | | - <div class="container" id="content">Rendering changelog…</div> |
| 76 | + <div class="container" id="content">Rendering change log…</div> |
21 | 77 |
|
22 | 78 | <!-- Markdown source is embedded below. marked.js will render it into #content. --> |
23 | 79 | <script id="md" type="text/markdown"> |
24 | 80 |
|
25 | | -# Change log |
| 81 | +# <a href="index.html"><img class="title-icon" alt="Prefix icon" src="./icon.png"></a> <span class="semibold">Pre<span class="grey">fix</span></span> Change Log |
| 82 | + |
| 83 | +--- |
26 | 84 |
|
27 | 85 | The change log is a document recording what changed with every release of Prefix. |
28 | 86 |
|
29 | 87 | --- |
30 | 88 |
|
31 | 89 | ## 0.7.1 |
32 | 90 |
|
33 | | -### Backwards-incompatible features |
| 91 | +### Major features |
34 | 92 |
|
35 | 93 | N/A |
36 | 94 |
|
37 | | -### Backwards-compatible features |
| 95 | +### Minor features |
38 | 96 |
|
39 | 97 | N/A |
40 | 98 |
|
|
52 | 110 |
|
53 | 111 | ## 0.7.0 |
54 | 112 |
|
55 | | -### Backwards-incompatible features |
| 113 | +### Major features |
56 | 114 |
|
57 | 115 | N/A |
58 | 116 |
|
59 | | -### Backwards-compatible features |
| 117 | +### Minor features |
60 | 118 |
|
61 | 119 | Add coerced type arguments. |
62 | 120 |
|
|
70 | 128 |
|
71 | 129 | ## 0.6.0 |
72 | 130 |
|
73 | | -### Backwards-incompatible features |
| 131 | +### Major features |
74 | 132 |
|
75 | 133 | Convert `INT` and `FLT` from binary types to support multiple bases. |
76 | 134 |
|
77 | | -### Backwards-compatible features |
| 135 | +### Minor features |
78 | 136 |
|
79 | 137 | Add operator `CONVERT`. |
80 | 138 |
|
|
88 | 146 |
|
89 | 147 | ## 0.5.0 |
90 | 148 |
|
91 | | -### Backwards-incompatible features |
| 149 | +### Major features |
92 | 150 |
|
93 | 151 | N/A |
94 | 152 |
|
95 | | -### Backwards-compatible features |
| 153 | +### Minor features |
96 | 154 |
|
97 | 155 | Expand search paths to include `stdlib/` and `stdext/`. |
98 | 156 |
|
|
106 | 164 |
|
107 | 165 | ## 0.4.1 |
108 | 166 |
|
109 | | -### Backwards-incompatible features |
| 167 | +### Major features |
110 | 168 |
|
111 | 169 | N/A |
112 | 170 |
|
113 | | -### Backwards-compatible features |
| 171 | +### Minor features |
114 | 172 |
|
115 | 173 | N/A |
116 | 174 |
|
|
126 | 184 |
|
127 | 185 | ## 0.4.0 |
128 | 186 |
|
129 | | -### Backwards-incompatible features |
| 187 | +### Major features |
130 | 188 |
|
131 | 189 | N/A |
132 | 190 |
|
133 | | -### Backwards-compatible features |
| 191 | +### Minor features |
134 | 192 |
|
135 | 193 | Add `NEQ` operator. |
136 | 194 |
|
|
144 | 202 |
|
145 | 203 | ## 0.3.0 |
146 | 204 |
|
147 | | -### Backwards-incompatible features |
| 205 | +### Major features |
148 | 206 |
|
149 | 207 | Make `TNS` and `MAP` atomic. |
150 | 208 |
|
151 | | -### Backwards-compatible features |
| 209 | +### Minor features |
152 | 210 |
|
153 | 211 | N/A |
154 | 212 |
|
|
160 | 218 |
|
161 | 219 | ## 0.2.0 |
162 | 220 |
|
163 | | -### Backwards-incompatible features |
| 221 | +### Major features |
164 | 222 |
|
165 | 223 | N/A |
166 | 224 |
|
167 | | -### Backwards-compatible features |
| 225 | +### Minor features |
168 | 226 |
|
169 | 227 | Add `FLT` infinities. |
170 | 228 |
|
|
0 commit comments