forked from micove/awn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
16465 lines (11892 loc) · 465 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
2011-04-19 Rodney Cryderman <[email protected]>
* configure.in:
We'll accept deprecated functions for a bit methinks.
2011-04-03 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Only free memory if it's been allocated.
2011-03-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Remove a debug.
2011-03-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Fix issue with compiz and incorrect window being selected
when none of the grouped windows are in the current viewport.
If none of the grouped windows are in the current viewport then
make sure we continue using the last previously selected window.
2011-03-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-manager.h:
Fixes incorrect icon display when switching workspaces with
show_all_windows false.
2011-03-12 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
Remove a debug.
2011-03-12 Rodney Cryderman <[email protected]>
* applets/taskmanager/taskmanager.c:
Applied patch courtesy of Bellegarde Cedric to fix issue
with windows appearing briefly on close that should be
skip taskbar.
2011-03-12 Michal Hruby <[email protected]>
* applets/simple-launcher/simple-launcher.vala:
Fix double separator in the menu.
2011-02-14 Julien Lavergne <[email protected]>
reviewed by: Julien Lavergne <[email protected]>
patch by: florianbruh
* awn-settings/awnSettings.py.in:
Use int instead of str to store value in the column. LP: #702701
2011-02-14 Julien Lavergne <[email protected]>
* awn-settings/awnClass.py:
Make bzr code optional (LP: #707863)
* debian/control:
Move bzr to Suggests.
2011-01-20 Rodney Cryderman <[email protected]>
* data/awn-themed-icon.ui:
Adjustments to the "Customise Applet" dialog courtesy of onox.
2011-01-20 Michal Hruby <[email protected]>
* applets/taskmanager/labelled-separator.vala:
Add license header to LabelledSeparator.
2011-01-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
* applets/taskmanager/util.c:
Fix some special casing code which mainly exhibited as a problem
with openoffice/libreoffice.
2011-01-14 Rodney Cryderman <[email protected]>
* applets/taskmanager/awn-desktop-lookup-cached.c:
* applets/taskmanager/task-manager-dialog.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/util.c:
* applets/taskmanager/util.h:
Make handling of nautilus a bit more sane on Ubuntu... which seems
to believe you shouldn't start nautilus from your app menus.
2011-01-11 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Make button outline visible.
2011-01-06 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Don't show Add Launcher if we don't have a desktop file.
2010-12-24 Michal Hruby <[email protected]>
* src/awn-panel.c:
Unhide panel even when "under" the screen when using TwinView with
different resolutions.
2010-12-23 Michal Hruby <[email protected]>
* applets/taskmanager/labelled-separator.vala:
Fix painting of LabelledSeparator.
2010-12-23 Michal Hruby <[email protected]>
* applets/taskmanager/task-icon.c:
Fix problem with grouped menu items.
2010-12-22 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Don't do any resizing of widgets in the calc of scale.
2010-12-21 Rodney Cryderman <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
Let's set the dialog mode to auto and see how that goes.
2010-12-21 Rodney Cryderman <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
* applets/taskmanager/task-manager-dialog.c:
Allow setting of default preview scale. Auto scale down when
needed.
2010-12-21 Michal Hruby <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
Properly scale menu icons.
2010-12-18 Rodney Cryderman <[email protected]>
* libawn/awn-themed-icon.c:
Don't hightlight AwnThemedIcon on DnD hover.
2010-12-18 Michal Hruby <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
Fix naming of the container-title capability.
2010-12-18 Alberto <[email protected]>
patch by: onox <[email protected]>
* bindings/python/awn.defs:
Fix bug #665847 : python bindings for ThemedIcon.create_remove_custom_icon_item
2010-12-17 Julien Lavergne <[email protected]>
* debian/control:
Build-depends on valac-0.10 when it's available, to build with stable Vala.
2010-12-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Don't disconnect more than once.
2010-12-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Make the preview code smarter... Started mapping out
knowledge of various WMs.
2010-12-14 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager-dialog.c:
* applets/taskmanager/task-manager-dialog.h:
Some more live preview goodness.
2010-12-14 Julien Lavergne <[email protected]>
* debian/changelog:
Trivial version bump.
2010-12-12 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Setting orientation when not necssary generates an new
expose(). Still too much happening in expose.
2010-12-12 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Sizing of previews, orientation and tooltips along with
various other small fixes/optimizations.
2010-12-11 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
Reset the TaskWindow size request when switching in standard.
2010-12-11 Rodney Cryderman <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager-dialog.c:
* applets/taskmanager/task-manager-dialog.h:
Something to play with.
2010-12-11 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-dialog.c:
* applets/taskmanager/task-manager-dialog.h:
* applets/taskmanager/Makefile.am:
Added TaskManagerDialog skeletons. Will be used sometime soon.
2010-12-05 Julien Lavergne <[email protected]>
reviewed by: Julien Lavergne <[email protected]>
patch by: Matthias Klose <[email protected]>
* src/Makefile.am:
* tests/Makefile.am:
Fix building failure with --no-as-needed.
2010-12-05 Michal Hruby <[email protected]>
* applets/taskmanager/labelled-separator.vala:
Fix method accessability issue.
2010-11-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
Fix desktop matching issues with eclipse.
2010-11-27 Rodney Cryderman <[email protected]>
* libawn/awn-themed-icon.c:
Search the user applet installation dir for icons.
2010-11-27 Rodney Cryderman <[email protected]>
* libawn/awn-themed-icon.c:
Fix for bug 665848. Allow removal of customized icon (icon
name customization).
2010-11-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
* libawn/awn-dialog.c:
A fix for the openbox AwnDialog issue that does not have
unintended consequences.
2010-11-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
* applets/taskmanager/task-manager.c:
If both WM_CLASS values are NULL when window opens then wait a
bit and see if they get set.
2010-11-27 Rodney Cryderman <[email protected]>
* libawn/awn-dialog.c:
Work around an openbox issue with AwnDialogs. Also makes
AwnDialogs for python applets more consistent with non-python
applets.
2010-11-25 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-icon.c:
Fix a memory leak... TaskLaunchers were not always destroyed.
Also deal with a matching window appearing when the Icon that
matches it is in the midst of closing.
2010-11-17 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
Never use the horribly ugly Libre Office application icon
in the same way we never show the horrible Open office
application icon.
2010-11-17 Michal Hruby <[email protected]>
* applets/simple-launcher/Makefile.am:
* po/POTFILES.in:
* po/POTFILES.skip:
* src/Makefile.am:
Fix remaining distcheck issues.
2010-11-17 Rodney Cryderman <[email protected]>
* applets/simple-launcher/Makefile.am:
* applets/taskmanager/Makefile.am:
* src/Makefile.am:
An inconclusive attempt at getting make dist working.
Generated tarball seems ok... though make distcheck is still
not happy.
2010-11-16 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
Fix loss of launchers when doing d&d reordering.
2010-11-13 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager.c:
Show TaskIcons for nodisplay = true and no desktop file.
2010-11-13 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Set ->proxy_obj to NULL when it's gone.
2010-11-13 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
There's a nasty race on occasion (more likely to hit it under
load with grouping off), anyway... if the window is already
gone than just get out.
2010-11-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
Missing case.
Fix a typo.
2010-11-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager.c:
Get rid of the rectangle.
2010-11-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-manager.h:
Give a visual cue for users when they're dragging and dropping
a desktop.
2010-11-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Fix some of the inconsistent behaviours with drag and drop.
2010-11-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
Fix launchers only.
2010-11-06 Rodney Cryderman <[email protected]>
* applets/taskmanager/applet.c:
Let people have more than one taskmanager instance if they
want.
2010-11-06 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
* applets/taskmanager/task-icon-private.h:
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-icon.h:
* applets/taskmanager/task-item.c:
* applets/taskmanager/task-manager-panel-connector.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-window.c:
* applets/taskmanager/task-window.h:
Removed ephemeral count abomination. Using a proxy object
instead. Various small fixes followed including when using
ungrouped config permanent launchers will claim another window
if their window is closed.
2010-11-03 Michal Hruby <[email protected]>
* applets/simple-launcher/Makefile.am:
Fix build issues.
2010-11-02 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
We can only get the workspace for an icon if it's
actually managing a window...
2010-10-31 Michal Hruby <[email protected]>
* applets/simple-launcher/simple-launcher.vala:
Fix size-changed for simple-launcher.
2010-10-31 Michal Hruby <[email protected]>
* awn-settings/awnDefs.py.in:
* awn-settings/awnSettings.py.in:
Fix hiding options in awn-settings.
2010-10-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/applet.c:
Only allow one instance of Taskmanager to run.
2010-10-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/taskmanager.c:
Fix small leak when a dock is removed.
2010-10-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Make pin/unpin work the way users expect when dealing with
compiz. ie... pin it in the workspace and desktop.
2010-10-27 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
* applets/taskmanager/task-icon.c:
Suppress some of the wnck assertions that popup when using
compiz.
2010-10-26 Rodney Cryderman <[email protected]>
* libawn/awn-themed-icon.c:
Scale the icon displayed in the change icon dialog if it is too
large.
2010-10-26 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
Trap x errors in the intellihide intersection code and replace
gdk_window_get_geometry () with gdk_window_get_position() and
gdk_drawable_get_size().
2010-10-26 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager-panel-connector.c:
* applets/taskmanager/task-manager-panel-connector.h:
* applets/taskmanager/Makefile.am:
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
* applets/taskmanager/task-manager.c:
* data/avant-window-navigator.schema-ini.in.in:
* src/awn-app.vala:
Merged support for mult-panel intellihide in taskmanager. Awn
Settings does not yet understand. Intellihide is now a per panel
instance key. Only one taskmanager instance needs/should be used,
though not yet enforced (Note the recent addition of Simple Launcher
applet to core).
2010-10-22 Rodney Cryderman <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
* applets/taskmanager/task-launcher.c:
Added a monitor_desktops config key. Allows disabling of monitoring
desktop files for changes. Which can be a resource issue in multi-user
installations.
2010-10-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-launcher.c:
We really should check and see if the startup notify is false...
2010-10-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Fix some maximize, unmaximize issues when windows minimized.
2010-10-15 Rodney Cryderman <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
* applets/taskmanager/menus/simple.xml:
* applets/taskmanager/menus/standard.xml:
* applets/taskmanager/task-icon-build-context-menus.c:
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-icon.h:
* applets/taskmanager/task-manager.vapi:
Support "container-title" component of the dockmanager menu api.
2010-10-14 Michal Hruby <[email protected]>
* applets/quick-prefs/applet.vala:
Set correct panel-id when running awn-settings via Preferences applet.
2010-10-14 Michal Hruby <[email protected]>
* Makefile.am:
* applets/simple-launcher/Makefile.am:
* applets/simple-launcher/awn-applet-simple-launcher.schema-ini.in:
* applets/simple-launcher/simple-launcher.desktop.in.in:
* applets/simple-launcher/simple-launcher.vala:
* configure.in:
Add simple-launcher applet.
Bump required lda version.
2010-10-14 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Fix bug with close active menu menuitem. Was not sending
the correct object.
2010-10-14 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
Special case OpenOffice's love child.
2010-10-14 Michal Hruby <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
Stupid me, it wasn't a bug in Vala, they just fixed a leak.
2010-10-14 Michal Hruby <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
Workaround bug in Vala 0.10.
2010-10-09 Rodney Cryderman <[email protected]>
* libawn/awn-applet.c:
Keep about dialogue from being destroyed when x is clicked or
esc is pressed. Dialogue should only be destroyed when the
associated menu item is destroyed.
2010-10-09 Michal Hruby <[email protected]>
* libawn/awn-themed-icon.c:
Spit a warning if ThemedIcon's size is uninitialized.
2010-09-30 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Fix issue where active window would be closed from a grouped
sequence regardless of what window was selected from the context
menu.
2010-09-30 Michal Hruby <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
Fix bug #633993.
2010-09-30 Alberto <[email protected]>
* applets/taskmanager/xutils.c:
* src/awn-background-lucido.c:
Do not use deprecated extern gdk_display. (Compile error fix)
Use awn_background_do_rtl_swap to check if rtl.
2010-09-16 Alberto <[email protected]>
* src/awn-background-lucido.c:
Fix to Lucido style in RTL mode.
2010-09-10 Alberto <[email protected]>
* src/awn-background-lucido.c:
Fix to https://bugs.launchpad.net/awn/+bug/634150 (Lucido + Radius = 0)
2010-09-10 Alberto <[email protected]>
* applets/quick-prefs/applet.vala:
* applets/taskmanager/task-icon.c:
* bindings/python/awn.defs:
* bindings/vala/awn.gi:
* bindings/vala/awn.vapi:
* libawn/awn-applet.c:
* libawn/awn-applet.h:
* libawn/awn-icon.c:
* libawn/awn-icon.h:
* libawn/awn-utils.c:
* libawn/awn-utils.h:
Added APIs to popup GtkMenu in a standard way Icon/Applet relative:
AwnIcon.popup_gtk_menu (menu, button, activate_time)
AwnApplet.popup_gtk_menu (menu, button, activate_time)
2010-09-10 Michal Hruby <[email protected]>
* applets/taskmanager/Makefile.am:
* applets/taskmanager/util.c:
* src/Makefile.am:
Fix build issue.
2010-08-26 Michal Hruby <[email protected]>
* tests/test-vala-awn-dialog.vala:
Fix test.
2010-08-25 Michal Hruby <[email protected]>
* applets/taskmanager/Makefile.am:
* configure.in:
* debian/control:
Bump required Vala version, fix taskmanager's Makefile.
2010-08-25 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnSettings.py.in:
* libawn/awn-applet.c:
Added "Add & Remove dock" buttons to awn-settings.
2010-08-25 Michal Hruby <[email protected]>
* configure.in:
Removed Werror=shadow from flags as it doesn't like Vala code.
2010-08-24 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnClass.py:
* awn-settings/awnSettings.py.in:
A few minor changes to Helpers UI.
2010-08-23 Michal Hruby <[email protected]>
* awn-settings/awnClass.py:
* awn-settings/awnSettings.py.in:
Add a method to reload settings from different panel id.
2010-08-23 Michal Hruby <[email protected]>
* applets/taskmanager/Makefile.am:
* applets/taskmanager/labelled-separator.vala:
Added LabelledSeparator class.
2010-08-20 Alberto <[email protected]>
* applets/taskmanager/applet.c:
* awn-settings/awnSettings.py.in:
* src/awn-background-lucido.c:
* src/awn-background.c:
Disabled glow when on Theme/Taskmanager tab in awn-settings.
Fixed issues in Lucido's shape mask and animation.
2010-08-20 Alberto <[email protected]>
* applets/taskmanager/applet.c:
* applets/taskmanager/menus/minimal.xml:
* src/awn-background-lucido.c:
Make sure DockManager Daemon is started when creating taskmanager.
Added minimal.xml menu style to taskmanager.
Little adjustment to Lucido.
2010-08-20 Alberto <[email protected]>
* src/awn-background-edgy.c:
* src/awn-background-lucido.c:
Fixed Edgy shape mask.
Fixed loop in Lucido when align==0
2010-08-20 Michal Hruby <[email protected]>
* libawn/awn-effects-ops-helpers.c:
Implement faster box filter (for blurring).
2010-08-20 Michal Hruby <[email protected]>
* src/awn-background.c:
Fix issues with glow painting.
2010-08-19 Michal Hruby <[email protected]>
* src/awn-panel.c:
Make input shape mask debugging easy. (I thought we already had this?)
2010-08-19 Alberto <[email protected]>
* src/awn-background-3d.c:
* src/awn-background-curves.c:
* src/awn-background-edgy.c:
* src/awn-background-flat.c:
* src/awn-background-floaty.c:
* src/awn-background-lucido.c:
* src/awn-background.c:
* src/awn-panel.c:
* src/awn-panel.h:
Adjusted some shape masks.
Now using input_shape_mask to paint the glow.
2010-08-18 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnSettings.py.in:
Finish the Helper integration.
2010-08-18 Michal Hruby <[email protected]>
* libawn/awn-dialog.c:
Hide-on-unfocus property should deal with popup menus now.
2010-08-18 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnClass.py:
* awn-settings/awnSettings.py.in:
Add "Helpers" button to awn-settings.
2010-08-10 Alberto <[email protected]>
* src/awn-background-edgy.c:
Little fix for Edgy background when in Left/Right position.
2010-08-10 Alberto <[email protected]>
* src/awn-background-lucido.c:
* src/awn-background.c:
* src/awn-background.h:
* src/awn-panel.c:
Fix to Lucido in non-composited mode.
Remembering last width/height (in awn_background_needs_redraw)
is no more needed thanks to rev 720 and little edits to awn-panel.c
2010-08-10 Michal Hruby <[email protected]>
* src/awn-background-edgy.c:
* src/awn-panel.c:
Make sure we invalidate background on resizes.
2010-08-08 Alberto <[email protected]>
* src/awn-background.c:
Fixed drawing glitches when changing Size of icons.
2010-08-08 Michal Hruby <[email protected]>
* src/awn-main.c:
Change the way --startup parameter works.
2010-08-07 Michal Hruby <[email protected]>
* applets/quick-prefs/applet.vala:
* applets/taskmanager/applet.c:
* applets/taskmanager/dock-manager-api.vala:
Use net.launchpad.DockManager.
2010-07-16 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnDefs.py.in:
* awn-settings/awnSettings.py.in:
* data/avant-window-navigator.schema-ini.in.in:
* libawn/awn-cairo-utils.c:
* src/awn-applet-manager.c:
* src/awn-applet-manager.h:
* src/awn-background-3d.c:
* src/awn-background-edgy.c:
* src/awn-background-flat.c:
* src/awn-background-floaty.c:
* src/awn-background-lucido.c:
* src/awn-background.c:
* src/awn-background.h:
* src/awn-defines.h:
* src/awn-panel.c:
* src/awn-panel.h:
* src/awn-separator.c:
* src/awn-separator.h:
Merge from <lp:~albyrock87/awn/awn-lucido> up to revision 761.
2010-07-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/menus/advanced.xml:
* applets/taskmanager/menus/custom-example.xml:
* applets/taskmanager/menus/simple.xml:
* applets/taskmanager/menus/standard.xml:
* applets/taskmanager/task-icon-build-context-menus.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-manager.h:
Add a Remove Launcher menu item.
2010-07-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Fix for viewports where the active windows is not
within the viewport.
2010-07-07 Michal Hruby <[email protected]>
* data/avant-window-navigator.schema-ini.in.in:
* po/avant-window-navigator.pot:
Don't use equal signs in schemas - bug #590842.
2010-06-04 Michal Hruby <[email protected]>
* po/avant-window-navigator.pot:
Update translation template.
2010-06-04 Michal Hruby <[email protected]>
patch by: Gabor Karsay
* awn-settings/awn-settings.ui:
* libawn/awn-applet.c:
Fix untranslatable strings - LP bug #586670.
2010-06-02 Michal Hruby <[email protected]>
* src/awn-background.c:
Don't destroy helper surface if we can use it.
2010-06-01 Michal Hruby <[email protected]>
* src/awn-background-lucido.c:
Make sure Lucido corners can't get too big.
2010-05-31 Michal Hruby <[email protected]>
* awn-settings/awn-settings.ui:
* awn-settings/awnDefs.py.in:
* awn-settings/awnSettings.py.in:
* data/avant-window-navigator.schema-ini.in.in:
* src/awn-background-floaty.c:
* src/awn-background-lucido.c:
* src/awn-background.c:
* src/awn-background.h:
* src/awn-defines.h:
Stop misusing curviness in Floaty, don't use it in Lucido either.
2010-05-29 Michal Hruby <[email protected]>
* src/awn-monitor.c:
* src/awn-monitor.h:
* src/awn-panel.c:
Possible fix for LP bug #562453.
2010-05-28 Michal Hruby <[email protected]>
* applets/quick-prefs/applet.vala:
Use async DBus calls in quick-prefs applet.
2010-05-28 Michal Hruby <[email protected]>
* awn-settings/awnSettings.py.in:
* po/avant-window-navigator.pot:
Fix LP bug #586670.
2010-05-12 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-manager.c:
Wait a bit longer on the timeout on Open office windows
that are opened through a file association. Changed from
500ms to 2000ms. Currently only effects Openoffice and,
in general, the timeout is just a paranoia check, the
app should get to a state where it identifiable in all
cases AFAICT. Unfortunately getting some reports where
it seems to be not reaching an identifiable state within
the current 500ms timeout.
2010-05-01 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
If Compiz, if we're sending the window to another
"workspace" then choose some other window to activate.
2010-05-01 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Fix viewport math.
2010-05-01 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Return the move window to workspace menu options to the context
menu when Compiz is being used.
2010-04-29 Michal Hruby <[email protected]>
* awn-settings/awnDefs.py.in:
Don't call setlocale ourselves, GTK does it for us.
Also fixes bug #563449.
2010-04-22 Michal Hruby <[email protected]>
* src/awn-main.c:
Fix bug #487105.
2010-04-19 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Fix incorrect icon displayed for Open Office when icon overlay
is disabled.
2010-04-19 Rodney Cryderman <[email protected]>
* applets/taskmanager/util.c:
Remove check for name field in desktop file for OpenOffice
special casing. Do not check localized desktop name field
when doing special casing checks.
2010-04-19 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon.c:
Fix issue with show all windows = false and grouped
applications. lp:565378.
2010-04-13 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-private.h:
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-manager.c:
Inhibit autohide when taskmanager context menus are open.
2010-04-13 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-launcher.c:
* applets/taskmanager/task-manager.c:
* applets/taskmanager/task-window.c:
Fix issue with multiple wine apps. If the WM_CLASS
value is Wine then ignore it, it's useless for us.
2010-04-11 Rodney Cryderman <[email protected]>
* libawn/awn-applet-simple.c:
Bad unitialized pointer! Bad!
2010-04-11 Michal Hruby <[email protected]>
* configure.in:
Post-release version bump.
2010-04-11 Michal Hruby <[email protected]>
* configure.in:
Bump version to 0.4.0.
2010-04-11 Michal Hruby <[email protected]>
* libawn/awn-tooltip.c:
Get rid of missed GTK_WIDGET_VISIBLE macro.
2010-04-11 Michal Hruby <[email protected]>
* configure.in:
* po/ja.po:
* po/lt.po:
Manually import latest translations from LP.
2010-04-11 Michal Hruby <[email protected]>
* applets/taskmanager/awn-applet-taskmanager.schema-ini.in:
* libawn/anims/awn-effect-bounce.c:
Make classic attention effect jump higher.
Change default nagging timer to two minutes.
2010-04-11 Michal Hruby <[email protected]>
* libawn/anims/awn-effect-spotlight3d.c:
Make the spotlight 3D animation loop again (fixes bug #496349).
2010-04-11 Michal Hruby <[email protected]>
* applets/taskmanager/dock-manager-api.vala:
Make sure we don't have double slashes in DesktopFile.
2010-04-11 Michal Hruby <[email protected]>
* awn-settings/awnSettings.py.in:
Set translation domain before loading ui file.
2010-04-11 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-icon-build-context-menus.c:
Fix some CRITICAL spam when a window is minimized.
2010-04-11 Michal Hruby <[email protected]>
* bindings/python/__init__.py.in:
Call also desktopagnostic.vfs.init() in awn.init().
2010-04-11 Michal Hruby <[email protected]>
* libawn/anims/awn-effect-spotlight3d.c:
* libawn/anims/awn-effect-squish.c:
* libawn/anims/awn-effect-turn.c:
* src/awn-panel.c:
Make a couple of animations faster.
2010-04-10 Michal Hruby <[email protected]>
* applets/taskmanager/task-launcher.c:
Really fix bug #550541.
2010-04-10 Rodney Cryderman <[email protected]>
* applets/taskmanager/task-launcher.c:
* applets/taskmanager/task-window.c:
Should fix bug 550541. Sometimes event is NULL.
2010-04-10 Michal Hruby <[email protected]>
* awn-settings/awnClass.py:
Fix LP bug #557778.
* src/awn-app.c:
Provide more precise error message.
2010-04-09 Michal Hruby <[email protected]>
* applets/taskmanager/task-window.c:
Fix build failure.
2010-04-08 Michal Hruby <[email protected]>
* applets/taskmanager/task-icon.c:
* applets/taskmanager/task-window.c:
* libawn/awn-dialog.c:
* libawn/awn-tooltip.c: