forked from sgrimm/lurkers-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
94.whatsnew.html
executable file
·1713 lines (1571 loc) · 38.4 KB
/
94.whatsnew.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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>What's New at Hyperion - 1994</title>
<link rev=made href="mailto:[email protected]">
<link rel=parent href="whatsnew.html">
</head>
<body>
<h1>What's New at Hyperion - 1994</h1>
<em>Note that many, if not most, of the links listed here are obsolete by
now. This list is kept online for historical interest only.</em>
<dl>
<p>
<dt>December 30, 1994
<dd>
<ul>
<li> A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server.
<li> A new version of the
<a href="/lurk/ftp/b5encyc.txt">Babylon 5 Encyclopedia</a>
has been uploaded.
<li> <a href="http://www.uml.edu/Babylon-5/GEnie/">JMS GEnie messages</a>
from the second half of September have been uploaded.
<li> The
<a href="/ftp/pub/TV/Sci-Fi-Channel/sfcjan95">January 1995</a>
edition of the
<a href="/ftp/pub/TV/Sci-Fi-Channel/">Sci-Fi Channel schedule</a>
is available on the ftp server, as is the
<a href="/ftp/pub/TV/Sci-Fi-Channel/sfcblock1q95">block program
schedule</a> for the first quarter of 1995.
</ul>
<p>
<dt>December 26, 1994
<dd>
<ul>
<li> <a href="http://www.uml.edu/Babylon-5/GEnie/">JMS GEnie messages</a>
from October 1 through December 15 have been uploaded.
</ul>
<p>
<dt>December 25, 1994
<dd>
<ul>
<li> Fixed the
<a href="countries/">foreign episode schedules</a>
so the "to the episode list" links in guide pages accessed from them
will lead back to the appropriate country's schedule rather than
the US one.
</ul>
<p>
<dt>December 22, 1994
<dd>
<ul>
<li> The list of
<a href="/lurk/ftp/b5tvaddresses.txt">TV station addresses</a>
on the ftp server has been updated.
</ul>
<p>
<dt>December 21, 1994
<dd>
<ul>
<li> Hyperion has moved its Web server to a faster host. All the URLs
should stay the same;
<a href="/cgi-bin/feedback?who=webmaster&what=Trouble&where=/lurk/whatsnew.html">send us mail</a>
if you see problems. The old server will continue to work for a
few days as well.
</ul>
<p>
<dt>December 20, 1994
<dd>
<ul>
<li> A
<a href="synops/029.html">synopsis</a>
of
<a href="guide/029.html">"Soul Mates"</a>
is available.
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/029">results</a>
for
<a href="guide/029.html">"Soul Mates"</a>
are online.
<li> A list of
<a href="/lurk/ftp/b5tvaddresses.txt">TV station addresses</a>
(a work in progress) is available on the ftp server.
</ul>
<p>
<dt>December 19, 1994
<dd>
<ul>
<li> Updated the
<a href="misc/uk-eplist.html">UK air schedule</a>
to reflect the start of season two in February 1995.
</ul>
<p>
<dt>December 16, 1994
<dd>
<ul>
<li> The Guide has an even newer title picture, thanks to
<a href="http://www.eit.com/">EIT</a>'s talented digital artist
<a href="http://www.eit.com/people/scott.html">Scott Brisko.</a>
Netscape users get an added bonus to make up for the browser's
meddlesome dithering.
<li> The
<a href="credits/029">onscreen credits</a>
for
<a href="guide/029.html">"Soul Mates"</a>
have been uploaded.
</ul>
<p>
<dt>December 13, 1994
<dd>
<ul>
<li> New versions of the <cite>Young Indiana Jones Chronicles</cite>
<a href="/ftp/pub/TV/young-indy-guide">guide</a>
and
<a href="/ftp/pub/TV/young-indy-suppl">supplement</a>
are available on the ftp server.
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/028">results</a>
for
<a href="guide/028.html">"A Spider in the Web"</a>
are online.
<li> Transcripts of two potentially important scenes from
<a href="guide/004.html">"Infection"</a>
and
<a href="guide/005.html">"The Parliament of Dreams"</a>
are available.
</ul>
<p>
<dt>December 11, 1994
<dd>
<ul>
<li> A
<a href="synops/028.html">synopsis</a>
of
<a href="guide/028.html">"A Spider in the Web"</a>
is available.
</ul>
<p>
<dt>December 9, 1994
<dd>
<ul>
<li> A list of Babylon 5
<a href="/lurk/ftp/sponsors.txt">sponsors</a>
based on an informal survey of four season-two episodes is available.
</ul>
<p>
<dt>December 8, 1994
<dd>
<ul>
<li> The guide to the
<a href="comic/index.html">comic series</a>
has been expanded, with a synopsis and guide page for the first
issue,
<a href="comic/001.html">"In Darkness Find Me."</a>
<li> A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction Television
Upcoming Episodes Schedule</a>
is available on the ftp server.
<li> A
<a href="synops/027.html">synopsis</a>
of
<a href="guide/027.html">"The Long Dark"</a>
is available.
<li> The
<a href="credits/028">onscreen credits</a>
for
<a href="guide/028.html">"A Spider in the Web"</a>
have been uploaded.
</ul>
<p>
<dt>December 6, 1994
<dd>
<ul>
<li> Added more ordering information for the limited-edition
<a href="production.html#cd">soundtrack CD.</a>
<li> A new version of the UNIX
<a href="/lurk/ftp/B5quotes.tar">B5 quote generator</a>
has been uploaded, and its
<a href="http://www.reed.edu/~horde/b5/b5quote.html">FAQ</a>
has been updated.
</ul>
<p>
<dt>December 5, 1994
<dd>
<ul>
<li> The
<a href="/ftp/pub/TV/Sci-Fi-Channel/sfcdec.94">December 1994</a>
edition of the
<a href="/ftp/pub/TV/Sci-Fi-Channel/">Sci-Fi Channel schedule</a>
is available on the ftp server.
</ul>
<p>
<dt>December 1, 1994
<dd>
<ul>
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/026">results</a>
for
<a href="guide/026.html">"A Distant Star"</a>
are online.
<li> A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server.
</ul>
<p>
<dt>November 30, 1994
<dd>
<ul>
<li> The
<a href="credits/027">onscreen credits</a>
for
<a href="guide/027.html">"The Long Dark"</a>
have been uploaded.
<li> The most recent week's worth of
<a href="/lurk/ftp/GEnie/">JMS GEnie messages</a>
have been uploaded.
<li> A
<a href="synops/026.html">synopsis</a>
of
<a href="guide/026.html">"A Distant Star"</a>
is available.
<li> A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction Television
Upcoming Episodes Schedule</a>
is available on the ftp server.
</ul>
<p>
<dt>November 25, 1994
<dd>
<ul>
<li> The guide page for
<a href="guide/026.html">"A Distant Star"</a>
has been updated.
</ul>
<p>
<dt>November 24, 1994
<dd>
<ul>
<li> An air schedule for
<a href="misc/au-eplist.html">Australia</a>
is available. <cite>Babylon 5</cite> starts on November 30 at 8:30PM
on the Seven Network.
<li> The
<a href="credits/026">onscreen credits</a>
for
<a href="guide/026.html">"A Distant Star"</a>
have been uploaded.
</ul>
<p>
<dt>November 22, 1994
<dd>
<ul>
<li> An updated guide page for
<a href="guide/009.html">"Deathwalker"</a>
is online, thanks to Dave Zimmerman
<<i>[email protected]</i>>.
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/024">results</a>
for
<a href="guide/024.html">"Revelations"</a>
are online, as are the
<a href="p5/025">results</a>
for
<a href="guide/025.html">"The Geometry of Shadows."</a>
An updated
<a href="p5/summary.html">summary</a>
of the season-one results (up to
<a href="guide/021.html">"The Quality of Mercy"</a>)
is also available.
</ul>
<p>
<dt>November 21, 1994
<dd>
<ul>
<li> New versions of the
<a href="/lurk/ftp/cast.txt">cast</a>
and
<a href="/lurk/ftp/character.txt">character</a>
lists are available.
<li> A
<a href="/lurk/synops/025.html">synopsis</a>
of
<a href="/lurk/guide/025.html">"The Geometry of Shadows"</a>
is online.
</ul>
<p>
<dt>November 17, 1994
<dd>
<ul>
<li> The
<a href="credits/025">onscreen credits</a>
for
<a href="guide/025.html">"The Geometry Of Shadows"</a>
have been uploaded.
</ul>
<p>
<dt>November 15, 1994
<dd>
<ul>
<li> Fleshed out the guide page for
<a href="guide/025.html">"The Geometry of Shadows"</a>
(as usual, more will be added over time.)
</ul>
<p>
<dt>November 14, 1994
<dd>
<ul>
<li> A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction Television
Upcoming Episodes Schedule</a>
is available on the ftp server.
</ul>
<p>
<dt>November 13, 1994
<dd>
<ul>
<li> Added guide pages for several more episodes and updated the airing
order on the <a href="episodes.php">episode list.</a>
</ul>
<p>
<dt>November 12, 1994
<dd>
<ul>
<li> The following episodes' synopses are now illustrated:
<ul>
<li> <a href="/lurk/guide/022.html">"Chrysalis"</a>
<li> <a href="/lurk/guide/023.html">"Points of Departure"</a>
<li> <a href="/lurk/guide/024.html">"Revelations"</a>
</ul>
</ul>
<p>
<dt>November 11, 1994
<dd>
<ul>
<li> A
<a href="/lurk/synops/024.html">synopsis</a>
of
<a href="/lurk/guide/024.html">"Revelations"</a>
is online.
<li> A couple weeks' worth of new
<a href="/lurk/ftp/CompuServe/">JMS CompuServe messages</a>
have been uploaded to the ftp server.
</ul>
<p>
<dt>November 10, 1994
<dd>
<ul>
<li> Hyperion is now home to
<a href="ftp://ftp.netcom.com/pub/regina/home.html">Regina di
Gualco</a>'s
<a href="/ba/sfbay.html">Web Guide to the San Francisco Bay Area.</a>
<li> The
<a href="credits/024">onscreen credits</a>
for
<a href="guide/024.html">"Revelations"</a>
have been uploaded.
</ul>
<p>
<dt>November 9, 1994
<dd>
<ul>
<li> A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server. It has been updated for season two and
rearranged somewhat.
<li> New versions of the UK episode guide
(<a href="/lurk/ftp/uk-epguide.txt">text</a>
and
<a href="/lurk/ftp/uk-amigaguide.lha">AmigaGuide</a>
versions, the latter with an accompanying
<a href="/lurk/ftp/uk-amigaguide.readme">readme file</a>)
are available.
</ul>
<p>
<dt>November 8, 1994
<dd>
<ul>
<li> The past week's worth of JMS'
<a href="/lurk/ftp/GEnie/">GEnie messages</a>
are on the ftp server. (No, I don't know when more will be
uploaded.)
</ul>
<p>
<dt>November 6, 1994
<dd>
<ul>
<li> A
<a href="/lurk/synops/023.html">synopsis</a>
of
<a href="/lurk/guide/023.html">"Points of Departure"</a>
is online.
<li> Fleshed out the guide page for
<a href="/lurk/guide/024.html">"Revelations"</a>
(more will be added over time.)
<li> New versions of the
<a href="/lurk/ftp/cast.txt">cast</a>
and
<a href="/lurk/ftp/character.txt">character</a>
lists are online.
</ul>
<p>
<dt>November 4, 1994
<dd>
<ul>
<li> The Lurker's Guide has a new logo, thanks to J. J. Franzen
<code><[email protected]></code>. Let me (and him)
know what you think.
</ul>
<p>
<dt>November 3, 1994
<dd>
<ul>
<li> The
<a href="credits/023">onscreen credits</a>
for
<a href="guide/023.html">"Points of Departure"</a>
have been uploaded.
</ul>
<p>
<dt>November 1, 1994
<dd>
<ul>
<li> <a href="p5/intro.html">Poll 5</a> <a href="p5/022">results</a>
for
<a href="guide/022.html">"Chrysalis"</a>
are online.
</ul>
<p>
<dt>October 31, 1994
<dd>
<ul>
<li> A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction Television
Upcoming Episodes Schedule</a>
is available on the ftp server.
</ul>
<p>
<dt>October 30, 1994
<dd>
<ul>
<li> Fleshed out the guide page for
<a href="guide/023.html">"Points of Departure"</a>
(though more will be added over time.)
<li> A final version of the
<a href="misc/b5-appearances1.html">season 1 appearances chart</a>
is available, as is a preliminary chart for
<a href="misc/b5-appearances2.html">season 2.</a>
<li> The November
<a href="/ftp/pub/TV/Sci-Fi-Channel/sfcnov94">Sci-Fi Channel
schedule</a>
has been uploaded to the ftp server.
<li> New versions of the
<a href="/lurk/ftp/cast.txt">cast</a>
and
<a href="/lurk/ftp/character.txt">character</a>
lists are online.
</ul>
<p>
<dt>October 29, 1994
<dd>
<ul>
<li> A new
<a href="universe-2.html">Universe and Characters</a>
page is now online for season two.
<li> The season-two
<a href="misc/monologues.html#2">opening monologue</a>
has been transcribed.
</ul>
<p>
<dt>October 27, 1994
<dd>
<ul>
<li> AutoCAD versions of the
<a href="/lurk/ftp/Models/">models</a>
from the ftp server are now available.
<li> A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server.
</ul>
<p>
<dt>October 26, 1994
<dd>
<ul>
<li> The
<a href="credits/022">onscreen credits</a>
for
<a href="guide/022.html">"Chrysalis"</a>
have been uploaded.
<li> Some new
<a href="/lurk/ftp/CompuServe/">CompuServe messages</a>
from JMS have been uploaded. The messages from the second half of
September have been saved off to a separate file.
</ul>
<p>
<dt>October 21, 1994
<dd>
<ul>
<li> A separate page for the <cite>Babylon 5</cite>
<a href="comic.html">comic series</a>
has been started. Eventually it will turn into a page similar to the
<a href="episodes.php">episode list.</a>
</ul>
<p>
<dt>October 18, 1994
<dd>
<ul>
<li> New versions of the
<a href="/lurk/ftp/b5tvlist.txt">PTEN Station List</a>
and
<a href="/lurk/ftp/uk-epguide.txt">UK Episode Guide</a>
have been placed on the ftp server.
<li> <a href="http://www.hyperion.com/~koreth/uncgi.html">Un-CGI</a>
version 1.2 is available. It supports multiple form selections with
the same element name (e.g. the <select multiple> tag.)
</ul>
<p>
<dt>October 17, 1994
<dd>
<ul>
<li> New versions of the <cite>Young Indiana Jones Chronicles</cite>
<a href="/ftp/pub/TV/young-indy-guide">episode guide</a>
and
<a href="/ftp/pub/TV/young-indy-suppl">supplement</a>
are available on the ftp server.
</ul>
<p>
<dt>October 16, 1994
<dd>
<ul>
<li> Added links to
<a href="misc/warprayer.html">Mark Twain's "The War Prayer"</a>
to the
<a href="guide/007.html">guide page</a>
for the episode of the same name, and to the
<a href="production.html#lit">literary and historical references</a>
section of the
<a href="production.html">"Making of <cite>Babylon 5</cite>"</a>
page.
</ul>
<p>
<dt>October 15, 1994
<dd>
<ul>
<li> <a href="/usx/">The Used Software Exchange</a>
is now open for business. If you have old software you want to get
rid of, stop by and enter it into the database.
</ul>
<p>
<dt>October 14, 1994
<dd>
<ul>
<li> A
<a href="/lurk/synops/022.html">synopsis</a>
of
<a href="/lurk/guide/022.html">"Chrysalis"</a>
is online.
<li> Reworked the
<a href="episodes.php">episode list</a>
a little bit so it's more useful for people looking for a list
of upcoming episodes, and looks a bit nicer too (I hope.)
</ul>
<p>
<dt>October 13, 1994
<dd>
<ul>
<li> A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server.
<li> A page about the
<a href="http://www.hyperion.com/~koreth/israel/sinai.html">Sinai Peninsula</a>,
part of the presentation about my visit to
<a href="http://www.hyperion.com/~koreth/israel/">Israel</a>,
is online.
<li> <a href="misc/sg-eplist.html">Singapore</a>,
like the UK, won't be getting
<a href="guide/014.html">"TKO."</a>
The air schedule has been adjusted accordingly.
</ul>
<p>
<dt>October 7, 1994
<dd>
<ul>
<li>
A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction Television
Upcoming Episodes Schedule</a>
is available on the ftp server.
</ul>
<p>
<dt>October 4, 1994
<dd>
<ul>
<li>
Now running NCSA httpd 1.3. You shouldn't notice any difference.
</ul>
<p>
<dt>October 3, 1994
<dd>
<ul>
<li>
Fleshed out the guide page for
<a href="guide/022.html">"Chrysalis"</a>
thanks to a diligent UK viewer who shall remain anonymous.
</ul>
<p>
<dt>October 2, 1994
<dd>
<ul>
<li>
The following episode synopses now contain inline images.
<ul>
<li> <a href="synops/020.html">"Babylon Squared"</a>
<li> <a href="synops/021.html">"The Quality of Mercy"</a>
</ul>
</ul>
<p>
<dt>September 26, 1994
<dd>
<ul>
<li>
A page about
<a href="http://www.hyperion.com/~koreth/israel/caesarea.html">Caesarea</a>
is online, the first of the pages with photos from a vacation to Israel.
<li>
The
<a href="/usx/">Used Software Exchange</a>
is now in beta-test. Play around with it and report any problems
you see.
</ul>
<p>
<dt>September 25, 1994
<dd>
New on the
<a href="/lurk/ftp/">FTP server</a>:
<ul>
<li>
An update to the file of JMS message regarding
<a href="/lurk/ftp/OHare.Leave">Michael O'Hare's departure</a>.
<li>
A new version of the
<a href="/lurk/ftp/b5_jms_answers.txt">JMS answers file</a>.
<li>
A list of
<a href="/lurk/ftp/jms.credentials">other works</a>
by JMS.
</ul>
<p>
<dt>September 22, 1994
<dd>
<ul>
<li>
A hypertext guide to <cite>Time Trax</cite>,
<a href="/trax/">Transmission Tone</a>,
is now available.
<p>
</ul>
New on the
<a href="/lurk/ftp/">FTP server</a>:
<ul>
<li>
<a href="/lurk/ftp/GEnie/">JMS GEnie messages</a>
for the second half of May, all of August, and the first half of
September.
<li>
A new version of the
<a href="/lurk/ftp/b5tvlist.txt">PTEN Station List</a>.
<li>
A copy of the
<a href="/ftp/pub/TV/sp2040">press release</a>
about the new Gerry Anderson series, "Space Precinct 2040."
<li>
A new version of the
<a href="/ftp/pub/TV/sftv-sched">Science Fiction TV Shows
Upcoming Episodes</a> list.
</ul>
<p>
<dt>September 19, 1994
<dd>
New on the
<a href="/lurk/ftp/">FTP server</a>:
<ul>
<li>
<a href="/lurk/ftp/Usenet/">JMS Usenet articles</a>
from July through mid-September 1994.
<li>
Updates to the
<a href="/lurk/ftp/cast.txt">cast</a>
and
<a href="/lurk/ftp/character.txt">character</a>
lists.
<li>
A
<a href="/lurk/ftp/b5quick.bin">MacBinary version</a>
of the QuickTime movie (with short effects clips from
"The Gathering"). It's the same movie as before, just easier
to decode for Mac users. The old version is still available.
</ul>
<p>
<dt>September 15, 1994
<dd>
<ul>
<li>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server. The changes (marked in the file) have
been incorporated into the Lurker's Guide.
</ul>
<p>
<dt>September 13, 1994
<dd>
<ul>
<li>
Matt Ryan's guide page for
<a href="guide/008.html">"And the Sky Full of Stars"</a>
is online. It's actually three pages since there's so much in
the episode.
<br>
I'm still looking for someone to fill Matt's shoes -- follow the
link at the top of this page if you think you're up to it.
</ul>
<p>
<dt>September 12, 1994
<dd>
<ul>
<li>
Added a note about the season-two
<a href="misc/monologues.html">opening monologue</a>
from a JMS GEnie message.
<li>
For Amiga users, some models of a few Babylon 5 ships in Imagine format,
along with sample renderings in JPEG, have been uploaded to the
<a href="/lurk/ftp/Models/">ftp server</a>.
<li>
A new version of the
<a href="misc/write-direct.html">Writers/Directors List</a>
is online.
</ul>
<p>
<dt>September 11, 1994
<dd>
<ul>
<li>
Moved the collection of
<a href="/lurk/ftp/CompuServe/">JMS CompuServe messages</a>
dated
<a href="/lurk/ftp/CompuServe/cs94-09-01">August 24 - September 11</a>
to its own file, since the scratch area where the messages collect
was growing pretty large.
<li>
Wrote a
<a href="synops/021.html">synopsis</a>
of
<a href="guide/021.html">"The Quality of Mercy"</a>
(the one episode Matthew Murray didn't catch on tape, as luck would have it.)
</ul>
<p>
<dt>September 7, 1994
<dd>
<ul>
<li>
A new version of the
<a href="/lurk/ftp/uk-epguide.txt">UK Episode Guide</a>
text file has been uploaded. It is also available in
<a href="/lurk/ftp/uk-amigaguide.lha">AmigaGuide</a>
format (compressed with the LHA archiver) for Amiga users.
<li>
A new version of the
<a href="/ftp/pub/TV/timetrax.txt"><cite>Time Trax</cite> Episode Guide</a>
is available.
</ul>
<p>
<dt>September 5, 1994
<dd>
<ul>
<li>
Roughly 50 new pictures have been added to the various pages about my
<a href="http://www.hyperion.com/~koreth/russia/">visit to Russia</a>.
A shorter presentation about
<a href="http://www.hyperion.com/~koreth/israel/">Israel</a>
is in the works.
</ul>
<p>
<dt>September 3, 1994
<dd>
<ul>
<li>
Added some new episode titles from JMS to the
<a href="episodes.php">episode list</a>
page, as well as some more information about
<a href="chars/sheridan.html">Captain Sheridan</a>.
</ul>
<p>
<dt>September 2, 1994
<dd>
<ul>
<li>
A new version of the
<a href="/lurk/ftp/babylon-5-faq">Babylon 5 FAQ List</a>
is available on the ftp server. Some of the changes have
been incorporated into the Lurker's Guide.
</ul>
<p>
<dt>August 31, 1994
<dd>
<ul>
<li>
A new version of the text-only
<a href="/lurk/ftp/b5encyc.txt">Babylon 5 Encyclopedia</a>
has been uploaded. See also the
<a href="http://web.uml.edu/Babylon-Enc/enc.html">hypertext version</a>.
</ul>
<p>
<dt>August 30, 1994
<dd>
<ul>
<li>
Channel 4 in the UK seems to be following the US airing order after all.
The
<a href="misc/uk-eplist.html">UK</a>
and
<a href="misc/sg-eplist.html">Singapore</a>
air schedules have been updated accordingly.
</ul>
<p>
<dt>August 29, 1994
<dd>
<ul>
<li>
Please join me in welcoming Matthew Murray, <i>[email protected]</i>,
to the Guide. He'll be writing the synopses for year two. To kick things
off, he has written a
<a href="synops/020.html">synopsis</a>
of
<a href="guide/020.html">"Babylon Squared"</a>.
</ul>
<p>
<dt>August 28, 1994
<dd>
<ul>
<li>
Updated the
<a href="episodes.php">US episode list</a>
with new season-two airing information from JMS, and created new guide
pages for five more episodes (currently containing nothing but writing
and directing credits.)
<li>
The first collection of JMS messages from
<a href="/lurk/ftp/CompuServe/index.html">CompuServe</a>
are on the ftp server.
</ul>
<p>
<dt>August 27, 1994
<dd>
<ul>
<li>
Added a link to some information about the new commander,
<a href="chars/sheridan.html">Captain Sheridan</a>,
from JMS.
<li>
Wrote a
<a href="synops/016.html">synopsis</a>
for
<a href="guide/016.html">"Eyes"</a>
and fleshed out its guide page a bit.
</ul>
<p>
<dt>August 26, 1994
<dd>
<ul>
<li>
Added a bunch of JMS postings from Compuserve about
<a href="guide/021.html">"The Quality of Mercy"</a>
to its guide page. Also a brief one on
<a href="guide/020.html">"Babylon Squared"</a>.
<li>
A short QuickTime movie with some effects sequences from the pilot is
available on the
<a href="/lurk/ftp/index.html">ftp server</a>. It was uploaded to CompuServe
by someone at Warner Bros.
</ul>
<p>
<dt>August 25, 1994
<dd>
<ul>
<li>
A new version of the
<a href="/lurk/ftp/uk-epguide.txt">UK Episode Guide</a>
text file has been uploaded. It is also available in
<a href="/lurk/ftp/uk-amigaguide.lha">AmigaGuide</a>
format (compressed with the LHA archiver) for Amiga users.
</ul>
<p>
<dt>August 23, 1994
<dd>
<ul>
<li>
<a href="/lurk/p5/intro.html">Poll 5</a>
<a href="/lurk/p5/021">results</a>
for
<a href="guide/021.html">"The Quality of Mercy"</a>
have been announced.
</ul>
<p>
<dt>August 21, 1994
<dd>