File tree Expand file tree Collapse file tree 5 files changed +27
-3
lines changed
Expand file tree Collapse file tree 5 files changed +27
-3
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export const HNK_TITLE_URL = 'https://mangadex.org/title/cade38b7-64c4-4a29-8e3c
1515export const HNK_FREEDOM_URL = 'https://houseki-no-kuni.fandom.com/wiki/Freedom' as const ;
1616export const HNK_ONESHOT_URL = 'https://houseki-no-kuni.fandom.com/wiki/Freedom#Houseki_No_Kuni_One_Shot' as const ;
1717export 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
2021export const MOSHIMO_TOKYO_URL = 'https://mangadex.org/title/fa91e632-8556-446e-8227-b6003acab958/moshimo-tokyo' as const ;
Original file line number Diff line number Diff line change 11import type { IRequestStrict } from 'itty-router/types/IRequestStrict' ;
22import {
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' :
You can’t perform that action at this time.
0 commit comments