Skip to content

Commit 5123074

Browse files
committed
Add redirects for Volume 13 live drone show
- `/other/drones`, `/other/drone-show`, `/other/vol13-drone-show` all redirect to the past livestream of the Volume 13 Release Countdown Drone Show on the official Kodansha YouTube channel. Increased hnkrocks-chapter-router version to 2.16.0
1 parent be82ea8 commit 5123074

File tree

5 files changed

+27
-3
lines changed

5 files changed

+27
-3
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ _All routes are relative to the base URL `https://hnk.rocks`._
3939
- [Original one-shot (Part of Japanese Volume 10 Extra)](#original-one-shot-part-of-japanese-volume-10-extra)
4040
- [Lorebook (Japanese Volume 11 Extra)](#lorebook-japanese-volume-11-extra)
4141
- ["Party at the End" (Japanese Volume 12 Extra)](#party-at-the-end-japanese-volume-12-extra)
42+
- [Drone Show for Volume 13 Release Countdown (2024-11-20)](#drone-show-for-volume-13-release-countdown-2024-11-20)
4243
- [Works unrelated to Houseki no Kuni:](#works-unrelated-to-houseki-no-kuni)
4344
- ["25 Hour Vacation"](#25-hour-vacation)
4445
- [Haruko Ichikawa Anthology](#haruko-ichikawa-anthology)
@@ -496,6 +497,23 @@ Example: [https://hnk.rocks/other/party](https://hnk.rocks/other/party)
496497

497498
---
498499

500+
#### Drone Show for Volume 13 Release Countdown (2024-11-20)
501+
502+
<table>
503+
<tr>
504+
<td><code>/drones</code></td>
505+
<td><code>/drone-show</code></td>
506+
<td><code>/vol13-drone-show</code></td>
507+
</tr>
508+
</table>
509+
510+
Redirects to the past livestream on the official Kodansha YouTube channel of the
511+
[Volume 13 Release Countdown Drone Show](https://www.youtube.com/watch?v=EFIMy02Nhoc).
512+
513+
Example: [https://hnk.rocks/other/drones](https://hnk.rocks/other/drones)
514+
515+
---
516+
499517
### Works unrelated to Houseki no Kuni:
500518

501519
#### "25 Hour Vacation"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hnkrocks-chapter-router",
3-
"version": "2.15.0",
3+
"version": "2.16.0",
44
"dependencies": {
55
"itty-router": "^5.0.18",
66
"reflare": "^1.1.5"

src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export const HNK_TITLE_URL = 'https://mangadex.org/title/cade38b7-64c4-4a29-8e3c
1515
export const HNK_FREEDOM_URL = 'https://houseki-no-kuni.fandom.com/wiki/Freedom' as const;
1616
export const HNK_ONESHOT_URL = 'https://houseki-no-kuni.fandom.com/wiki/Freedom#Houseki_No_Kuni_One_Shot' as const;
1717
export const HNK_STATUE_URL = 'https://pastebin.com/mfhZPsUa';
18+
export const HNK_DRONE_SHOW_URL = 'https://www.youtube.com/watch?v=EFIMy02Nhoc';
1819

1920
// Other Ichikawa works
2021
export const MOSHIMO_TOKYO_URL = 'https://mangadex.org/title/fa91e632-8556-446e-8227-b6003acab958/moshimo-tokyo' as const;

src/handlers/handleOtherWorks.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { IRequestStrict } from 'itty-router/types/IRequestStrict';
22
import {
3+
HNK_DRONE_SHOW_URL,
34
HNK_FREEDOM_URL,
45
HNK_LOREBOOK_URL,
56
HNK_ONESHOT_URL,
@@ -47,6 +48,10 @@ export const handleOtherWorks = async (request: IRequestStrict): Promise<Respons
4748
case 'party-at-the-end':
4849
case 'vol12-extra':
4950
return Response.redirect(HNK_PARTY_AT_THE_END_URL, TEMPORARY_REDIRECT);
51+
case 'drones':
52+
case 'drone-show':
53+
case 'vol13-drone-show':
54+
return Response.redirect(HNK_DRONE_SHOW_URL, TEMPORARY_REDIRECT);
5055

5156
// Non-HnK works by Ichikawa Haruko
5257
case '25-ji-no-vacances':

0 commit comments

Comments
 (0)