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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
|
<!DOCTYPE html>
<head>
<title>Nem's Tools [Home - News]</title>
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="../css/default.css">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta name="author" content="Ryan Gregg">
<meta name="description" content="Nem's Half-Life and Half-Life 2 editing tools.">
</head>
<body>
<div class="banner" onclick="location.href='https://google.com'"> </div>
<div class="archived">This is archived copy of currently unavailable <a href="http://nemesis.thewavelength.net">Nem's
Tools website</a>, restored from <a
href="https://web.archive.org/web/20191202151405/http://www.nemesis.thewavelength.net/">Web Archive</a>. <br>
Download section now provides links to both Web Archive and to unofficial Github mirror.
</div>
<div class="main">
<div class="group">
<div class="separator"></div>
<div class="heading2 menu">
<a href="../index.html" class="menuitem">Home</a>
<a href="../pages/GCFScape.html" class="menuitem">GCFScape</a>
<a href="../pages/Crafty.html" class="menuitem">Crafty</a>
<a href="../pages/VTFLib.html" class="menuitem">VTFLib</a>
<a href="../pages/Batch_Compiler.html" class="menuitem">Batch Compiler</a>
<a href="../pages/Terrain_Generator.html" class="menuitem">Terrain Generator</a>
<a href="../pages/BSP_Viewer.html" class="menuitem">BSP Viewer</a>
<a href="../pages/MAP_Viewer.html" class="menuitem">MAP Viewer</a>
<a href="../pages/virtuAMP.html" class="menuitem">virtuAMP</a>
<a href="../pages/Miscellaneous.html" class="menuitem">Miscellaneous</a>
</div>
<div class="separator"></div>
<div class="content">
<div class="main_area">
<div class="space"></div>
<div class="main_content">
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p277"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=277#p277">GCFScape
v1.8.6</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 22nd, 2017 - 7:27:47 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Modified VPK file support to handle the removal of a null terminator from the
end of the directory.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.4.6.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=277#p277">10
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p276"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=276#p276">GCFScape
v1.8.5</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Oct 18th, 2013 - 3:37:27 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for new SGA file format (v6).</li>
<li><b>GCFScape</b> - Added support for new SGA file format (v7).</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.4.5.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=276#p276">25
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p275"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=275#p275">GCFScape
v1.8.4</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 28th, 2013 - 4:47:14 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Fixed support for VPK file format (v1).</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.4.4.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=275#p275">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p274"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=274#p274">GCFScape
v1.8.3</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 18th, 2012 - 11:59:31 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for new VPK file format (v2).</li>
<li><b>GCFScape</b> - Added SGA file support.</li>
<li><b>GCFScape</b> - Added ZIP deflate support.</li>
<li><b>GCFScape</b> - Fixed crash when opening VBSP files with no pak file lump.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.4.3.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=274#p274">7
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p271"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=271#p271">GCFScape
v1.8.2</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 2nd, 2010 - 1:25:27 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for GCF files larger than 4 GB.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.4.0.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=271#p271">10
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p269"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=269#p269">GCFScape
v1.8.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Aug 8th, 2010 - 3:38:14 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added Batch Validation tool.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=269#p269">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p264"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=264#p264">GCFScape
v1.8.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 18th, 2010 - 1:53:30 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for x64.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.3.0.</li>
<li><b>GCFScape</b> - Fixed crash on shutdown.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=264#p264">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p261"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=261#p261">GCFScape
v1.7.5</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Dec 12th, 2009 - 4:11:55 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for packages larger than 4 GB.</li>
<li><b>GCFScape</b> - Added Open Containing Folder to context menu.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.2.0.</li>
<li><b>GCFScape</b> - Fixed formatting of "Items" in the Properties form.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=261#p261">8
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p260"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=260#p260">GCFScape
v1.7.4</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 22nd, 2009 - 7:30:09 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.1.2.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=260#p260">6
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p258"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=258#p258">GCFScape
v1.7.3</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 27th, 2009 - 8:17:40 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.1.1.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=258#p258">6
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p257"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=257#p257">GCFScape
v1.7.2</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 19th, 2009 - 2:43:54 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Fixed a crash sorting columns when opening a file of a different type than a
previously opened file.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=257#p257">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p253"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=253#p253">GCFScape
v1.7.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 23rd, 2008 - 7:44:31 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.1.0.</li>
<li><b>GCFScape</b> - Added VPK file support.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=253#p253">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p252"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=252#p252">GCFScape
v1.7.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Aug 23rd, 2008 - 4:28:42 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.11.</li>
<li><b>GCFScape</b> - Fixed support for files over 2 GB.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=252#p252">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p251"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=251#p251">GCFScape
v1.6.9</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jul 28th, 2008 - 10:46:17 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added Fragmentation Report tool.</li>
<li><b>GCFScape</b> - Added Batch Defragment tool.</li>
<li><b>GCFScape</b> - Added regular expression matching.</li>
<li><b>GCFScape</b> - Added Disable Warnings option.</li>
<li><b>GCFScape</b> - Fixed wildcard matching.</li>
<li><b>GCFScape</b> - Splitters now remember their locations.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=251#p251">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p250"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=250#p250">GCFScape
v1.6.8</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 18th, 2008 - 5:47:13 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.10.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=250#p250">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p247"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=247#p247">GCFScape
v1.6.7</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Apr 2nd, 2008 - 7:02:07 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added program selection for unassociated file types.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.9.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=247#p247">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p243"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=243#p243">GCFScape
v1.6.6</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 28th, 2007 - 12:23:51 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.8.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=243#p243">5
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p242"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=242#p242">GCFScape
v1.6.5</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 18th, 2007 - 12:22:55 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added NCF path auto setting and clearing.</li>
<li><b>GCFScape</b> - Added file type icon to properties dialog.</li>
<li><b>GCFScape</b> - Added close to File menu.</li>
<li><b>GCFScape</b> - Added clear history to Recent Files menu.</li>
<li><b>GCFScape</b> - Added validate to Tools menu.</li>
<li><b>GCFScape</b> - Added error message for failed associations/disassociations.</li>
<li><b>GCFScape</b> - Improved performance.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=242#p242">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p229"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=229#p229">GCFScape
v1.6.4</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 15th, 2007 - 8:02:29 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added additional search features.</li>
<li><b>GCFScape</b> - Added the ability to associate GCFScape with various formats.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.7.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=229#p229">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p220"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=220#p220">GCFScape
v1.6.3</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 9th, 2007 - 9:32:50 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added configurable columns for custom properties.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.6.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=220#p220">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p218"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=218#p218">GCFScape
v1.6.2</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 26th, 2006 - 1:53:37 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Fixed bug in GCF file defragmentation progress.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.4.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=218#p218">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p217"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=217#p217">GCFScape
v1.6.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 12th, 2006 - 1:13:06 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added NCF file support.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.3.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=217#p217">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p215"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=215#p215">GCFScape
v1.6.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 10th, 2006 - 4:42:19 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added the ability to defragment GCF files.</li>
<li><b>GCFScape</b> - Added check for missing recent files.</li>
<li><b>GCFScape</b> - Fixed initial menu item state bug.</li>
<li><b>GCFScape</b> - Fixed potential threading synchronization bug.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.2.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=215#p215">Comment</a>
]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p210"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=210#p210">GCFScape
v1.5.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 5th, 2006 - 5:06:36 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added the ability to pause extraction and validation.</li>
<li><b>GCFScape</b> - Improved drag & drop functionality.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.1.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=210#p210">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p207"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=207#p207">GCFScape
v1.5.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Aug 27th, 2006 - 7:30:42 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added the ability to validate packages.</li>
<li><b>GCFScape</b> - Improved accessibility to package and item attributes.</li>
<li><b>GCFScape</b> - Improved progress dialog.</li>
<li><b>GCFScape</b> - Improved default setting selection.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v2.0.0.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=207#p207">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p175"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=175#p175">GCFScape
v1.4.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 9th, 2006 - 3:25:38 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.8.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=175#p175">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p170"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=170#p170">GCFScape
v1.4.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jan 17th, 2006 - 8:30:52 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Upgraded to .NET v2.0.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.7.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=170#p170">Comment</a>
]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p166"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=166#p166">GCFScape
v1.3.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 15th, 2005 - 1:26:34 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Improved extraction progress form.</li>
<li><b>GCFScape</b> - Fixed properties form refresh bug.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=166#p166">5
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p162"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=162#p162">GCFScape
v1.3.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 15th, 2005 - 1:13:33 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added Completion attribute to properties form.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.6.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=162#p162">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p147"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=147#p147">GCFScape
v1.2.9</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 15th, 2005 - 5:59:27 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for shell icons and descriptions.</li>
<li><b>GCFScape</b> - Improved .wad file support.</li>
<li><b>GCFScape</b> - Various optimizations.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.5.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=147#p147">7
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p146"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=146#p146">GCFScape
v1.2.8</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 3rd, 2005 - 10:48:53 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for wildcards in search strings.</li>
<li><b>GCFScape</b> - Added support for Windows temporary folders.</li>
<li><b>GCFScape</b> - Improved detection of corrupt packages.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.4.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=146#p146">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p145"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=145#p145">GCFScape
v1.2.7</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Feb 26th, 2005 - 3:10:54 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added multiple file selection.</li>
<li><b>GCFScape</b> - Improved drag & drop functionality.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=145#p145">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p129"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=129#p129">GCFScape
v1.2.6</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Feb 5th, 2005 - 2:30:54 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added volatile access mode.</li>
<li><b>GCFScape</b> - Files of size 0 B are now treated as valid files.</li>
<li><b>GCFScape</b> - Upgraded to HLLib v1.1.3.</li>
<li><b>GCFScape</b> - Updated Nem's Tools link.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=129#p129">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p128"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=128#p128">GCFScape
v1.2.5</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 30th, 2004 - 7:42:23 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added Verbose console output mode. (Slows down extracting.)</li>
<li><b>GCFScape</b> - Added disable file mapping option.</li>
<li><b>GCFScape</b> - Incomplete files are now grayed.</li>
<li><b>GCFScape</b> - HLLib improvements.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=128#p128">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p127"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=127#p127">GCFScape
v1.2.4</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Nov 11th, 2004 - 11:32:25 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added tool bar.</li>
<li><b>GCFScape</b> - Added address bar.</li>
<li><b>GCFScape</b> - Added back, forward and up buttons.</li>
<li><b>GCFScape</b> - Added support for back and forward mouse buttons.</li>
<li><b>GCFScape</b> - Encrypted files are now grayed.</li>
<li><b>GCFScape</b> - Other GUI improvements.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=127#p127">5
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p121"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=121#p121">GCFScape
v1.2.3</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 30th, 2004 - 6:47:22 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - HLLib fixes.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=121#p121">5
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p117"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=117#p117">GCFScape
v1.2.2</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 17th, 2004 - 11:45:15 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Workaround for .NET FolderBrowserDialog bug.</li>
<li><b>GCFScape</b> - Forced garbage collection.</li>
<li><b>GCFScape</b> - HLLib fixes.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=117#p117">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p114"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=114#p114">GCFScape
v1.2.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 8th, 2004 - 6:15:36 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for BSP packages.</li>
<li><b>GCFScape</b> - Double clicking a file shell executes it.</li>
<li><b>GCFScape</b> - Added ability to look up extensions in registry.</li>
<li><b>GCFScape</b> - Fixed HLLib initialization bug.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=114#p114">2
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p111"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=111#p111">GCFScape
v1.2.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 5th, 2004 - 8:48:49 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Reprogrammed to use HLLib.</li>
<li><b>GCFScape</b> - Added support for PAK and WAD packages.</li>
<li><b>GCFScape</b> - Column headers can sort listbox items.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=111#p111">7
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p109"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=109#p109">GCFScape
v1.1.6</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Sep 3rd, 2004 - 7:37:45 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Altered file mapping algorithm to map small blocks instead of one large one.
</li>
<li><b>GCFScape</b> - Added checks for invalid Windows directory names.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=109#p109">8
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p102"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=102#p102">GCFScape
v1.1.5</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jul 26th, 2004 - 3:34:11 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Removed Beta status.</li>
<li><b>GCFScape</b> - Added property form.</li>
<li><b>GCFScape</b> - Removed 'Local Copy' column.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=102#p102">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p98"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=98#p98">GCFScape
v1.1.4</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jul 8th, 2004 - 10:44:34 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added support for version 3 GCF files.</li>
<li><b>GCFScape</b> - Added new panel in status bar which displays the GCF version number.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=98#p98">3
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p96"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=96#p96">GCFScape
v1.1.3</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 30th, 2004 - 10:39:59 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Figured out GCF versioning and added support for versions 5 and 6.</li>
<li><b>GCFScape</b> - Improved error handling.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=96#p96">6
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p94"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=94#p94">GCFScape
v1.1.2</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 22nd, 2004 - 11:01:58 am</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Modified the program to allow it to work with a Steam update (June 21, 2004).
</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=94#p94">4
Comments</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p91"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=91#p91">GCFScape
v1.1.1</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Jun 17th, 2004 - 3:01:08 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Modified the program to allow it to work with a Steam update (June 16, 2004).
</li>
<li><b>GCFScape</b> - Added 'Local Copy' column. If true a local copy of the file should exist on your
hard drive.</li>
<li><b>GCFScape</b> - Added 'Go To Directory' button. This will allow users to find the directory a
search result is located in.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=91#p91">1
Comment</a> ]</span>
<div class="space"></div>
</div>
</div><br>
<div class="group">
<div class="heading1">
<div class="space"></div><span class="left"><a name="p80"
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=80#p80">GCFScape
v1.1.0</a> - <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><span
class="right">Posted: Mar 10th, 2004 - 1:49:57 pm</span>
<div class="space"></div>
</div>
<div class="content">
<ul>
<li><b>GCFScape</b> - Added the ability to search for files within a GCF file.</li>
<li><b>GCFScape</b> - Added extraction progress bar and abort button.</li>
<li><b>GCFScape</b> - Added the ability to select and extract multiple items in the list box.</li>
<li><b>GCFScape</b> - Extracting several items no longer visually locks up GCFScape.</li>
<li><b>GCFScape</b> - GCFScape now remembers its position, window state and last extraction directory.
</li>
<li><b>GCFScape</b> - Fixed bug which cased crash when shell executing a file without a default
application.</li>
</ul>
</div>
<div class="heading1">
<div class="space"></div><span class="left"></span><span class="right">[ <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=80#p80">7
Comments</a> ]</span>
<div class="space"></div>
</div>
</div>
</div>
<div class="main_sidebar">
<div class="group">
<div class="heading1"><span class="title">GCFScape</span></div>
<div class="content"><span class="title">» <a href="../pages/GCFScape.html">About</a></span><br>
<span class="title">» <a href="../pages/GCFScape-Download.html">Download</a></span><br>
<span class="title">» <a href="GCFScape-Revision_History.html">Revision
History</a></span><br>
<span class="title">» <a href="GCFScape-FAQ.html">FAQ</a></span><br>
<span class="title">» <a href="GCFScape-GCF_File_Format.html">GCF
File Format</a></span><br></div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Login</span></div>
<div class="content">
<form name="loginform" method="post"
action="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?p=29">
<div class="label">Username:</div>
<div><input type="text" name="username" class="textbox" autocomplete="off"
style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC"); background-repeat: no-repeat; background-attachment: scroll; background-size: contain; background-position: 98% 50%;">
</div>
<div class="label">Password:</div>
<div><input type="password" name="password" class="textbox" autocomplete="off"
style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC"); background-repeat: no-repeat; background-attachment: scroll; background-size: contain; background-position: 98% 50%;">
</div>
<div class="label"><input type="checkbox" name="storepassword" class="checkbox"
checked="checked">Store Password</div>
<div><input name="login" type="submit" value="Login" class="button"></div>
</form>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">New Users</span></div>
<div class="content">
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?action=directory">Directory</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?p=29&action=addauthor">Register</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?p=29&action=retrievepassword">Retrieve
Password</a></span><br>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">Latest Comments</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=216&o=15#c4237">GCFScape
v1.6.0 And HLLib v2.0.2</a> (<a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13659">allenlisa1987</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=30&o=0#c4236">leray20
- Le Ray</a> (<a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13657">Conor1234</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=23&o=0#c4235">Auto
Seamer</a> (<a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13657">Conor1234</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=246&o=0#c4234">Not
Dead Yet</a> (<a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13656">jenkinK</a>)</span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=111&o=0#c4233">GCFScape
v1.2.0</a> (<a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13655">teririvera</a>)</span><br>
</div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Latest Articles</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=277#p277">GCFScape
v1.8.6</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=276#p276">GCFScape
v1.8.5</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=275#p275">GCFScape
v1.8.4</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=274#p274">GCFScape
v1.8.3</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=273#p273">VTFLib
v1.3.2</a></span><br></div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Most Popular Articles</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=178#p178">VTFEdit
v1.2.5 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=76#p76">GCFScape
v1.3.1 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=238#p238">VTFEdit
v1.3.3 Full</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=154#p154">VTF
Plug-In for Photoshop</a></span><br><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?c=169#p169">GCFScape
v1.8.6 Full</a></span><br></div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Newest Member</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=13660">seeratpc</a></span><br>
</div>
</div><br>
<div class="group">
<div class="heading1"><span class="title">Elite Spammers</span></div>
<div class="content"><span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=1">Nem</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=376">Bluefang</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=708">NoBody</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=7">Slackiller</a></span><br><span
class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/index.php?a=385">Keloran</a></span><br>
</div>
</div>
<br>
<div class="group">
<div class="heading1"><span class="title">Feeds</span></div>
<div class="content">
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/rss/?page=1">RSS
2.0 (News)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/rss/">RSS 2.0
(Entire Site)</a></span><br>
<span class="title">» <a
href="https://web.archive.org/web/20190508191349/http://nemesis.thewavelength.net/rss/?comments&limit=15">RSS
2.0 (Comments)</a></span><br>
</div>
</div>
</div>
<div class="space"></div>
</div>
</div>
<div class="separator"></div>
<div class="heading2 center"><span class="note">Nem's Tools v2.0 » 2006 <a
href="mailto:[email protected]">Ryan Gregg</a>.<br>Execution
time: 0.07963s; Queries: 14.<br>
</span></div>
</div>
</div>
</body>
</html>
|