-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog-1.1.4.html
372 lines (349 loc) · 9.12 KB
/
log-1.1.4.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400,500,700&display=swap"
rel="stylesheet"
/>
<style>
/*
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1.1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
</style>
<style>
body {
font-family: "DM Sans", sans-serif;
margin: 0;
padding: 0;
font-size: 16px;
background-color: var(--primaryBackground);
}
* {
box-sizing: border-box;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
h1 {
font-weight: 700;
font-size: 1.25rem;
margin-bottom: 24px;
color: var(--primaryHighlight);
}
h2 {
font-weight: 700;
font-size: 1.1rem;
margin-top: 16px;
margin-bottom: 8px;
color: var(--primaryFill);
}
p {
margin-bottom: 16px;
color: var(--secondaryFill);
}
a {
color: inherit;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
code {
display: block;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
background-color: var(--secondaryBackground);
color: var(--secondaryFill);
font-size: 14px;
font-family: monospace;
overflow-wrap: break-word;
}
</style>
</head>
<body>
<script>
var theme = new URLSearchParams(window.location.search).get("theme")
var DarkTheme = `
body {
--primaryBackground: #101010;
--secondaryBackground: #1c1d1f;
--primaryFill: #ffffff;
--secondaryFill: #8c8c8d;
--primaryHighlight: #0971f1;
--secondaryHighlight: #227ff2;
--primaryBorder: rgba(255, 255, 255, 0.1);
--secondaryBorder: rgba(255, 255, 255, 0.2);
--primaryError: #f9153e;
--secondaryError: #190206;
--anaverse-blend-mode: screen;
}
`
var LightTheme = `
body {
--primaryBackground: #ffffff;
--secondaryBackground: #f7f7f7;
--primaryFill: #000000;
--secondaryFill: rgba(0, 0, 0, 0.6);
--primaryHighlight: #0971f1;
--secondaryHighlight: #227ff2;
--primaryBorder: rgba(0, 0, 0, 0.1);
--secondaryBorder: rgba(0, 0, 0, 0.2);
--primaryError: #f9153e;
--secondaryError: #190206;
--anaverse-blend-mode: multiply;
}
`
let styles = ``
if (theme === "dark") {
styles = DarkTheme
} else if (theme === "light") {
styles = LightTheme
} else {
styles = `
@media (prefers-color-scheme: dark) {
${DarkTheme}
}
@media (prefers-color-scheme: light) {
${LightTheme}
}`
}
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = styles
document.head.appendChild(styleSheet)
</script>
<h1>1.1.4 - August 2nd, 2022</h1>
<div style="display: flex; justify-content: center; align-items: center">
<svg
width="692"
height="138"
viewBox="0 0 692 138"
style="width: auto; max-width: 50vw"
>
<text
font-family="sans-serif"
x="10"
y="95"
fill="rgb(0,255,235)"
font-size="120"
font-weight="bolder"
style="mix-blend-mode: var(--anaverse-blend-mode)"
>
ANAVER.SE
</text>
<text
font-family="sans-serif"
x="5"
y="95"
fill="rgb(255,0,0)"
font-size="120"
font-weight="bolder"
style="mix-blend-mode: var(--anaverse-blend-mode)"
>
ANAVER.SE
</text>
</svg>
</div>
<h2>New anaver.se integration</h2>
<p>
We partnered up with the team behind
<a href="https://anaver.se" target="_blank">anaver.se</a> to bring versum
boards to life in an online 3D environment & viewing space. You can enable
this on your
<a href="https://versum.xyz/settings/integrations" target="_top"
>integrations panel</a
>
and once active you will be able to open a board directly on
<a href="https://anaver.se" target="_blank">anaver.se</a>, which is a
collective generative art project. Boards will be discoverable & viewable
in an online 3D gallery environment, where users can see the tokens in the
gallery and then access the artworks directly on versum, so it offers a
different and exciting new way to experience your boards.
</p>
<p>
We'd love to know what you think about this new feature, so come show
us your boards on anaver.se on
<a href="http://discord.gg/S7awrN6mvr" target="_blank">Discord</a>
or
<a href="https://twitter.com/versumofficial" target="_blank">Twitter</a>.
</p>
<h2>New Command-line interface (CLI)</h2>
<p>
Versum gives you multiple ways to interact with the ecosystem.
There's now a new command-line interface (CLI) that lets you retrieve
and export CSV data, generate templates and more. The CLI is
cross-platform, so it works on versum, hicetnunc, teia, objktcom, 8bidou,
typed.art, etc
</p>
<p>
New functionality is being added regularly, but if you'd like to
contribute please head over to
<a href="https://github.com/versumstudios/cli" target="_blank">Github</a>.
</p>
<p>
To download and install versum CLI, run the following command:
<code>npm i -g @versumstudios/cli</code>
</p>
<h2>Bug fixes</h2>
<p>
Recently we fixed an issue affecting all tokens with 0% royalties,
stopping users from being able to collect on secondary market if the price
was above 0ꜩ. This bug didn't get picked up by our unit tests due to an
underlying
<a href="https://gitlab.com/SmartPy/smartpy/-/issues/35" target="_blank"
>issue</a
>
in smartpy which failed to highlight 0ꜩ transfers (which are not supported
on Tezos)
</p>
<p>
Since our smart contracts are upgradable we were able to patch this
without having to redeploy new contracts, and you should now be able to
purchase any token with 0% royalties.
</p>
<p>
Full list of affected tokens:
<code>
3671, 15059, 3282, 584, 1153, 6590, 5885, 8607, 9130, 11459, 12988,
13850, 15492, 15481, 15489, 15490, 15513, 15514, 15646, 16284, 19476,
19496, 20302, 1614, 855, 2265, 3756, 11509, 6824, 6825, 5559, 7649,
10384, 9989, 10006, 8806, 10745, 10048, 10116, 10138, 10153, 10161,
9762, 10349, 10354, 11668, 10429, 10454, 10462, 11128, 11150, 13924,
13928, 11816, 13970, 11312, 12617, 12063, 15186, 13333, 12832, 14088,
21629, 12879, 14059, 16157, 12973, 14876, 14874, 15293, 14895, 16454,
14881, 14964, 14969, 14461, 14970, 15048, 14458, 19583, 15790, 15068,
15794, 15189, 15366, 15372, 15368, 16677, 16678, 16682, 16105, 16108,
16112, 16114, 16117, 16140, 16251, 17027, 20095, 21605, 21632, 27415,
24061, 25006, 24935, 15525, 15279, 27116, 27239</code
>
</p>
</body>
</html>