forked from Remmy/afterstep
-
Notifications
You must be signed in to change notification settings - Fork 12
/
ChangeLog
8393 lines (6705 loc) · 308 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
CHANGELOG
----------------------
[2013-04-01: Sasha Vasko]
* AfterStep 2.2.12 release
* updated configure script to remove old privacy notice and add install
instructions.
* Added tools/git-cl.sh for ChangeLog generation and updated Makefile.in
accordingly
[2013-03-25: Sasha Vasko]
* Fixed _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING publishing on 64bit
oses to convert Window Ids to 32bit. Fixes window lit not showing in
gnome-panel and other GNOME apps. Added handling of _NET_WM_STATE_FOCUSED as
per Extended WM Hints spec. Added corresponding ClientMessage handling.
Fixed handling of AS desktop number to GNOME desktop number translation.
That fixes window focusing using GNOME pager and window list.
[2013-03-21: Sasha Vasko]
* added instruction for installation under different environments
* Added configure check for GSettings. Apparently it's missing in older
libgio.
[2013-03-20: Sasha Vasko]
* Fixed includes for GSettings stuff in afterstep/dbus.c Added couple web
backgrounds
[2013-03-15: Sasha Vasko]
* Updated Quit menu to differentiate Logout/QuitWM/Restart
* Changes to integrate with KDE: Fixed desktop switching, added integration
with KSMServer
[2013-03-14: Sasha Vasko]
* Fixed compile - instead of linking to glib we now link to gio - was causing
compile problems without svg support
[2013-03-12: Sasha Vasko]
* Replaced old IRC icon Fixed memory leak in Feel/ComplexFunction parsing -
need to init functions list. Added functionality to Wharf to check if
Logout/Restart/Shutdown/etc are available. Fixed Wharf to hide NOP buttons.
[2013-03-11: Sasha Vasko]
* Updated IRC icon
[2013-03-10: Sasha Vasko]
* Added code to convey remapping of the functions to modules through non-con
file.
[2013-03-09: Sasha Vasko]
* Added missing file SpeechBubble
[2013-03-08: Sasha Vasko]
* changes to convey to modules which functions are disabled through file in
non-c
[2013-03-05: Sasha Vasko]
* Implemented Suspend and Hibernate command using UPower through dbus Added
icons for sleep, shutdown and better icon to replace MusicalNote
* Implemented SystemShutdown command to utilize gnome-session to request
system shutdown/reboot/suspend. Implemented Logout command to logout session
when running under gnome-session Made Restart command disabled when running
under gnome-session Added Logout icon, from Open Clipart Library (author
warszawianka) Added change_func_code function to change the meaning of a
function (only works if called before the parsing)
[2013-03-04: Sasha Vasko]
* Adjusted icon finding algorithm to not try .Z .gz extension when png, tiff
or jpeg is present Removed $PATH from image search paths since it was
causing executables to be probed. Added check for image already loaded
Disabled icon theming whenever filename contains directory names Disabled
search whenever image filename is a full path.
[2013-02-28: Sasha Vasko]
* Added menu exclusions by item's category, not just item name Fixed icon
loading to hit places, devices, actions and categories Fixed minor bug in
endless recursion on loading CategoryTree Added submenus to System Settings
menu
[2013-02-25: Sasha Vasko]
* Fixed re-rendering of transparency in ASMount on background change
* Applied Debian patch 13, fixing feel.DEFAULT and adding feel.Debian
* Added xterminal menu entry as per Debian patch 10
* applied debian patch 06-AsDocGen fix for NROFF generation
* applied patch 00 from .deb partially - all except deb-specific stuff
[2013-02-21: Sasha Vasko]
* Added web backgrounds for Mountains and Water
[2013-02-16: Sasha Vasko]
* Fixed startup code to wait for autostarted windows to finish mapping before
switching to normal running mode. Fixed hard to trigger race condition
capable of locking Afterstep into select() from modules before we are
actually ready to send.
[2013-02-13: Sasha Vasko]
* Added dbus functionality to query ConsoleKit (to be used with
Shutdown/sleep/hibernate functionality) Traced the issue with gnome-session
restoring or not restoring the last session to patch in Ubuntu disabling
the functionality
[2013-02-11: Sasha Vasko]
* Fixed bug in uninitialized variable in sassion state saving code. Added code
to check if gnome-session has autosave-session, and skip session managed
windows in this case. Updated config.h.in
* re-indent on libAfterStep, libAfterConf and libASGTK
* re-indented afterstep libs
[2013-02-08: Sasha Vasko]
* reformated/indented afterstep proper
* Minor bugfixes in session shutdown code work workspace file writing and
timer setup.
[2013-02-01: Sasha Vasko]
* Rewrote handling of window groups; Changed saving session to save only one
command for each window group (with --sm-client-id) Fixed pointer placement
to obey avoid cover
[2013-01-31: Sasha Vasko]
* Tweaks to session state saving and restoring Better shutting down of apps on
session end.
* Implemented proper session shutdown with closing of running apps
[2013-01-30: Sasha Vasko]
* Fixed Gnome session management support to send EndSessionOk message to the
correct interface and our client path
* Fixed move/resize code to properly account for virtual coordinates and
changes in viewport. Minor tweaks to Makefiles for shorter output
[2013-01-28: Sasha Vasko]
* Fixed debian alternatives installation with hopefully correct path
* Completed gnome session management protocol support implementation. May need
to add requirement for notiofications daemon in .session file
[2013-01-27: Sasha Vasko]
* small big in environment rewriting code
[2013-01-25: Sasha Vasko]
* Partially sorted out session manegement with Gnome Session Manager including
registration, end of session, as well as Notifications. Still work in
progress, some interfaces have to be implemented
[2013-01-24: Sasha Vasko]
* Added functionality to display Minipixmap for any web background that was
previously donloaded Added AfterStep.session file for gnome-session Fixed
locations and contents of .desktop file to get session management to work
somewhat. AfterStep should be started through gnome-session if available.
[2013-01-22: Sasha Vasko]
* Fixed vertical layout of ASMount
* Added popular backgrounds from vladstudio.com
* Added web backgrounds from Digital Blasphemy and vladstudio.com
[2013-01-19: Sasha Vasko]
* Added MyStyles for ASMount Started implementation of Notification messages
using dbus
[2013-01-18: Sasha Vasko]
* Fixed segfault when Module config file is missing
[2013-01-17: Sasha Vasko]
* Fixed all looks except for DEFAULT missing MenuBalloons Fixed segfault in
Backgrounds Menu Fixed web backgrounds, now Preview works as well.
* Added 2 web backgrounds from flickr.
[2013-01-04: Sasha Vasko]
* Attention: This is commit has bugs! There is a Segfault in Menu
functionality
[2013-01-02: Sasha Vasko]
* added unexpand script to handle broken indenting in the source code
[2012-12-28: Remco Rijnders]
* Improved allocation logic of buttons on the WinList
* Remove unused Options code
* Reindented WinList.c
[2012-12-27: Sasha Vasko]
* Implemented functionality to use urls as the source of ForeignBackground
(utilizing wget) with local caching of downloads
[2012-12-27: Remco Rijnders]
[2012-12-26: Sasha Vasko]
* Fixed compile warnings in libAfterBaseand libAfterImage
* Fixed bug in check_astbar_point and updated base.in to work with icon themes
* Added missing ASMount.c
* Added icons and buttons for ASMount
* Added Icon theme support, ASMount config file handling, GLIB detection minor
cleanups and bugfixes.
[2012-12-24: Sasha Vasko]
* Updated build files for new version of AS and to include ASMount
* Added ASMount module for storage Volume manipulation
[2012-11-16: Remco Rijnders]
* Update Release Guide to use git, change reference to freshmeat
* Remove obsolete files -- everyone who is going to upgrade from these
versions already has
[2012-11-15: sasha]
* Added ASMount tool to handle dbus volume management stuff
* applied docs patch from Remco Rijnders removing old READmes
[2012-11-15: Remco Rijnders]
* Updated TEAM members file
* Include warning to outdated localised README files
* Update README file
* Remove old ChangeLog file and add pointer to VCS for it in current changelog
[2012-11-14: sasha]
* Added patch to compile with libexecinfo. Contributed by Naohiro (gentoo)
[2012-11-05: sasha]
[2012-10-17: sasha]
* updated to fix compilation problems related to newer autoconf, plus session
.desktop file
[2012-09-06: Remco Rijnders]
* Update support information
[2012-07-12: sasha]
* fixed compilation of ASRun when gtk is unavailable
* fixed compilation of ASRun when gtk is unavailable
[2012-07-03: sasha]
* updated todo
[2012-06-27: born2late]
* fix so afterstep will compile without gtk
[2012-02-29: born2late]
* version of the aterm logo with higher contrast (through shadow/glow)
[2012-02-01: born2late]
* yeah, fixme count lowered after a looong time
* fixed wrong description of this item
[2011-12-09: speedy]
[2011-12-08: speedy]
* bring modules under one topic
* added docs for Banner, afterstep. cleaning up documentation menus.
[2011-12-07: speedy]
* added Ident and GWCommand under ASDocGen
[2011-12-06: speedy]
* changed link to sourceforge bug tracker
* updated thumbnail cache to actually work without debian submenu
[2011-12-05: speedy]
* added debian patches 20, 31, 35; gentoo patches ldflags and libpng15
[2011-12-01: speedy]
* more tweaks from debian, most of patch 12
* added debian sensible browser, debian patch 05
* added debian tweaks and fixes, patches 01,11,21,33,34,36,38
* added debian gcc warning, segfault, and compile fixes
* added debian typo fixes from patches 22, 24, 28, 29, 37
[2011-06-29: sasha]
* no message
[2011-01-28: sasha]
* Added check if the header was already included
* Moved BMP related code to bmp.c as windows headers conflict with libjpeg
[2011-01-14: sasha]
* Updated the ChangeLog for release
* AfterStep release v 2.2.11
[2011-01-13: sasha]
* Changed version to 2.2.11 and fixed build to compile ASWallpaper
[2010-10-06: sasha]
* fixed bug in window circulation causing second window skipped all the time
[2010-09-23: sasha]
* fixed memory leak in xcf file loading
* fixed memory leak in tga image loading
* fixed minor memory leak in gif saving code.
* fixed memory leak in xml processing on image loading
* fixed major memory leak at vectorize_asimage
* Fixed BMP writing to not set compression to 1 - we don't use any
[2010-09-15: sasha]
* fixed possible dereferencing of NULL pointer in asimage_destroy (minor)
[2010-09-08: sasha]
* trimmed some dead code
* fixed visual2visual_prop bug in *size usage
* fixed param hidden warnings
* corrected usage of get_xpm_string() to use proper enum value
[2010-09-03: sasha]
* Fixed possible memory leak in xpm code when image is too big
* fixed unlikely but possible (if height>width) buffer overrun bug in gradient
generation code
* Fixed unlikely but possible use of uninitialized variable in
ASImage2xpmRawBuff
* Fixed unlikely but possible use of uninitialized variable in
ASImage2xpmRawBuff
[2010-06-22: vae]
[2010-05-20: sasha]
* updated to libjpeg v.8b
[2010-01-29: sasha]
* added transupp to libjpeg just in case
* upgraded built-in libjpeg to version 8
[2009-12-31: sasha]
* Fixed bug in handling of icon size when icon size provided in ExtWM property
is corrupt
* added more debugging to figure out how zero length icon properties crash
afterstep
[2009-12-23: sasha]
* MOre flexible handling of titlebar button info sharing between modules to
accomodate for wide range of configs
[2009-12-11: sasha]
* fixed segfault in on look change where previous look has obsolete font
settings
[2009-11-12: sasha]
* fixed export.c to properly assign default export values using union members
- contributed by Axel Naumann
[2009-10-14: sasha]
* fixed annoying ICC warnings in mystrdup use without libAfterBase
[2009-10-13: sasha]
* minor fix in afterbase.c to correct ambiguity in evaluation order
[2009-10-05: sasha]
* fixed -v command line arg handling
[2009-09-30: sasha]
* applied contributed WarpPointer patch to make warping of pointer on viewport
change a feel option
[2009-08-25: sasha]
* fixed ascompose to build without X libs
* fixed X Connection initialization to set up global vars in ALL cases - that
was causing ASGTK apps to fail
* fixed ascompose to build without X libs
[2009-07-20: sasha]
* fixed missing include for session.h causing grief to package managers
[2009-07-15: sasha]
* added SkipPager database flag to exclude windows from the Pager's view
[2009-05-04: sasha]
* updated ChangeLog for the release
* AfterStep release v 2.2.9
[2009-04-03: sasha]
* added detailed instruction for ascolor usage
[2009-04-02: sasha]
* cleaned up WinTabs tab grouping - added config options to switch it on and
set group name separator
[2009-04-01: sasha]
* fixed segfault in Session Manager registration when session manager is not
available or sm_client_id is otherwise empty
* disabled minipixmap loading when MenuMiniPixmaps are off
[2009-03-18: sasha]
* added ifdef to avoid double fclose under MSVC2005 and newer
* added ifdef to avoid double fclose under MSVC2005 and newer
* added ifdef to avoid double fclose under MSVC2005 and newer
[2009-03-06: born2late]
[2009-03-02: born2late]
* just checking if commit is working after this long time
[2009-02-11: sasha]
* Got rid of dpy global variable in libAfterBase and libAfterIMage for good.
Moved it into libAfterStep instead, as it incorporates screen handling
functionality.
[2009-01-30: sasha]
* fixed warning in jpeg2ASImage
[2009-01-16: sasha]
* fix to fill_hline_colored to work on scratch canvas + some debugging of
reported fill bugs on 64bit systems
[2009-01-13: sasha]
* fixed aliasing for drawing with brush wider then 1x1; Fixed areas of low
intensity inside solid lines
* fixed clipping in straight ellips drawing where y+ry > height
* added missing declaration of Bool asim_set_custom_brush_colored()
[2009-01-12: sasha]
* somewhat fixed drawing with ARGB brush over ARGB canvas; Still unclear what
would happen if those are different ;
[2008-12-17: sasha]
* added RegisterClient message to dbus stuff
* fixed memory leak in ASImage2gif file needed to be closed even after Egif
closes it too
* fixed Makefile to work on FBSD/Gentoo
[2008-12-16: sasha]
* added --sm-client-id startup option to AfterStep
[2008-12-05: sasha]
* more gnome interaction stuff
* compie bug fix
[2008-12-04: sasha]
* added rudimentary dbus connectivity
* added rudimentary dbus connectivity
[2008-12-02: sasha]
* fixed silly bug in asvector where inserted elems would not increase size of
the vector
[2008-11-12: sasha]
* fixed references to the global variable dpy in GLX code
[2008-11-06: sasha]
* fixed a segfault in WinTabs and tabs rearranging on removal from the group
* fixed a segfault in WinTabs and tabs rearranging on removal from the group
[2008-09-30: sasha]
[2008-09-16: sasha]
* fixed focusing of the tabs on new window swallow when it gets added to
unselected group
* tweaks to layout of the grouped tabs
[2008-09-15: sasha]
* fixed element re-location code in vector
* implemented tab grouping functionality in WinTabs
[2008-08-15: sasha]
* added utility to check if glyphs are available in the font for a certain
char or a list of chars
[2008-07-28: sasha]
* copyright update
* added new function ExecInDir <dirname> <command> to run command using
dirname as current dir. Added --cwd cmd line flag to ASRun to make use of
ExecInDir
[2008-07-11: jeremy]
* Fresh updates to Sound2
[2008-07-02: sasha]
* disabled mapping on frame sooner then later as it ruins initial placement
[2008-07-01: sasha]
* changed destroy_string to be a function instead of a macro to avoid
excessive compiler warnings
* compile bugs in linAfterConf
[2008-06-30: sasha]
* added pointer warping on viewport shifts while move-resizing windows; added
focus hiding on viewport change to prevent misdirected input
* disabled pointer warping on viewport change
[2008-06-25: sasha]
* tweaks to initial window mapping time
[2008-06-24: sasha]
* fixed afterstep proper and wintabs to avoid refreshing decorations when
window is offscreen
* Fixed root pixmap setting - to handle XKillClient failures and not free
pixmap after it was put on the root
[2008-06-23: sasha]
[2008-06-18: sasha]
* Updated ChangeLog for libAfterImage 1.18 release
* libAfterImage 1.18 release
[2008-06-13: sasha]
* implemented EdgeResistanceToDragging setting
[2008-06-10: sasha]
* compile bugs without X fixed
* compile bugs without X fixed
[2008-06-02: sasha]
* added missing scanline.h
[2008-05-30: sasha]
* additional logic to avoid red/blue artifacts
[2008-05-29: sasha]
* implemented some 12-bps raw image processing- demosaicing
[2008-05-15: born2late]
[2008-05-02: sasha]
[2008-04-23: sasha]
* Fixed build on non-gcc compilers
[2008-04-17: sasha]
* preliminary support for loading RAW camera photos stored as tiff images with
CFA data - still need to implement interpolation, white balance, and
leveling
* preliminary support for loading RAW camera photos stored as tiff images with
CFA data - still need to implement interpolation, white balance, and
leveling
* compile warning on signed/unsigfned comparison
[2008-04-10: sasha]
* fixed alpha overflow in color2alpha
[2008-04-07: sasha]
* implemented color2alpha method from GIMP without color correction that was
damaging the image. Complete with color2alpha xml tag
[2008-04-03: sasha]
* implemented pixelization filter
[2008-04-01: sasha]
* some refactoring of config writing code
[2008-03-28: sasha]
* more work on asgtklookeditor - reimplemented using MyStyleDefs and
LookConfig
[2008-03-25: sasha]
* compile bug on old compilers
* fixed bug in Pager where shading/unshading causes Pager to grow in size if
border width > 0
* try once again to fix the sizing bug in Pager
[2008-03-24: sasha]
* fixed handling of Pager resizing by either a geometry or wharf or wm
* fixed bunch of compilation bugs showing up on old systems
[2008-03-21: sasha]
* added functionality to ASLookEditor to safe MyStyles into library
[2008-03-20: sasha]
* reimplemented MyStyle parsing using generic code; added Name and Comment to
MyStyle;
* keyword_macro.h
[2008-03-18: sasha]
* prototyped support for MyStyle library
[2008-03-17: sasha]
* hopefully fixed syslimit.h warnings on FBSD
[2008-03-07: speedy]
[2008-03-07: sasha]
[2008-03-06: speedy]
* added some additional icon paths.
[2008-03-06: sasha]
* fixed endless recursion into syntaxes in ASDocGen
* minor optimization of ASDocGen
* fixed problem with docs having spaces in filenames
[2008-03-05: sasha]
* disabled build for Sound2 for now
[2008-03-04: sasha]
* fixed segfault in xcf code where layer is larger then image
* updated NEW and ChangeLogs for release 2.2.8
* AfterStep release v. 2.2.8
[2008-03-02: jeremy]
* Additional GTK File Sorting fixes
[2008-02-29: sasha]
* some more brainstorming as related to aftershow design
[2008-02-28: sasha]
* fixed window list saving into workspace_state file to skip shortlived
windows
[2008-02-26: sasha]
* updated afterbase.c to include new stuff from libAfterBase for xml
[2008-02-22: sasha]
* channged handling of configureRequests to not move window around to avoid
AvoidCover windows in layers above it
* fixed selection rectangle sizing when desktop is not exact multiply of
screen size
[2008-02-19: sasha]
* xml manipulation code added
[2008-02-17: sasha]
[2008-02-16: sasha]
* started implementing aftershow client to be used by shell scripts to
redirect stdio to aftershow
* fixed asfont get_glyph_map to not confuse compilers into thinking that there
might be uninitialized stuff
[2008-02-15: sasha]
* added code to handle client connections and input to aftershow
* updated libAfterImage.mak
[2008-02-14: sasha]
* added socket setup code - need to move socket.c in here in case afterbase is
unavailable
* more X initialization code for aftershow
[2008-02-13: sasha]
* implemented possibility to define exact size of the virtual desktop, which
may not be exact multiply of the screen size
[2008-02-11: speedy]
* added additional text-based web browsers.
* added additional text editors.
[2008-02-11: sasha]
* implemented symlink chacking and DesktopEntry checking while determining if
text editor or web browser require term to run
[2008-02-08: sasha]
* started implementing aftershow daemon
* started work on aftershow daemon
* started work on aftershow daemon
* fixed memory leak in ascompose processing in interactive mode
* compile warning on solaris in pixmap.c
[2008-02-07: sasha]
* fixed compile warning with gcc 4.3
[2008-02-06: sasha]
* fixed compile warnings in asfont.c in win32
* removed old png files from project
* fixed png.h to properly include zlib.h on windows and undeffed stdint.h on
win32
[2008-02-05: sasha]
* changed logging to always append to log and not overwrite it
* fixed missing parameters for spawn_child
* hopefully fixed restarting functionality when running from under gdm and
when AS is not in the PATH
[2008-02-04: sasha]
* fixed previous fix for AS restart under FC
[2008-02-02: speedy]
* added bug tracker info to About AfterStep Menu
[2008-02-02: jeremy]
[2008-02-01: sasha]
* fixed makefile to not reference obsolete libong files
[2008-01-28: jeremy]
[2008-01-26: jeremy]
* Added new sound conf option. Adding more error control to Sound2.
[2008-01-25: sasha]
* added functionality to ascompose to allow for constantly updating display of
stuff; command line should be: script.sh | ascompose -I --endless
--click-timeout 0 -q -f -;
[2008-01-24: sasha]
* fixed window move/resize where window would get resized even after button
release
[2008-01-24: jeremy]
* Additional notes added to Sound2 code, minor cleanups.
[2008-01-23: jeremy]
* minor notes added to sound2 module files
* global Makefile will (attempt) to compile Sound2 module
[2008-01-23: born2late]
* actual version - not updating - maybe sasha can help
[2008-01-22: jeremy]
[2008-01-18: sasha]
* implemented full color drawing in draw.c using prototypes from ROOT by
Valeri Onuchin. Needs testing and and changes to aply_context()
* changed draw.c to use 32bit values in canvas, possibly to enable rendering
in all 4 channels in future - need more work
[2008-01-17: sasha]
* fixed handling of grayscale PNG images with bit depth < 8
[2008-01-16: sasha]
* partially fixed segfault on loading grayscale PNG images
* fixed segfault on loading grayscale PNG images
* fixed bug in Makefile
* added flags to top level configure to force usage of builtin jpeg, png and
zlib
* enabled debugging for bigendian tests
[2008-01-15: sasha]
* moved HAVE_XPM to after config.h in libAI xpm.c; updated main configure
* exclude xpm.c from built when no xpm is requested; no longer support
standard libgif and libxpm
[2008-01-13: jeremy]
* Sound2 parsing out sound files better now
[2008-01-12: jeremy]
* Removed more legacy Sound options, Sound2 reading more conf settings
[2008-01-11: jeremy]
* unbreak AS compiling cause of sound conf changes
* Added pcmdevice option to sound's conf
* More sound2 module handling changes
[2008-01-10: sasha]
* updated Team members
[2008-01-09: sasha]
* implemented functionality to setup slicing of frame sides and titlebar
elements
* added code to kill Esetroot client if desktop background was set by it
[2008-01-09: jeremy]
* More Sound2 module updates/changes to include wave header reading
* Minor Sound2 header updates
[2008-01-08: sasha]
* added functionality to ascompose to set XROOTPMAP property while changing
root background
[2008-01-07: jeremy]
* make install puts in the sound config file and desktop/sounds dir
* Added new sound files to place Audio.c and audio.in
* Renamed all Audio to Sound in Makefiles, etc.
[2008-01-04: sasha]
* fixed bad set_string_val macro to properly handle NULL pointer
* removed erroneous configure.h include in ascompose
[2008-01-04: jeremy]
* More Sound2 config updates
* Adding conf file support to Sound2
* Sound2 module plays sound on window shade
* More Sound2 module updates
[2008-01-03: born2late]
* modifications to make it better work with php pages
* added utf8 support according to sasha s instructions - seems to work
[2007-12-27: sasha]
* removed config.h from installation script
* added new convinience function to convert Lead Tools like DIBs into ASImage
in one call; Fixed typo in ASImage2DIB.
* Fixed major bug that maybe causing memory corruption on any system where
malloc does not return pointer aligned on 8-byte boundary
* sanity fix to configure
[2007-12-26: sasha]
* fixed logic to not enlarge icons in menus if target size is too big
[2007-12-23: jeremy]
* Added Sound2 Header file
* Added sample .wav for any testing of Sound2 module
* Rewrite of Sound2 Module.
[2007-12-19: sasha]
* removed X Intinrsic header as unneeded
* giving up on trying to figure out why asvector does not work on Power PC
[2007-12-18: sasha]
* yet another try in resolving endiannes of the XImage encoding
[2007-12-17: sasha]
* rewrote scanline2ximage32 to properly account for offset and hopefully fix
byteordering issue
[2007-12-17: jeremy]
* more sound2 module stuff
[2007-12-14: sasha]
* hopefully fixed incorrect byte order while converting XImage on 32 bit
visuals back to ASImage on big endian machines
* fixed build problem in libAC
* minor cleanups in configure script to use lowercase NO
[2007-12-14: jeremy]
* Sound2 test code, dont try to look for and play test wav
* Sound2 module now does events right.. i think
[2007-12-06: sasha]
* compilation problems with missing X libs
[2007-12-05: sasha]
* updated built-in libpng to 1.2.23
[2007-11-30: sasha]
* synchronised xwrap.h with libAfterImage
* updated xwrap.h to be the same as in libAfterBase and fixed compilation
under newer MSVC
[2007-11-26: sasha]
* Fixed memory leak in DGifCloseFile where pointer to GifFile gets overwritten
with NULL leaving dungling memory
[2007-11-20: sasha]
* fixed memory leak in gif import code
[2007-11-16: sasha]
* fixed missing initialization of ASColormap structure in colormap_asimage
* disabled performance output in transform.c
[2007-11-12: born2late]
* added docs for bevel in different parts of window frames
[2007-10-31: born2late]
[2007-10-25: speedy]
* added urxvt as an option for ExecInTerm
* added urxvt to list of terms (first now, followed by aterm).
[2007-10-25: sasha]
* added ability to load ASXML images for set size - should use .width and
.height vars inside the image to calculate different sizes
[2007-10-16: sasha]
* Implemented proper transfer of ASImage to OpenGL drawables using textures
and pixel ops
[2007-10-01: speedy]
[2007-09-24: sasha]
* implemented Underpointer placement type
[2007-09-21: sasha]
* altered configure to make building of apps optional - if the dir is present
[2007-09-20: sasha]
* got rid of pesky compile warnings in selfdiag code
* fixed compilation of self-diag code under cygwin
[2007-09-18: sasha]
* removed __FUNCTION__ to fix compile on Solaris
[2007-09-17: sasha]
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors under MSVC
* fixed compile errors in asstorage.c under MSVC
[2007-09-15: sasha]
* fixed compile warnings on solaris in asvisual.c reported by ROOT project
* fixed compile problem under VisualStudio .Net 2005, as reported by Valeri
Onuchin
* added functions for reading raw XPM and PNG buffers, contributed by Valeri
Onuchin of ROOT project
* added ASImage2xpmRawBuff() contributed by Valeriy Onuchin of ROOT project
[2007-09-14: sasha]
* fixed compile bug when building with shmimage and without libAfterBase
[2007-09-12: born2late]
* minor typos corrected
* just making sure all config option are in again... did not add dirs
Look/obsolete Wharf\ Folders and Wharf Contents, since it looks like they
are generated by error by asdocgen
* reverting to version 1.2
* upsi - that is not what i wanted... gotta remove that
* desklets update : now unified shell script to control with some help text
output
[2007-09-06: born2late]
* using awk instead of sed mainly now as it is way more powerfull
[2007-09-05: sasha]
* Implemented BlurSize option in MyStyles
* fixed one off error in blurring code potentialy causing a segfault
[2007-09-03: born2late]
* hopefully now working with locale !=de/at
* now fully working calendar (at least with my locale), need others to check
if it s really doing correctly
[2007-09-02: madarche]
* M.-A. Darche:
[2007-09-01: born2late]
* update to calendar desklet
[2007-08-30: born2late]
* first checkin of desklets, gotta find a way to keep cpu load lower, 1% atm
on my machine for both
[2007-08-23: sasha]
* updated ChangeLog for release
[2007-08-22: sasha]
* compile problem on solaris fixed; Feeble attempts at increasing performance
without any results
* compile fixes and minor optimization of the blurring code
[2007-08-20: sasha]
* AfterStep 2.2.7 release
* fixed bug where ExecInTerm targets wheren't properly tested for existence
* fixed bug where ExecInTerm targets wheren't properly tested for existence
* added logic to not reuse the icon from underlaying (disabled) contexts if
selected context is the swallow function
[2007-08-16: sasha]
* fixed syntetic ConfigNotify events to have proper root coordinates, and
don't rely on cached parent's geometry
* Corrected problems with too many or too few syntetic configure notifes set
to the clients, especially on initial map and and move/resize
* fixed an issue with re-swallowed clients being immediately unswallowed again
[2007-08-15: sasha]
* implemented proper handling of border fill for nasty terms who set parent's
backgrounds to ParentRelative
* added missing event mask for unswallowed from WinTabs windows
* fixed problem with focus switching in WinTabs - it is now accepting
WM_TAKE_FOCUS and only then does it switch the focus internally
* fixed clearing window border when in transparent mode and handling of look
switches - to change border color
* added some fancy logic to determine what color to use to fill around windos
in WinTabs
* fixed swallowing in WinTabs after a window was unswallowed and destroyed and
a new window with the same ID is created
[2007-08-02: sasha]
* fixed printing of CARD32 values on 64 bit CPUs as lX
* Fixed install targets in Makefiles to create dirs
* Fixed install targets in Makefiles to create dirs
[2007-08-01: speedy]
* cleaned-up Animate module docs.
* updates to documentation.
[2007-08-01: sasha]
* Fixed install targets in Makefiles to create dirs
* fixed configure and deps checking in apps
* updated documentation for libAfterImage
* updated ChangeLog for libAfterImage release
* Updated embedded libPNG and Zlib to latest versions; Fixed bugs in find_file
when compiled without libAfterBase.
* libAfterImage v. 1.15 release
[2007-07-31: sasha]
* added some docs to libAfterImage
* Completed refactoring gaussian blur code. It now works both in vertical and
horizontal direction. Maximum blur radius is 128, and its bloody fast too
* optimizations to gaussian blur and fixed mystrdup(NULL) in libAI standalone
* fixed gaussian blur at the begining and the end; added lookup tables for
standard deviation and multiplier, prototyped vertical pass
[2007-07-30: sasha]
* implemented integer math version of gaussian blur algorithm
* fixed blur function to not limit radius to 10 and properly calculate
gaussian distribution
[2007-07-28: sasha]
* switched timing printing off
[2007-07-27: sasha]
* some additions to asstorage attempting to improve performance in XImage
reading - unsuccessfull
[2007-07-26: sasha]
* Cleaned up libAfterImage to compile without libAfterBase and added
fiunctions to ger drawable size and window position for a specific display
[2007-07-25: sasha]
* fixes to libAfterImage to get it compiling without libAfterBase and to
reduce valgrind complaints about uninitiolized memory
[2007-07-23: sasha]
* added sorting keyword by alpha to doc generation
* added sorting keyword by alpha to doc generation
* wintabs config should be installed
[2007-07-22: speedy]
[2007-07-20: sasha]
* fixed many valgrind messages related to uninitialized memory in
libAfterImage and libAfterBase; Fixed WinTabs to take into consideration
window's gravity and frame rectangle while determining where to unswallow
the window.
* fixed image reloading to keep relevant flags - that was messing up wharf's
support for look defined folder icon. That should also speedup repeated
changes of look
* adding support in Wharf for look-specific folder pixmap - so far only works
2 times, then stops changing - wierd
[2007-07-19: sasha]
* further safeguarding agains running out of storage slots in asstorage