-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTRAIN_00815.eml
2523 lines (1768 loc) · 87.4 KB
/
TRAIN_00815.eml
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
NoneNone[fm-news] Newsletter for Tuesday, July 30th 2002::: L I N K S F O R T H E D A Y :::
Today's news on the web: http://freshmeat.net/daily/2002/07/30/
freshmeat.net newsgroup: news://news.freshmeat.net/fm.announce
--- --.- -----.-.------ -.. ..-- - -...---- -- -.- -----... - -
::: A D V E R T I S I N G :::
Sponsored by the USENIX Security Symposium
Learn how to improve the security of your systems & networks! OS Security
*Access Control *Sandboxing *Web Security and more! *11th USENIX SECURTY
SYMPOSIUM * August 5-9, 2002 * San Francisco Register onsite for your FREE
EXHIBIT PASS!
http://www.usenix.org/sec02/osdn
-.------.---.---- -.------.--.- --.-.- - - -- --.--- --.--- -.-
::: R E L E A S E H E A D L I N E S (107) :::
[001] - abcm2ps 3.1.1 (Development)
[002] - amSynth 1.0 beta 5
[003] - Calculating Pi First Release (Simple Harmonic Motion)
[004] - CbDockApp 1.00
[005] - cdinsert and cdlabelgen 2.4.0 (Stable)
[006] - cdrecord 1.11a28
[007] - Cell Phone SMS AIM 1.6
[008] - CherryPy 0.4
[009] - Chronos 1.1.1
[010] - CLIP 0.99.4
[011] - countertrace 1.0
[012] - CRWInfo 0.2
[013] - DaDaBIK 2.1 beta
[014] - Danpei 2.8.2 (Stable)
[015] - dchub 0.1.2
[016] - Distributed Checksum Clearinghouse 1.1.8
[017] - dnstracer 1.6
[018] - Document Manager 2.0-pre1 (Development)
[019] - dougnet 1.0
[020] - Dump/Restore 0.4b31
[021] - DungeonMaker 2.01
[022] - File Roller 2.0.0
[023] - FrontStella 1.2
[024] - gCVS 1.0b4
[025] - gimp-print 4.2.2-pre4 (Stable)
[026] - gnocl 0.5.1
[027] - GnomeICU 0.98.3
[028] - GNUstep 1.4.0 (LaunchPad)
[029] - grocget 0.5
[030] - hdup 1.4.0-1 (Stable)
[031] - Highlight 0.1
[032] - honeyd 0.3
[033] - ioperm for Cygwin 0.1
[034] - IPSquad Packages From Scratch 0.6
[035] - j 0.16.1
[036] - jmame 0.3-beta
[037] - Kadmos OCR/ICR engine 3.5q
[038] - Kallers 0.2.2
[039] - Kemerge 0.6
[040] - KMencoder 0.1.2
[041] - KMyIRC 0.2.2 (Alpha)
[042] - koalaXML 0.3.0
[043] - Koch-Suite 0.7 (Development)
[044] - Lago 0.5.2-gcc3.patch
[045] - libdv 0.98
[046] - Lindenmayer Systems in Python 1.0
[047] - LM-Solve 0.5.6 (Development)
[048] - MKDoc 1.4
[049] - mksysdisp 0.1.4
[050] - Mondo 0.7 (Stable)
[051] - Mysql-sdb 0.1a
[052] - NNTPobjects 0.9
[053] - ogmtools 0.7
[054] - One-Wire Weather 0.67.10
[055] - Open Remote Collaboration Tool 1.0.1
[056] - OpenCL 0.8.7
[057] - OpenEJB 0.8 Final
[058] - OpenOffice Indexer 0.1 (Development)
[059] - OSSP cfg 0.9.0
[060] - OSSP fsl 0.1.12
[061] - OSSP l2 0.9.0
[062] - Papercut NNTP Server 0.8.3
[063] - PEANUTS 1.03
[064] - PHP Online RPG 1.1
[065] - phpMyAdmin 2.3.0-rc4 (Unstable)
[066] - PHPTalk 0.9
[067] - phpTest 0.6.1
[068] - php_passport_check 0.1
[069] - php_writeexcel 0.1.1
[070] - poweroff 0.4
[071] - PPPOEd 0.49
[072] - QtMyAdmin 0.4
[073] - Quantum GIS 0.0.2 (Development)
[074] - RedBase Pure Java RDBMS 1.5
[075] - RH Email Server 0.9.8.1
[076] - S/MIME Library for Java 1.5.0
[077] - Secure FTP Wrapper 2.5.2
[078] - Server optimized Linux 15.00
[079] - Sharp Tools Spreadsheet 1.4 (Stable)
[080] - Simple TCP Re-engineering Tool 0.8.0
[081] - SimpleFirewall 0.7-2
[082] - sKaBurn 0.1
[083] - Station Location and Information 1.2
[084] - Sylpheed 0.8.1claws (Claws)
[085] - Sympoll 1.3
[086] - The Big Dumb Finger Daemon 0.9.5
[087] - The Parma Polyhedra Library 0.4.1
[088] - The Tamber Project 1.0.6
[089] - Trackbox 0.4
[090] - tui-sh 1.2.0
[091] - uVNC 0.0-2
[092] - Valgrind 1.0.0
[093] - VNC Reflector 1.1.9
[094] - vpopmail 5.3.8 (Development)
[095] - Vstr string library 0.9.9
[096] - WallFire wfconvert 0.1.3
[097] - WallFire wflogs 0.0.5
[098] - webcpp gtkgui 0.3.1 (Gnome)
[099] - WebDialer 1.4
[100] - WebFileManager 0.972 (Stable)
[101] - WebJob 1.2.0
[102] - white_dune 0.20beta12 (Development)
[103] - WideStudio 3.00.3
[104] - Wolfpack 12.8.7 (Stable)
[105] - XMLtype 0.5.1 (Development)
[106] - Zina 0.9.1
[107] - zprommer 2002_07_29
-----. - ----.-----. .- -.---. .- -. ..--- -.--------. .-- .
::: R E L E A S E D E T A I L S :::
[001] - abcm2ps 3.1.1 (Development)
by Guido Gonzato (http://freshmeat.net/users/goccia/)
Tuesday, July 30th 2002 03:48
Multimedia :: Sound/Audio :: Conversion
About: abcm2ps is a package that converts music tunes from ABC format to
PostScript. Based on abc2ps version 1.2.5, it was developed mainly to
print baroque organ scores that have independant voices played on one or
more keyboards, and a pedal-board. It introduces many extensions to the
ABC language that make it suitable for classical music.
Changes: Minor bugfixes were made.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/abcm2ps/
- % - % - % - % -
[002] - amSynth 1.0 beta 5
by nixx uk (http://freshmeat.net/users/nixx2097/)
Tuesday, July 30th 2002 10:52
Multimedia :: Sound/Audio :: Sound Synthesis
About: amSynth is a realtime polyphonic analogue modeling synthesizer. It
provides a virtual analogue synthesizer in the style of the classic Moog
Minimoog/Roland Junos. It offers an easy-to-use interface and synth
engine, while still creating varied sounds. It runs as a standalone
application, using either the ALSA audio and MIDI sequencer system or the
plain OSS devices. It can be played with an external MIDI controller
keyboard, a software virtual keyboard, or through a MIDI sequencer. All
parameters can be controlled over MIDI.
Changes: The ALSA driver has been MMAPed for improved performance.
Recordings are now output to .wav files. Minor performance tweaks have
been made on the envelope generators, the build process, etc.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/amsynth/
- % - % - % - % -
[003] - Calculating Pi First Release (Simple Harmonic Motion)
by Sayan Chakraborti (http://freshmeat.net/users/sayanchak/)
Tuesday, July 30th 2002 19:00
Scientific/Engineering :: Mathematics
Scientific/Engineering :: Visualization
About: ProjectPi is a project to calculate the mathematical constant Pi
through various methods.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/projectpi/
- % - % - % - % -
[004] - CbDockApp 1.00
by Chris Briscoe (http://freshmeat.net/users/cbriscoe/)
Tuesday, July 30th 2002 18:56
Desktop Environment :: Window Managers :: Window Maker :: Applets
About: CbDockApp is a C++ dock application class. To make your own dock
application, just create a derived class with your application code. It
comes with an example docked clock application.
License: BSD License
URL: http://freshmeat.net/projects/cbdockapp/
- % - % - % - % -
[005] - cdinsert and cdlabelgen 2.4.0 (Stable)
by Avinash Chopde (http://freshmeat.net/users/avinash1/)
Tuesday, July 30th 2002 17:10
Text Processing
About: cdlabelgen is a Perl script that generates printouts suitable for
use as CD jewel case inserts or CD envelopes. Both normal sized cases and
slim cases are handled. cdlabelgen can be used to create table of contents
for music CDs, archival CDs, etc., with customizable logos or background
images, and it generates PostScript files as output. The package also
includes a Perl CGI Web script which accepts JPEG images as logos or
backgrounds, and can also create PDF output files.
Changes: It is now possible to specify line width for the cover/tray edges
or to omit edge lines entirely. Control over logo placement has been
added: logos can now be moved and scaled as required on the output.
Support for A4 page printouts has been added.
License: BSD License
URL: http://freshmeat.net/projects/cdinsert/
- % - % - % - % -
[006] - cdrecord 1.11a28
by Jörg Schilling (http://freshmeat.net/users/schily/)
Tuesday, July 30th 2002 10:53
Multimedia :: Sound/Audio :: CD Audio :: CD Ripping
Multimedia :: Sound/Audio :: CD Audio :: CD Writing
System :: Archiving
About: Cdrecord creates home-burned CDs with a CD-R/CD-RW recorder. It
works as a burn engine for several applications. Cdrecord supports CD
recorders from many different vendors; all SCSI-3/mmc and ATAPI/mmc
compliant drives should also work. Supported features include IDE/ATAPI,
parallel-port, and SCSI drives, audio CDs, data CDs, and mixed CDs, full
multi-session support, CD-RWs (rewritable), TAO, DAO and human-readable
error messages. Cdrecord includes remote SCSI support and can access local
or remote CD-writers.
Changes: cdrecord now writes MCN/ISRC even in RAW mode. A bug that caused
cdrecord to write wrong relative time stamps into the pregap of audio CDs
when writing in RAW mode with pregapsize !=0 has been fixed.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/cdrecord/
- % - % - % - % -
[007] - Cell Phone SMS AIM 1.6
by jason swan (http://freshmeat.net/users/ZypLocc/)
Tuesday, July 30th 2002 20:32
Communications :: Chat
Communications :: Chat :: AOL Instant Messenger
Communications :: Internet Phone
About: Cell Phone SMS AIM uses the Net::AIM Perl module available from
CPAN, signs on a screen name, and routes messages to your cell phone via
SMS. It also requires lynx.
Changes: Two more providers and a bugfix.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/cellaim/
- % - % - % - % -
[008] - CherryPy 0.4
by Remi Delon (http://freshmeat.net/users/rdelon/)
Tuesday, July 30th 2002 10:36
Internet :: WWW/HTTP :: Dynamic Content
About: CherryPy is a Python-based tool for developing dynamic Web sites.
It sits between a compiler and an application server. Compiling source
files generates an executable containing everything to run the Web site,
including an HTTP server. CherryPy lets you develop your Web site in an
object-oriented way, using both regular Python and a templating language.
It also comes with a handy standard library for things like cookie-based
authentication, form handling, HTTP authentication, etc.
Changes: This release adds built-in caching capability and some compiler
optimization.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/cherrypy/
- % - % - % - % -
[009] - Chronos 1.1.1
by Simon Perreault (http://freshmeat.net/users/nomis80/)
Tuesday, July 30th 2002 17:09
Internet :: WWW/HTTP :: Dynamic Content
Office/Business :: Scheduling
About: Chronos is a Web agenda calendar for intranets, although it can be
used from anywhere. It can send reminders by email, and it allows you to
schedule multi-user events. It is fast and light on resources. The balance
between size and speed can be tweaked by tweaking mod_perl and Apache.
Changes: This release fixes some bugs with the new holidays feature and a
crash that would occur sometimes when viewing events with reminders.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/chronos/
- % - % - % - % -
[010] - CLIP 0.99.4
by Uri Hnykin (http://freshmeat.net/users/Uri/)
Tuesday, July 30th 2002 17:00
Database
Database :: Database Engines/Servers
Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
About: CLIP is a Clipper/XBase compatible compiler with initial support
for FoxPro, Flagship, and CAVO syntax. It supports Linux, FreeBSD,
OpenBSD, and Win32 (via Cygwin). It features support for international
languages and character sets, including two-bytes character sets like
Chinese and Japanese. It also features OOP, a multiplatform GUI based on
GTK/GTKextra, all SIX/Comix features (including hypertext indexing), SQL,
a C-API for third-party developers, a few wrappers for popular libraries
(such as BZIP, GZIP, GD, Crypto, and Fcgi), multitasking, mouse events,
and more.
Changes: There are many fixes for compatibility. An Interbase (Firebird)
client has been added. There are new FiveWin-like functions and classes.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/clip/
- % - % - % - % -
[011] - countertrace 1.0
by Michael C. Toren (http://freshmeat.net/users/mct/)
Tuesday, July 30th 2002 00:43
Internet
About: countertrace is a userland iptables QUEUE target handler for Linux
2.4 kernels running Netfilter. It attempts to give the illusion that
there are multiple, imaginary IP hops between itself and the rest of the
world. The imaginary hops that countertrace projects also have the
ability to introduce accumulative, imaginary latency.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/countertrace/
- % - % - % - % -
[012] - CRWInfo 0.2
by Sven Riedel (http://freshmeat.net/users/srd/)
Tuesday, July 30th 2002 18:37
Multimedia :: Graphics :: Capture :: Digital Camera
About: CRWInfo extracts thumbnails and exposure information from Canon's
proprietary .crw RAW files, which can be output by certain of Canons
digital cameras.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/crwinfo/
- % - % - % - % -
[013] - DaDaBIK 2.1 beta
by Eugenio (http://freshmeat.net/users/eugenio/)
Tuesday, July 30th 2002 18:36
Database :: Front-Ends
About: DaDaBIK is a PHP application that allows you to easily create a
highly customizable Web interface for a MySQL database in order to search,
insert, update, and delete records; all you need do is specify a few
configuration parameters. It is available in English, Italian, Dutch,
German, Spanish, and French.
Changes: A new, lighter, and easier to use administration interface
(related to the internal table manager) is now available. The form now has
a better layout, and all the fields are correctly aligned, including
dates. All the translations are now up-to-date. It is now possible, for
select_single fields, to choose "other" during an insert and fill a
textbox by hand with an alternative value. That value will update the
select options, unless the option has been driven with a custom query
("SQL:......"). It is now possible to choose whether a field has to be
displayed on the details page. Other changes and bugfixes have been added.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/dadabik/
- % - % - % - % -
[014] - Danpei 2.8.2 (Stable)
by peace24 (http://freshmeat.net/users/peace24/)
Tuesday, July 30th 2002 11:01
About: Danpei is a GTK+ based image viewer. It allows you to browse
through your image files in thumbnail form, and it can rename, cut, and
paste them easily with an interface similar to that of Windows Explorer.
Changes: This release fixes the bug that caused the progressbar dialog to
not be displayed when dragging and dropping and the bug that, in some
cases, caused Gtk-WARNING to be displayed when cutting and pasting.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/danpei/
- % - % - % - % -
[015] - dchub 0.1.2
by Eric (http://freshmeat.net/users/icemanbs/)
Tuesday, July 30th 2002 05:32
Communications :: File Sharing
About: dchub is a Direct Connect hub clone. It resembles an IRC server
with some extra features dedicated to file sharing.
Changes: Minor bugs were fixed in the decoding of the MHUBLIST key, in the
Perl script handling dc++ clients, and in the hub registration function.
Python scripting was added.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/dchub/
- % - % - % - % -
[016] - Distributed Checksum Clearinghouse 1.1.8
by Vernon Schryver (http://freshmeat.net/users/vjs/)
Tuesday, July 30th 2002 13:04
Communications :: Email
Communications :: Email :: Filters
About: Distributed Checksum Clearinghouse (DCC) is a system of clients and
servers that collect and count checksums related to mail messages. The
counts can be used by SMTP servers and mail user agents to detect and
reject bulk mail. DCC servers can exchange common checksums. The checksums
include values that are "fuzzy", or constant across common variations in
bulk messages.
Changes: A fix for "invalid database address" problems on SPARC systems,
and other changes.
License: Freely Distributable
URL: http://freshmeat.net/projects/dcc-source/
- % - % - % - % -
[017] - dnstracer 1.6
by Edwin Groothuis (http://freshmeat.net/users/mavetju/)
Tuesday, July 30th 2002 10:43
Internet :: Name Service (DNS)
System :: Networking
Utilities
About: dnstracer determines where a given Domain Name Server (DNS) gets
its information from, and follows the chain of DNS servers back to the
servers which know the data.
Changes: This release adds support for SOA records.
License: BSD License
URL: http://freshmeat.net/projects/dnstracer/
- % - % - % - % -
[018] - Document Manager 2.0-pre1 (Development)
by Dobrica Pavlinusic (http://freshmeat.net/users/dpavlin/)
Tuesday, July 30th 2002 05:28
Internet :: WWW/HTTP
Internet :: WWW/HTTP :: Site Management
Office/Business
About: Document Manager is a document management system with the ability
to check-in/check-out documents, track changes, and support multiple
users. It supports all usual operations (rename, delete, view, edit) and
comes with optional support for a secure HTTP server.
Changes: This development release is probably not ready for production
yet, but contains new features, including a repository which is not in the
Web server tree, an ACL implementation called trustee, and new
documentation. It works with register_globals off in PHP.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/docman/
- % - % - % - % -
[019] - dougnet 1.0
by Doug (http://freshmeat.net/users/dougedoug/)
Tuesday, July 30th 2002 02:17
Internet
About: dougnet is a collection of useful functions to helping programmers
make their programs network enabled quickly and easily. It can be
directly embedded into a program, creating no hassle for users. It is
highly portable and very easy to use.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/dougnet/
- % - % - % - % -
[020] - Dump/Restore 0.4b31
by Stelian Pop (http://freshmeat.net/users/spop/)
Tuesday, July 30th 2002 12:57
System :: Archiving :: Backup
System :: Archiving :: Compression
System :: Filesystems
About: The dump package contains both dump and restore. Dump examines
files in a filesystem, determines which ones need to be backed up, and
copies those files to a specified disk, tape or other storage medium. The
restore command performs the inverse function of dump; it can restore a
full backup of a filesystem. Subsequent incremental backups can then be
layered on top of the full backup. Single files and directory subtrees may
also be restored from full or partial backups.
Changes: This release fixes a bug (introduced with 0.4b29) which prevented
the use of a remote tape drive.
License: BSD License
URL: http://freshmeat.net/projects/dumprestore/
- % - % - % - % -
[021] - DungeonMaker 2.01
by henningsen (http://freshmeat.net/users/henningsen/)
Tuesday, July 30th 2002 18:22
About: The DungeonMaker is a program/class library that generates random
dungeons and labyrinths using artificial life methods. It can be used for
pen-and-paper roleplaying, but is mostly intended to generate random maps
for computer role playing games.
Changes: This is a complete rewrite that improves labyrinth creation and
introduces dungeon creation and placement of treasure and MOBs.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/dungeonmaker/
- % - % - % - % -
[022] - File Roller 2.0.0
by HPG (http://freshmeat.net/users/paobac/)
Tuesday, July 30th 2002 06:19
System :: Archiving
About: File Roller is an archive manager for the GNOME environment. As an
archive manager, it can create and modify archives, view the content of an
archive, view a file contained in the archive, and extract files from the
archive. File Roller is only a frontend (a graphical interface) to
archiving programs like tar and zip.
Changes: Ported to GNOME 2, added an option to view the destination folder
after extraction, rearranged the menus, and added mnemonics to all
dialogs. Nautilus is now used as the document viewer.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/fileroller/
- % - % - % - % -
[023] - FrontStella 1.2
by James de Oliveira (http://freshmeat.net/users/herege/)
Tuesday, July 30th 2002 00:11
System :: Emulators
About: FrontStella is a GNOME front-end for the xstella Atari emulator. It
allows you to set and preserve a name and a screen shot for a particular
ROM. It also allows you to set and keep some global options for the
emulator. You can add as many ROMs as you want.
Changes: Added keyboard shortcuts, and the ability to double-click on a
ROM. A pop-up menu was added, some known bugs were fixed, and the image is
now scaled to fit in the window.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/frontstella/
- % - % - % - % -
[024] - gCVS 1.0b4
by Karl-Heinz Bruenen (http://freshmeat.net/users/bruenen/)
Tuesday, July 30th 2002 05:32
Software Development :: Version Control
Software Development :: Version Control :: CVS
About: gCVS is a GTK port of WinCVS, a Windows-based CVS client.
Changes: Serveral bugs were fixed.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/gcvs/
- % - % - % - % -
[025] - gimp-print 4.2.2-pre4 (Stable)
by Robert Krawitz (http://freshmeat.net/users/rlk/)
Tuesday, July 30th 2002 21:38
Multimedia :: Graphics
Printing
About: Gimp-Print is a collection of very high quality printer drivers for
UNIX/Linux. The goal of this project is uncompromising print quality and
robustness. Included with this package is the Print plugin for the GIMP
(hence the name), a CUPS driver, and two drivers (traditional and
IJS-based) for Ghostscript that may be compiled into that package. This
driver package is Foomatic-compatible and provides Foomatic data to enable
plug and play with many print spoolers. In addition, various printer
maintenance utilities are included. Many users report that the quality of
Gimp-Print on high end Epson Stylus printers matches or exceeds the
quality of the drivers supplied for Windows and Macintosh.
Changes: This release fixes a serious and longstanding problem whereby
prints to certain Epson printers hosted on a Windows system are
incomplete; the bottom of the last page of the print is chopped off. There
are also some minor tweaks for the Epson Stylus Photo 2100/2200.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/gimp-print/
- % - % - % - % -
[026] - gnocl 0.5.1
by Peter G. Baum (http://freshmeat.net/users/baum/)
Tuesday, July 30th 2002 17:17
Software Development :: Widget Sets
About: gnocl is a GTK / Gnome extension for the programming language Tcl.
It provides easy to use commands to quickly build Gnome compliant user
interfaces including the Gnome canvas widget and drag and drop support. It
is loosely modeled after the Tk package.
Changes: This release features many GTK+ 2.0 related bugfixes, a new tree
and list widget, and dialogs for selecting color, font, and files. There
is still no support for special Gnome 2.0 widgets (e.g. canvas).
License: BSD License
URL: http://freshmeat.net/projects/gnocl/
- % - % - % - % -
[027] - GnomeICU 0.98.3
by Patrick (http://freshmeat.net/users/phsung/)
Tuesday, July 30th 2002 18:03
Desktop Environment :: Gnome
System :: Networking
About: GnomeICU is a Gnome application which allows one to communicate
with other GnomeICU users or others who use ICQ (Windows, Java, Mac, etc).
With GnomeICU, one can send and receive messages, change online modes,
chat in realtime, send and receive URLs, and much more.
Changes: A new XML contacts list file, better user authorization support,
more stable server side contacts list support, many other bugfixes, and
some new languages.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/gnomeicu/
- % - % - % - % -
[028] - GNUstep 1.4.0 (LaunchPad)
by Adam Fedor (http://freshmeat.net/users/afedor/)
Tuesday, July 30th 2002 00:31
Desktop Environment :: GNUstep
About: GNUstep is a set of general-purpose Objective-C libraries based on
the OpenStep standard developed by NeXT (now Apple) Inc. The libraries
consist of everything from foundation classes, such as dictionaries and
arrays, to GUI interface classes such as windows, sliders, buttons, etc.
Changes: The Make package has gone through an extensive reorganization,
allowing for better code sharing and a speed increase by at least a factor
of 2. The Base library now works better on Windows and Darwin, and has
better language support.
License: GNU Lesser General Public License (LGPL)
URL: http://freshmeat.net/projects/gnustep/
- % - % - % - % -
[029] - grocget 0.5
by Anthony Tekatch (http://freshmeat.net/users/anthonytekatch/)
Tuesday, July 30th 2002 22:57
Utilities
About: grocget helps you shop for groceries faster and more reliably. It
can print a master inventory list, as well as an aisle-sorted shopping
list.
Changes: Changes for using with Python 2.0, and changes to allow running
from current directory.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/grocget/
- % - % - % - % -
[030] - hdup 1.4.0-1 (Stable)
by Miek Gieben (http://freshmeat.net/users/miek/)
Tuesday, July 30th 2002 05:50
System :: Archiving :: Backup
System :: Archiving :: Compression
About: hdup is used to back up a filesystem. Features include encryption
of the archive (via mcrypt), compression of the archive (bzip/gzip/none),
the ability to transfer the archive to a remote host (via scp), and no
obscure archive format (it is a normal compressed tar file).
Changes: Added a -f option to force restoring to '/', and made
documentation cleanups. Restoring a single file is now possible, and
compilation now depends on GNU make.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/hdup/
- % - % - % - % -
[031] - Highlight 0.1
by André Simon (http://freshmeat.net/users/Saalen/)
Tuesday, July 30th 2002 10:36
Text Processing
About: Highlight is a universal source code to HTML, XHTML, RTF, or
(La)TEX converter. (X)HTML output is formatted by Cascading Style Sheets.
It supports Bash, C, C++, Java, Javascript, Lua, Assembler, Perl, PHP,
PL/SQL, (Object) Pascal, and Visual Basic files. It's possible to easily
enhance Highlight's parsing database.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/highlight/
- % - % - % - % -
[032] - honeyd 0.3
by Niels Provos (http://freshmeat.net/users/nielsprovos/)
Tuesday, July 30th 2002 12:47
Internet
System :: Monitoring
About: Honeyd is a small daemon that creates virtual hosts on a network.
The hosts can be configured to run arbitrary services, and their TCP
personality can be adapted so that they appear to be running certain
versions of operating systems. Honeyd enables a single host to claim
multiple addresses on a LAN for network simulation. It is possible to ping
the virtual machines, or to traceroute them. Any type of service on the
virtual machine can be simulated according to a simple configuration file.
Instead of simulating a service, it is also possible to proxy it to
another machine.
Changes: UDP support (including proxying), and many bugfixes.
License: BSD License
URL: http://freshmeat.net/projects/honeyd/
- % - % - % - % -
[033] - ioperm for Cygwin 0.1
by Marcel Telka (http://freshmeat.net/users/telka/)
Tuesday, July 30th 2002 10:55
Software Development :: Libraries
About: ioperm for Cygwin adds support for the ioperm() function to Cygwin
(for Windows NT/2000/XP). This support includes sys/io.h and sys/perm.h
header files (not included in Cygwin by default) with development and
runtime libraries.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/ioperm/
- % - % - % - % -
[034] - IPSquad Packages From Scratch 0.6
by Er-Vin (http://freshmeat.net/users/ervin/)
Tuesday, July 30th 2002 05:58
System :: Archiving :: Packaging
System :: Installation/Setup
System :: Logging
About: IPFS (IPSquad Package From Source) is a system which allows you to
trace an program's installation from sources and register it in your
favorite packaging system. (Only Slackware 8.1 is currently supported.)
IPFS watches a command (generally make install), collects the list of
added files, and then registers them in the chosen packaging system as if
the install was made from a normal package. Unlike other similar products,
IPFS is able to track both shared and statically linked programs. A
Slackware 8.1 package for IPFS is available for download.
Changes: The old resolve_path shell script has been replace with a newer
and faster ipfs_realpath coded in C.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/ipfs/
- % - % - % - % -
[035] - j 0.16.1
by Peter Graves (http://freshmeat.net/users/petergraves/)
Tuesday, July 30th 2002 16:58
Text Editors
About: J is a multifile, multiwindow programmer's editor written entirely
in Java. It features syntax highlighting for Java, C, C++, XML, HTML, CSS,
JavaScript, Lisp, Perl, PHP, Python, Ruby, Scheme, Tcl/Tk, Verilog, and
VHDL, automatic indentation, directory buffers, regular expressions,
multifile find and replace, autosave and crash recovery, undo/redo, and
FTP/HTTP support. All keyboard mappings can be customized. Themes may be
used to customize the editor's appearance.
Changes: This release adds support for named sessions.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/j/
- % - % - % - % -
[036] - jmame 0.3-beta
by Joe Ceklosky (http://freshmeat.net/users/jceklosk/)
Tuesday, July 30th 2002 23:05
About: yyyyame is a Java-based frontend to XMAME. It uses the Swing toolkit
and uses XML to store all settings.
Changes: A new abiltiy to verify ROMs using XMAME was added. The status
area also displays XMAME verify commands and output. make install and make
uninstall commands were also added to the Makefile (edit the Makefile to
change the default install location, which is /usr/local/jmame)
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/yyyyame/
- % - % - % - % -
[037] - Kadmos OCR/ICR engine 3.5q
by Tamas Nagy (http://freshmeat.net/users/nagytam/)
Tuesday, July 30th 2002 18:21
Multimedia :: Graphics
Software Development :: Libraries
About: The Kadmos OCR/ICR (handwriting) recognition engine has multiple
languages support (it covers all Latin languages plus others). Interfaces
are available for C/C++/VB/Delphi, and Java upon request. It also has
isolated character (REC), isolated line (REL), and paragraph (REP)
recognition modules.
Changes: New image manipulation functions were added to the API.
License: Other/Proprietary License
URL: http://freshmeat.net/projects/kadmos/
- % - % - % - % -
[038] - Kallers 0.2.2
by Nadeem Hasan (http://freshmeat.net/users/nhasan/)
Tuesday, July 30th 2002 10:57
Communications :: Telephony
Desktop Environment :: K Desktop Environment (KDE)
About: Kallers is KDE system tray applet that displays the caller ID
information sent by phone companies. It requires a caller ID capable
modem. It logs every call internally using an XML format, displays call
infomation non- intrusively using a popup window, and optionally plays a
ring sound when a call is received. It can optionally ignore anonymous
calls. A handy call browser lets you view the call information.
Changes: This release fixes anonymous call handling and adds a minor
layout fix in the call browser.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/kallers/
- % - % - % - % -
[039] - Kemerge 0.6
by Yannick Koehler (http://freshmeat.net/users/ykoehler/)
Tuesday, July 30th 2002 17:14
Desktop Environment :: K Desktop Environment (KDE)
System :: Installation/Setup
System :: Software Distribution Tools
About: Kemerge is a KDE graphical front end for Gentoo portage tools.
Changes: This release can filter the display of the ebuild list by all
possible columns using a regular expression.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/kemerge/
- % - % - % - % -
[040] - KMencoder 0.1.2
by RoLo (http://freshmeat.net/users/rolosworld/)
Tuesday, July 30th 2002 03:48
Desktop Environment :: K Desktop Environment (KDE) :: Themes KDE 3.x
Multimedia
Multimedia :: Sound/Audio
About: KMencoder is a frontend for Mplayer/Mencoder.
Changes: Added a pass-3 method, a kmencoder.spec file, VCD options, and
Spanish and German translations. Some minor fixes were made.
License: GNU General Public License (GPL)
URL: http://freshmeat.net/projects/kmencoder/
- % - % - % - % -
[041] - KMyIRC 0.2.2 (Alpha)
by shermann (http://freshmeat.net/users/shermann/)
Tuesday, July 30th 2002 10:08
Communications :: Chat :: Internet Relay Chat
Desktop Environment :: K Desktop Environment (KDE) :: Themes KDE 3.x
Internet
About: KMyIRC is an attempt to provide an IRC client for KDE which is