-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3762 lines (2378 loc) · 107 KB
/
ChangeLog
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
2005-07-04 23:56 ldipenti
* debian/changelog: new changelog
2005-07-04 23:54 ldipenti
* debian/control: Bugfix from Debian BTS: #304225
2005-07-04 23:54 ldipenti
* po/de.po: Bugfix from Debian BTS: #314051
2005-07-04 23:36 ldipenti
* src/: callbacks.c, game_mgr.c, gwp.glade: Feature: game property
editor improved
2005-06-16 01:09 ldipenti
* po/de.po: Some minor corrections from Debian BTS
2005-06-02 11:36 ldipenti
* src/vp_utils.c: Feature: patched applied to parse host
configuration messages, thanks François!!!
2005-05-31 10:17 ldipenti
* src/: callbacks.c, callbacks.h, game_mgr.c, global.h,
gwp-beamspec.c, gwp-beamspec.h, gwp-engspec.c, gwp-engspec.h,
gwp-flying-object.c, gwp-flying-object.h, gwp-game-state.c,
gwp-game-state.h, gwp-hullspec.c, gwp-hullspec.h,
gwp-ion-storm.c, gwp-ion-storm.h, gwp-location.c, gwp-location.h,
gwp-messages.c, gwp-messages.h, gwp-minefield.c, gwp-minefield.h,
gwp-object.c, gwp-object.h, gwp-planet.c, gwp-planet.h,
gwp-py-functions.c, gwp-py-functions.h, gwp-python.c,
gwp-python.h, gwp-race.c, gwp-race.h, gwp-ship.c, gwp-ship.h,
gwp-specs.h, gwp-starbase.c, gwp-starbase.h, gwp-starchart.c,
gwp-starchart.h, gwp-torpspec.c, gwp-torpspec.h, gwp-ui.c,
gwp-ui.h, gwp-utils.c, gwp-utils.h, gwp-vcrfile.c, gwp-vcrfile.h,
gwp_types.c, gwp_types.h, main.c, message-reader.c,
message-reader.h, mission.c, mission.h, race.c, race.h,
starchart.c, starchart.h, support.c, support.h, tables.c,
tables.h, vcr-combat-gl.c, vcr-combat-gl.h, vcr-combat.c,
vcr-combat.h, vcr.c, vcr.h, vp_maketurn.c, vp_maketurn.h,
vp_maketurn_global.c, vp_maketurn_global.h,
vp_maketurn_kmkturn.c, vp_maketurn_kmkturn.h, vp_maketurn_misc.c,
vp_maketurn_misc.h, vp_maketurn_playerio.c,
vp_maketurn_playerio.h, vp_types.h, vp_unpack.c, vp_unpack.h,
vp_utils.c, vp_utils.h: Feature: Added CVS metadata on source
files
2005-05-31 09:45 ldipenti
* src/gwp-game-state.c: Another cool test (cvs vars)
2005-05-31 09:39 ldipenti
* src/gwp-game-state.c: test cvs vars
2005-05-31 09:37 ldipenti
* src/gwp-game-state.c: Another test
2005-05-31 09:31 ldipenti
* src/gwp-game-state.c: Trying id file doc
2005-05-31 09:23 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h, gwp-py-mappings.c,
gwp-py-mappings.defs: Feature: Added methods to GwpGameState to
access all host configuration properties. Thanks François for
your contribution!!!. Updated python methods.
2005-05-31 02:15 ldipenti
* po/fr.po: Bugfix: DSPAM signature left by mistake on PO file,
doh!
2005-05-31 02:12 ldipenti
* src/: callbacks.c, game_mgr.c, gwp.glade: Bugfix: Some UI design
flaws on the game manager property dialog were fixed.
2005-05-30 09:28 ldipenti
* po/fr.po: Updated French translation. Thanks François!!!
2005-05-24 09:12 ldipenti
* po/fr.po: Updated French translation, thanks to François &
David!
2005-05-18 01:33 ldipenti
* src/vp_utils.c: Several case-related file loading bugs squashed
2005-05-16 09:43 ldipenti
* po/fr.po: Feature: French translation updated, thanks
François!!!
2005-05-09 09:11 ldipenti
* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: PO files updated to
new strings
2005-05-04 19:59 ldipenti
* po/de.po: German translation update, thanks Stefan!!!
2005-05-04 01:34 ldipenti
* src/: callbacks.c, callbacks.h, game_mgr.c, vp_utils.c: Feature:
Game settings can be accesed from GWP's main screen.
2005-05-04 01:10 ldipenti
* src/: callbacks.c, game_mgr.c, gwp-game-state.c, gwp.glade:
Feature: new game control setting to allow the player to indicate
whether GWP should modify data files or not, disabled by default.
2005-05-03 01:18 ldipenti
* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: PO files updated
2005-05-01 21:32 ldipenti
* src/: game_mgr.c, gwp-game-state.c, gwp-game-state.h, gwp.glade:
Bugfix: Game Manager now stores host type.
2005-05-01 19:41 ldipenti
* src/gwp-messages.c: Bugfix: unused var eliminate
2005-05-01 19:39 ldipenti
* src/gwp-messages.c: Bugfix: MDATAx.DAT files were loaded
incorrectly on races > 9, using letters instead of numbers for
the race name
2005-04-26 17:47 ldipenti
* AUTHORS: Trivial commit
2005-04-26 17:45 cvs-max
* AUTHORS:
Me aÃadi como developer
Max
2005-04-23 17:13 cristian
* scripts/plugins/uhura.py: Terminado version 01, funcional!
2005-04-21 22:44 cristian
* scripts/plugins/Makefile.am: Agregado de Uhura.py
2005-04-21 22:43 cristian
* scripts/plugins/uhura.py: Plugin que se coloca en ele slot "down"
y muestra reportes de otros plugins
2005-04-19 09:49 ldipenti
* configure.in: Fixed typo
2005-04-14 17:20 ldipenti
* src/main.c: Feature: added some standard friendly codes an their
descriptions to the fc combo box selection
2005-04-12 18:54 ldipenti
* debian/gwp.sgml, debian/watch, src/gwp-planet.c: Feature: New
planet properties migrated to MVC format: mines, factories and
defense_posts
2005-04-12 17:57 ldipenti
* src/: gwp-game-state.c, starchart.c: Bugfix: The planet's panel
update is being executed from the planet "selected" signal
instead of being called from the click callback
2005-04-12 17:53 ldipenti
* src/gwp-game-state.c: Bugfix: The planet's panel update is being
executed from the planet "selected" signal instead of being
called from the click callback
2005-04-12 17:08 ldipenti
* scripts/inittab.py: Little mistake on event name corrected
2005-04-12 16:57 ldipenti
* scripts/inittab.py: Feature: planet's property-changed signal
added to PluginManager's event hub
2005-04-12 15:08 ldipenti
* src/starchart.c: Added check for no-natives planet
2005-04-12 14:53 ldipenti
* src/: callbacks.c, gwp-planet.c: Some messages eliminated
2005-04-12 14:44 ldipenti
* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade, main.c,
starchart.c, vp_utils.c: Feature: Planet FC interface
2005-04-10 16:56 ldipenti
* src/: gwp.glade, starchart.c: Bugfix: Planet & Ship ComboBox
migrated from GtkCombo to GtkComboBoxEntry
2005-04-09 21:42 ldipenti
* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade, main.c:
Feature: Friendly Code random modifications on planets
2005-04-09 21:41 ldipenti
* src/starchart.c: Bugfix: planet extra panel widgets get
enabled/disabled when necessary
2005-04-09 21:35 ldipenti
* src/starchart.c: When no natives on planet, disable native's tax
slider
2005-04-08 00:01 cristian
* src/: gwp-python.c, gwp.glade: Agregado de un slot en la parte
inferior de la ventana del gwp ("down")
2005-04-07 18:10 ldipenti
* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade,
starchart.c: Feature: Natives and Colonist taxes modification
2005-04-06 17:25 ldipenti
* src/callbacks.c: some more beta testings...
2005-04-06 16:43 ldipenti
* src/: callbacks.c, callbacks.h, gwp.glade: Some tests on data
modifications
2005-04-06 08:26 ldipenti
* src/callbacks.c: Trying some callbacks
2005-04-06 08:15 ldipenti
* src/gwp.glade: Activating data changes widgets (taxes hscales)
2005-04-05 16:20 ldipenti
* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: i18n strings updated
2005-04-05 16:01 ldipenti
* src/: callbacks.c, callbacks.h, gwp.glade, vp_maketurn.c,
vp_maketurn.h, vp_maketurn_global.c, vp_maketurn_kmkturn.c,
vp_maketurn_kmkturn.h: Feature: finished integrating kmkturn into
GWP!! cool!
2005-04-05 13:26 ldipenti
* src/game_mgr.c: Bugfix: data dump function was called ofrom the
wrong place
2005-04-05 13:03 ldipenti
* src/vp_maketurn_global.c: code cleanups
2005-04-05 09:21 ldipenti
* src/vp_maketurn_misc.c: Corrected syntax error
2005-04-05 09:21 ldipenti
* src/vp_maketurn_playerio.c: added some prototypes
2005-04-05 01:49 ldipenti
* src/: Makefile.am, vp_maketurn.c, vp_maketurn.h,
vp_maketurn_global.c, vp_maketurn_global.h,
vp_maketurn_kmkturn.c, vp_maketurn_kmkturn.h, vp_maketurn_misc.c,
vp_maketurn_misc.h, vp_maketurn_playerio.c,
vp_maketurn_playerio.h: Added kero's maketurn patched code,
doesn't do a thing yet...
2005-03-29 00:09 ldipenti
* contrib/gtksdl/: Makefile, README, gtksdl.c, gtksdl.h: Added
GtkSDL project to contrib section: maybe we'll use it to replace
GnomeCanvas based starchart
2005-03-28 08:19 ldipenti
* pixmaps/gwp.xpm: Forgotten XPM icon
2005-03-27 19:29 ldipenti
* src/: global.h, gwp-planet.c, gwp-py-mappings.c,
gwp-py-mappings.defs, starchart.c, vp_utils.c: Feature: the end
has come!! ships, starbases and planet data written to DAT files,
hopefully in a correct manner, so that the Tim Continuum won't
get mad :-)
2005-03-27 16:47 ldipenti
* src/: game_mgr.c, gwp-game-state.c, gwp-game-state.h,
gwp-object.c, gwp-ship.c, vp_utils.c, vp_utils.h: Feature: The
end is coming! pick up your dead!! the end is coming!! started
working on data writing: shipX.dat finished! diffs EQUAL against
PCC's shipX.dat, cool huh?
2005-03-25 20:02 ldipenti
* src/vp_utils.c: Some code cleaning and corrections on .DAT & .DIS
files treatment
2005-03-22 08:23 ldipenti
* releaser.sh, debian/README.Debian, debian/changelog,
debian/control, debian/copyright, debian/gwp.manpages,
debian/gwp.sgml, debian/rules: Last changes to make a Debian
package
2005-03-20 23:52 ldipenti
* debian/: files, gwp.postinst.debhelper, gwp.postrm.debhelper,
gwp.substvars: Some additional cleaning. Don't forget: on the
previous commit it leaked a contribution! Rafael Riedel sent a
planet and starbase images!
2005-03-20 23:49 ldipenti
* AUTHORS, CHANGES, Makefile.am, gwp.desktop.in, releaser.sh,
debian/Makefile.am, debian/changelog, debian/conffiles.ex,
debian/control, debian/copyright, debian/cron.d.ex,
debian/emacsen-install.ex, debian/emacsen-remove.ex,
debian/emacsen-startup.ex, debian/gwp-default.ex,
debian/gwp.doc-base.EX, debian/init.d.ex, debian/manpage.1.ex,
debian/manpage.sgml.ex, debian/manpage.xml.ex, debian/menu,
debian/postinst.ex, debian/postrm.ex, debian/preinst.ex,
debian/prerm.ex, debian/rules, debian/watch, debian/watch.ex,
pixmaps/Makefile.am, pixmaps/planets/planet60-69.png,
pixmaps/planets/sbase1.png, po/gwp.pot, scripts/gtkcons.py,
scripts/plugins/magallanes.py, scripts/plugins/quark.py,
src/Makefile.am: Lots of work done to make GWP Debian-friendly
2005-03-20 22:19 ldipenti
* NEWS: new news!
2005-03-20 22:18 ldipenti
* NEWS: temp remove
2005-03-17 17:17 ldipenti
* debian/Makefile.am: Debian control files added to distribution
2005-03-17 17:09 ldipenti
* debian/: changelog, control, copyright, menu, rules: Some
corrections to make deb package compatible with Debian Policy
Manual
2005-03-11 12:10 ldipenti
* src/vp_unpack.c: oops, some logical mistake on the previous
bugfix.
2005-03-11 12:02 ldipenti
* src/vp_unpack.c: Bugfix: unpack now detects if RST is WinPlan or
DOSPlan, and creates (or not) KOREx.DAT when necessary. Thanks
Cristian!
2005-03-11 09:20 ldipenti
* src/gwp-ship.c: Temporal fix: we have to know if it is a host999
game or not, for now we check it hardcoded
2005-03-09 10:42 ldipenti
* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: .po updated
2005-03-09 10:36 ldipenti
* scripts/inittab.py: Bugfix: add_plugin_slot() method didn't
reparent the widget when necessary. Thanks Cristian for the
report!
2005-03-09 07:25 ldipenti
* po/pt_BR.po, src/callbacks.c: Updated pt_BR translation, thanks
to Carlos Paulino!!
2005-03-03 18:12 ldipenti
* scripts/plugins/finder.py: Feature: Finder now auto-hides its
window when pressing ESC key, also the search entry widget
regains focus when pressing Delete key
2005-03-03 17:12 ldipenti
* scripts/plugins/finder.py, src/gwp-py-mappings.c,
src/gwp-py-mappings.defs, src/gwp-starchart.c,
src/gwp-starchart.h: Feature: when clicked on the Finder plugin
planet list, the starchart selects the planet
2005-03-03 12:12 cristian
* scripts/plugins/quark.py: Agregado la seleccion en la ventana de
quark cuando se selcciona un planeta en el Starchar
2005-03-02 19:23 cristian
* scripts/plugins/quark.py: Agregado la descripcion larga del
plugin
2005-03-02 10:17 ldipenti
* src/starchart.c: Bugfix: When waypoint set with Warp 0, GWP went
down :-) no more... thanks Nico!
2005-03-01 20:19 ncesar
* scripts/plugins/finder.py: minimal changes that afect
performance... minimally
2005-03-01 18:15 ncesar
* scripts/plugins/finder.py: Hide the box that's not in use
2005-03-01 15:53 ldipenti
* ChangeLog, debian/files, debian/gwp.postinst.debhelper,
debian/gwp.substvars: Misc Commit
2005-03-01 08:45 ldipenti
* src/starchart.c: Disabled planet names
2005-03-01 00:26 ldipenti
* CHANGES, Doxyfile, VERSION, configure.in, debian/changelog,
package/gwp-fedora.spec, package/gwp-mdk.spec, po/Makefile.in.in,
scripts/plugins/finder.py, src/callbacks.c, src/starchart.c:
Release 0.3.6 commit, yeah!
2005-02-28 19:19 cristian
* scripts/plugins/quark.py: Corregidos bugs de control de limite de
poblacion y reactivacion del icono al seleccionar un planeta
despues de una nave.
2005-02-25 02:59 ldipenti
* scripts/plugins/finder.py: Feature: new cool features to finder
plugin by Nicolas!!!
2005-02-24 16:51 cristian
* scripts/plugins/quark_files/Makefile.am: Missing tips file
2005-02-24 16:38 ldipenti
* src/starchart.c: Bugfix: When natives=0, we don't need to show
happiness data on the panel
2005-02-24 16:20 ldipenti
* src/vp_utils.c: Bugfix: Natives SPI sometimes came != 0 when
natives=0...check done!
2005-02-24 15:58 ldipenti
* help/C/figures/message-reader.png: Bugfix: missing help figure
added
2005-02-22 10:24 cristian
* scripts/plugins/quark.py: Solucionado conflicto con el reporte en
ventana
2005-02-20 18:14 cristian
* scripts/plugins/quark.py: Constantes
2005-02-20 18:12 cristian
* scripts/plugins/quark_utils.py: Agregado de algunas constantes
2005-02-01 09:42 cristian
* scripts/plugins/quark_files/quark_tips.txt: Consejos para el area
de notificacion.
2005-01-31 11:54 cristian
* scripts/plugins/quark.py: Agregado y corregido el chequeo de
temperatura de los planetas.
2005-01-31 09:57 cristian
* scripts/plugins/: quark.py, quark_utils.py: Reestructuración del
sistema de creacion de reportes. Muchos cambios.
2005-01-28 11:14 cristian
* scripts/plugins/: quark.py, quark_utils.py: Fusionado del reporte
en ventana y notificacion
2005-01-27 12:16 cristian
* scripts/plugins/quark.py: Arreglado el calculo de max income
natives
2005-01-27 11:17 cristian
* scripts/plugins/quark.glade: Desabilitados los controles de
edicion de datos
2005-01-27 09:28 ldipenti
* src/gwp-starchart.c: Bugfix: when selecting a planet, it emits a
"selected" signal
2005-01-27 08:36 cristian
* scripts/plugins/: quark.glade, quark.py, quark_utils.py: Uso del
Notification area listo!
2005-01-26 20:42 ldipenti
* scripts/: inittab.py, plugins/magallanes.py, plugins/quark.py:
Bugfix: all plugins should call their parent's constructor at
their own constructor. This was causing the segfault on signal
connection
2005-01-26 14:16 cristian
* scripts/plugins/: quark.py, quark_utils.py: Listo el uso del area
de notificacion
2005-01-26 12:31 ldipenti
* scripts/inittab.py: Temp fix: registered signal connection from
plugi manager when registering a plugin causes a segfault,
commented out
2005-01-26 11:52 ldipenti
* scripts/plugins/quark_files/Makefile.am: Oops, missed file!
2005-01-26 11:31 ldipenti
* scripts/inittab.py: Typo: event hub notificatons change: - for _
2005-01-26 11:29 ldipenti
* scripts/inittab.py: Bugfix: plugin manager routes events through
its HUB when plugins are registered/unregistered
2005-01-26 10:05 ldipenti
* configure.in, scripts/plugins/Makefile.am: Added control files to
automatically install Quark plugin
2005-01-26 09:49 cristian
* scripts/plugins/quark_utils.py: Agregado de algunas constantes
2005-01-26 09:39 cristian
* scripts/plugins/quark_files/: quark_amarillo.gif, quark_rojo.gif,
quark_transp.gif, quark_verde.gif: Iconos del plugin Quark para
el area de notificacion
2005-01-25 17:04 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h, gwp-py-mappings.c,
gwp-py-mappings.defs: Several host settings getters functions
added to GwpGameState. More in the works!
2005-01-25 13:03 cristian
* scripts/plugins/quark.py: Minor fix
2005-01-24 20:21 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h, gwp-planet.c,
gwp-py-mappings.c, gwp-py-mappings.defs: Bugfix: Max population
calculation now uses host settings when the climate is extreme
2005-01-24 13:36 cristian
* scripts/plugins/quark.py: Agregado el chequeo de los planetas
inospitos, falta terminar
2005-01-24 00:11 ldipenti
* scripts/: inittab.py, plugins/notification_area.py: Feature:
Plugin class now is a GObject subclass that emits an
'unregistered' signal when it's eliminated from the plugin
system, allowing other plugins to be noticed when this happens.
2005-01-20 16:34 ldipenti
* scripts/: inittab.py, plugins/Makefile.am,
plugins/notification_area.py: Feature: New plugin
'NotificationArea', to allow other plugins to publish their own
alerts to the user. Added some utility methods to PluginManager
to get reference of active plugins, check plugin states, etc...
2005-01-20 12:04 ldipenti
* src/gwp.glade: Feature: plugin slots now support multiple
"applets"
2005-01-20 10:59 ldipenti
* src/gwp-python.c: Bugfix: slot names shortened
2005-01-19 20:33 ldipenti
* scripts/inittab.py, src/gwp-python.c, src/gwp.glade: Feature:
Added two more slots: plugin_slot_left and ..._right. Added
remove_plugin_slot() method to PluginManager.
2005-01-19 13:35 cristian
* scripts/plugins/quark.py: Agregado la notificacion de planetas
orbitado pero sin dueño, con errores.
2005-01-19 12:40 ldipenti
* scripts/inittab.py, src/gwp-python.c, src/gwp.glade: Feature:
Added basic plugin UI slots addition to main GWP's UI
2005-01-19 11:46 cristian
* scripts/plugins/quark.py: minor changes
2005-01-15 15:05 cristian
* scripts/plugins/quark.py: [no log message]
2005-01-14 18:50 ldipenti
* src/: gwp-py-mappings.c, gwp-py-mappings.defs, gwp-ship.c,
gwp-ship.h: Feature working: GameState can be retrieved from
Python. Current planet and ship selected can be obtained using
GwpGameState's new methods get_selected_[planet|ship].
2005-01-14 18:40 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h: Feature: added methods
to game state to store current selected planet and ship, not
working ... fixing ...
2005-01-14 13:21 ldipenti
* generate_py_mappings.sh, src/gwp-py-functions.c,
src/gwp-py-functions.h, src/gwp-py-mappings.c,
src/gwp-py-mappings.defs: Feature: GwpGameState exported to
Python. Added method to obtain actual game_state object to gwp
module.
2005-01-14 13:03 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h, vp_utils.c: Feature:
GwpGameState now stores the current selected planet and ship IDs
2005-01-14 12:51 ldipenti
* src/callbacks.c: Bugfix: ship selection signal emission was not
in the correct place
2005-01-13 20:48 cristian
* scripts/plugins/quark.py: Ordenado de las funciones y agregado de
la verificacion de happ para los colonos.
2005-01-13 13:15 cristian
* scripts/plugins/quark.py: Desconeccion de las señales al
desregistrar el plugin y arreglado de los mensajes de estado de
felicidad.
2005-01-12 14:11 cristian
* scripts/plugins/quark.py: Agregada la emision de señales y
comienzo del manejo de msjs para el area de notificacion, por
ahora la salida es al stdout
2005-01-11 12:46 cristian
* scripts/plugins/quark.py: Now Quark center the starchart in the
planet selected from his list of planets in the Quark window.
2005-01-11 12:17 ldipenti
* generate_py_mappings.sh, src/gwp-py-mappings.c,
src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
src/gwp-starchart.c, src/gwp-starchart.h: Feature: Added some
starchart wrapper functions to GwpStarchart to be able to do
basic things on the starchart from Python
2005-01-10 20:13 ldipenti
* src/gwp-planet.c: Agh, more errors squashed!
2005-01-10 20:05 ldipenti
* src/gwp-planet.c: More calc corrections on tax collection
2005-01-10 19:42 ldipenti
* src/starchart.c: Some dumb errors corrected (capo Cristian!)
2005-01-10 19:28 ldipenti
* src/starchart.c: oops! bad comparison
2005-01-10 19:24 ldipenti
* src/starchart.c: Bugfix: natives tax earnings miscalculated, now
it takes into account the colonists tax collection capacity,
depending on the race. Thanks Cristian!
2005-01-10 19:18 ldipenti
* src/: gwp-planet.c, starchart.c, vp_utils.c: Bugfix: Unowned
planets with (own) ships orbiting didn't showed any data on the
extra panel. Thanks Cristian!
2005-01-10 18:43 ldipenti
* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
gwp-py-mappings.defs, starchart.c: Bugfix: Unowned planets with
(own) ships orbitin didn't showed the data on the panel. Thanks
Cristian!
2005-01-10 01:50 ldipenti
* src/: callbacks.c, game_mgr.c, starchart.c, starchart.h: Enhanced
mini starchart feature - still buggy though...
2005-01-10 00:45 ldipenti
* scripts/inittab.py: Disabled debugging msg
2005-01-09 21:22 ldipenti
* src/vp_utils.c: removed output spanish message
2005-01-09 20:18 cristian
* scripts/plugins/quark.py, src/gwp-planet.c, src/gwp-planet.h,
src/gwp-py-mappings.c, src/gwp-py-mappings.defs, src/vp_utils.c:
Fixed 2 functions of tax_rate, and 1 deleted, Several changes in
Quark plugin
2005-01-07 17:25 ldipenti
* src/: gwp_types.c, gwp_types.h, starchart.c: Little bugfix:
sensor sweep area in its own canvas group, so now can be seen
correctly
2005-01-07 15:38 ldipenti
* src/global.h: Changed scanner colors
2005-01-07 15:36 ldipenti
* src/gwp_types.h: updated header
2005-01-07 15:36 ldipenti
* src/gwp_types.h: cleaned unused code
2005-01-07 12:41 cristian
* scripts/plugins/quark.py: Agregado de las funciones de mining
rate y tax rate.
2005-01-07 12:09 ldipenti
* src/gwp-planet.c: Bugfix: amorphous' tax rate is 0
2005-01-06 19:27 ldipenti
* src/gwp-planet.c: Some code cleanups
2005-01-06 12:49 cristian
* scripts/plugins/quark.py: Agregado de comentarios y renombrado de
algunas funciones.
2005-01-06 10:32 ldipenti
* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
gwp-py-mappings.defs: Bugfix: corrected a calculation problem
entered with on the last commit
2005-01-05 21:04 ldipenti
* src/: gwp-planet.c, race.c, race.h: Bugfix: tax rates taken from
the host config data, it was hardcoded.
2005-01-04 14:54 ldipenti
* src/: global.h, gwp-game-state.c, gwp-game-state.h, starchart.c:
Feature: Added sensors sweep area to "scanner area feature" in a
lighter blue color
2005-01-04 00:30 ldipenti
* src/: gwp-game-state.c, gwp-game-state.h, gwp-planet.c,
gwp-planet.h, gwp-py-mappings.c, gwp-py-mappings.defs: Added Host
default settings values to GwpGameState and some functions to
GwpPlanet querying those values
2005-01-03 00:24 ldipenti
* debian/files, debian/gwp.substvars, po/de.po, po/es.po, po/fr.po,
po/gwp.pot, po/pt_BR.po: Nonsense...this modifications were made
by the automatic super-duper releaser script.
2005-01-03 00:20 ldipenti
* src/gwp-game-state.c: Added variables to store host configuration
parameters...wow they're a lot!
2005-01-02 17:04 cristian
* scripts/plugins/: quark.glade, quark.py, quark_utils.py: Several
fixes
2005-01-02 16:13 ldipenti
* configure.in: Fixed typo on PCRE cflags
2005-01-02 16:08 ldipenti
* src/callbacks.c: Updated credits in "about..." dialog
2005-01-02 02:31 ldipenti
* CHANGES, ChangeLog, Doxyfile, Makefile.am, VERSION, configure.in,
debian/changelog, package/gwp-fedora.spec, package/gwp-mdk.spec:
Release 0.3.5 commit, yeah!
2005-01-02 01:43 ldipenti
* src/: global.h, gwp-planet.c, starchart.c, vp_utils.c: Bugfix:
messages are scanned to extract info about enemy planets
2004-12-30 12:09 cristian
* scripts/plugins/quark.py: Agregado de unas constantes
2004-12-30 12:08 cristian
* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Un poquito
mas...
2004-12-30 12:07 cristian
* docs/tutorials/plugins/example1.py: Minimal fix
2004-12-28 18:59 cristian
* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Extensión del
cap 1
2004-12-27 19:37 cristian
* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Explicacion
del codigo del ejemplo 001
2004-12-24 11:05 cristian
* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Correciones
ortográficas y algo de texto 1er cap
2004-12-21 19:25 ldipenti
* src/vp_utils.c: Regexp working!!!
2004-12-21 18:43 ldipenti
* src/vp_utils.c: some regexp testing
2004-12-21 13:57 cristian
* docs/tutorials/plugins/images/: 01-glade-main-thumb.png,
02-glade-new-project-thumb.png, 03-glade-palette-thumb.png,
03-glade-palette.png, 04-glade-new-window1-thumb.png,
05-glade-window1-properties-thumb.png,
05-glade-window1-properties.png, 06-glade-window1-signals.png,
08-glade-window1-vbox1-thumb.png,
09-glade-window1-hbuttonbox1-packing-thumb.png,
09-glade-window1-hbuttonbox1-packing.png,
10-glade-window1-label1-properties-thumb.png,
10-glade-window1-label1-properties.png,
12-glade-window1-final-design-thumb.png: Imagenes utilizadas en
el tutorial de plugins
2004-12-21 13:50 cristian
* docs/tutorials/plugins/: example1.py, example1_00.py,
gwp_plugins_tutorial_en.xml, gwp_plugins_tutorial_es.xml,
project1.glade: Primer version del tutorial de plugins
2004-12-21 12:27 cristian
* scripts/plugins/quark.py: Minor fix
2004-12-21 12:10 cristian
* scripts/plugins/quark.py: Arreglado los paths
2004-12-21 11:59 cristian
* scripts/plugins/: quark.glade, quark.py, quark_utils.py:
Primer version del plugin quark
2004-12-20 20:27 ldipenti
* src/: gwp.glade, main.c, starchart.c, vp_utils.c: Bugfix: "Close
Game" menu disabled, this feature does not work 100% ok
2004-12-20 20:05 ldipenti
* tests/Makefile.am: Added missing thingies to compile the big fat
brick called gwp
2004-12-20 19:55 ldipenti
* src/game_mgr.c: Bugfix: added some ifdef's to exclude some code
depending on Python support.
2004-12-20 17:14 ldipenti
* src/: vp_utils.c, gwp-messages.c, gwp-messages.h: initial tests
on message scanning
2004-12-06 00:28 ldipenti
* configure.in, generate_py_mappings.sh, releaser.sh,
scripts/plugins/Makefile.am, src/Makefile.am, src/global.h,
src/gwp-messages.c, src/gwp-messages.h, src/gwp-py-mappings.c,
src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
src/vp_utils.c, src/vp_utils.h: Works toward accesing vital data
from message system. Added new dependency: libpcre (for scanning
messages)
2004-12-06 00:26 ldipenti
* src/: gwp-race.c, gwp-race.h: New GObject: GwpRace represents the
various forms of calling any race, maybe later I'll put the other
race specific configurations here
2004-12-05 16:41 ldipenti
* src/: gwp-messages.c, gwp-messages.h, message-reader.c: Minor
correction: bool, true and false types changed to gboolean, TRUE
and FALSE
2004-12-04 15:59 ldipenti
* src/gwp-messages.c: Several minor function fixes, additions,
etc...
2004-12-03 12:22 ldipenti
* src/: gwp-messages.c, gwp-messages.h: Deleted unnecessary code
2004-12-01 19:20 cristian
* scripts/plugins/: magallanes.py, vp_utils.py: Coments
2004-11-26 10:25 ldipenti
* po/Makefile.in.in, po/POTFILES.in, po/de.po, po/es.po, po/fr.po,
po/gwp.pot, po/pt_BR.po, scripts/plugins/magallanes.glade,