Skip to content

Commit 8a164eb

Browse files
BookWyrm Botgithub-actions[bot]
authored andcommitted
deploy latest
1 parent 28a8c8c commit 8a164eb

File tree

121 files changed

+4090
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+4090
-7
lines changed

locale/en_US/LC_MESSAGES/messages.po

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-04-23 07:38+0000\n"
11+
"POT-Creation-Date: 2025-04-23 09:50+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -51,43 +51,46 @@ msgstr ""
5151

5252
#: templates/layout.html:47 templates/layout.html:124 templates/layout.html:51
5353
#: templates/layout.html:130 templates/layout.html:52 templates/layout.html:131
54+
#: templates/layout.html:137
5455
msgid "Documentation"
5556
msgstr ""
5657

5758
#: templates/layout.html:95 templates/layout.html:101 templates/layout.html:102
59+
#: templates/layout.html:108
5860
msgid "<strong>BookWyrm</strong> is collaborative, anti-corporate software maintained by <a href='https://www.mousereeve.com/'>Mouse Reeve</a>."
5961
msgstr ""
6062

6163
#: templates/layout.html:98 templates/layout.html:104 templates/layout.html:105
64+
#: templates/layout.html:111
6265
msgid "Support BookWyrm on <a href='https://www.patreon.com/bookwyrm' target='_blank'>Patreon</a>."
6366
msgstr ""
6467

6568
#: templates/layout.html:102 templates/layout.html:108
66-
#: templates/layout.html:109
69+
#: templates/layout.html:109 templates/layout.html:115
6770
msgid "Get Involved"
6871
msgstr ""
6972

7073
#: templates/layout.html:104 templates/layout.html:110
71-
#: templates/layout.html:111
74+
#: templates/layout.html:111 templates/layout.html:117
7275
msgid "BookWyrm on GitHub"
7376
msgstr ""
7477

7578
#: templates/layout.html:107 templates/layout.html:113
76-
#: templates/layout.html:114
79+
#: templates/layout.html:114 templates/layout.html:120
7780
msgid "Contribute to this page"
7881
msgstr ""
7982

8083
#: templates/layout.html:122 templates/layout.html:128
81-
#: templates/layout.html:129
84+
#: templates/layout.html:129 templates/layout.html:135
8285
msgid "Learn more"
8386
msgstr ""
8487

8588
#: templates/layout.html:127 templates/layout.html:133
86-
#: templates/layout.html:134
89+
#: templates/layout.html:134 templates/layout.html:140
8790
msgid "Contact maintainer"
8891
msgstr ""
8992

9093
#: templates/layout.html:130 templates/layout.html:136
91-
#: templates/layout.html:137
94+
#: templates/layout.html:137 templates/layout.html:143
9295
msgid "License"
9396
msgstr ""

site/activitypub.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">ActivityPub</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -392,6 +401,31 @@ <h3 class="title is-6">Learn more</h3>
392401
}
393402
})()
394403
</script>
404+
<script type="text/javascript">
405+
(function() {
406+
var versionSelector = document.getElementById("version_selection");
407+
versionSelector.onchange = function(event) {
408+
var current_version = "";
409+
console.log(current_version)
410+
var current_location = window.location.pathname;
411+
var version_index = current_location.indexOf(current_version);
412+
var new_location = "/" + event.target.value;
413+
414+
console.log(current_location)
415+
console.log(new_location)
416+
417+
if (version_index) {
418+
new_location += current_location.slice(version_index + current_version.length) + "/";
419+
} else {
420+
console.log("no version_index")
421+
new_location += `/${current_location.slice(1)}`;
422+
}
423+
424+
window.location = new_location;
425+
}
426+
})()
427+
</script>
428+
395429

396430
</body>
397431
</html>

site/adding-books.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">Adding Books</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -300,6 +309,31 @@ <h3 class="title is-6">Learn more</h3>
300309
}
301310
})()
302311
</script>
312+
<script type="text/javascript">
313+
(function() {
314+
var versionSelector = document.getElementById("version_selection");
315+
versionSelector.onchange = function(event) {
316+
var current_version = "";
317+
console.log(current_version)
318+
var current_location = window.location.pathname;
319+
var version_index = current_location.indexOf(current_version);
320+
var new_location = "/" + event.target.value;
321+
322+
console.log(current_location)
323+
console.log(new_location)
324+
325+
if (version_index) {
326+
new_location += current_location.slice(version_index + current_version.length) + "/";
327+
} else {
328+
console.log("no version_index")
329+
new_location += `/${current_location.slice(1)}`;
330+
}
331+
332+
window.location = new_location;
333+
}
334+
})()
335+
</script>
336+
303337

304338
</body>
305339
</html>

site/cli.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">Command Line Tool</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -372,6 +381,31 @@ <h3 class="title is-6">Learn more</h3>
372381
}
373382
})()
374383
</script>
384+
<script type="text/javascript">
385+
(function() {
386+
var versionSelector = document.getElementById("version_selection");
387+
versionSelector.onchange = function(event) {
388+
var current_version = "";
389+
console.log(current_version)
390+
var current_location = window.location.pathname;
391+
var version_index = current_location.indexOf(current_version);
392+
var new_location = "/" + event.target.value;
393+
394+
console.log(current_location)
395+
console.log(new_location)
396+
397+
if (version_index) {
398+
new_location += current_location.slice(version_index + current_version.length) + "/";
399+
} else {
400+
console.log("no version_index")
401+
new_location += `/${current_location.slice(1)}`;
402+
}
403+
404+
window.location = new_location;
405+
}
406+
})()
407+
</script>
408+
375409

376410
</body>
377411
</html>

site/codereview.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">Code Review</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -298,6 +307,31 @@ <h3 class="title is-6">Learn more</h3>
298307
}
299308
})()
300309
</script>
310+
<script type="text/javascript">
311+
(function() {
312+
var versionSelector = document.getElementById("version_selection");
313+
versionSelector.onchange = function(event) {
314+
var current_version = "";
315+
console.log(current_version)
316+
var current_location = window.location.pathname;
317+
var version_index = current_location.indexOf(current_version);
318+
var new_location = "/" + event.target.value;
319+
320+
console.log(current_location)
321+
console.log(new_location)
322+
323+
if (version_index) {
324+
new_location += current_location.slice(version_index + current_version.length) + "/";
325+
} else {
326+
console.log("no version_index")
327+
new_location += `/${current_location.slice(1)}`;
328+
}
329+
330+
window.location = new_location;
331+
}
332+
})()
333+
</script>
334+
301335

302336
</body>
303337
</html>

site/contributing.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">How to Contribute</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -294,6 +303,31 @@ <h3 class="title is-6">Learn more</h3>
294303
}
295304
})()
296305
</script>
306+
<script type="text/javascript">
307+
(function() {
308+
var versionSelector = document.getElementById("version_selection");
309+
versionSelector.onchange = function(event) {
310+
var current_version = "";
311+
console.log(current_version)
312+
var current_location = window.location.pathname;
313+
var version_index = current_location.indexOf(current_version);
314+
var new_location = "/" + event.target.value;
315+
316+
console.log(current_location)
317+
console.log(new_location)
318+
319+
if (version_index) {
320+
new_location += current_location.slice(version_index + current_version.length) + "/";
321+
} else {
322+
console.log("no version_index")
323+
new_location += `/${current_location.slice(1)}`;
324+
}
325+
326+
window.location = new_location;
327+
}
328+
})()
329+
</script>
330+
297331

298332
</body>
299333
</html>

site/de/activitypub.html

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ <h1 class="title is-1">ActivityPub</h1>
8585
</header>
8686
<div class="columns">
8787
<nav class="menu column is-one-quarter mt-2">
88+
<div class="select">
89+
<select aria-label="Previous versions" id="version_selection">
90+
91+
<option value="latest" >latest</option>
92+
93+
<option value="v0.7.5" >v0.7.5</option>
94+
95+
</select>
96+
</div>
8897
<h2 class="menu-label"><a href="/de/">Welcome</a></h2>
8998

9099
<h2 class="menu-label">Using BookWyrm</h2>
@@ -309,6 +318,31 @@ <h3 class="title is-6">Mehr erfahren</h3>
309318
}
310319
})()
311320
</script>
321+
<script type="text/javascript">
322+
(function() {
323+
var versionSelector = document.getElementById("version_selection");
324+
versionSelector.onchange = function(event) {
325+
var current_version = "";
326+
console.log(current_version)
327+
var current_location = window.location.pathname;
328+
var version_index = current_location.indexOf(current_version);
329+
var new_location = "/" + event.target.value;
330+
331+
console.log(current_location)
332+
console.log(new_location)
333+
334+
if (version_index) {
335+
new_location += current_location.slice(version_index + current_version.length) + "/";
336+
} else {
337+
console.log("no version_index")
338+
new_location += `/${current_location.slice(1)}`;
339+
}
340+
341+
window.location = new_location;
342+
}
343+
})()
344+
</script>
345+
312346

313347
</body>
314348
</html>

0 commit comments

Comments
 (0)