-
Notifications
You must be signed in to change notification settings - Fork 9
/
ChangeLog
4801 lines (3657 loc) · 184 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
2023-10-13 Mike Gabriel
* release 0.9.4 (HEAD -> main, tag: 0.9.4)
2023-09-06 Robert Tari
* Merge branch 'tyll-executable_so' (0d5eaeb)
2023-09-05 Till Maas
* cmake: Install library as library (05e4368)
2022-10-26 Mike Gabriel
* src/indicator-service.c: Fix Robert's lastname in license header.
(bae7a9c)
* release 0.9.3 (a62e8ca) (tag: 0.9.3)
2022-10-08 Mike Gabriel
* Merge branch 'tari01-pr/fix-tooltip' (bf432c5)
2022-10-04 Robert Tari
* src/indicator-ng.c: Do not show tooltip on labels while the menu is
open (3ae6943)
2022-09-15 Mike Gabriel
* release 0.9.2 (d9ca686) (tag: 0.9.2)
2022-07-15 Mike Gabriel
* Merge branch 'tari01-pr/add-tooltips' (ad8abda)
2022-07-13 Robert Tari
* src/indicator-ng.c: Add tooltip support (c065f45)
2022-07-15 Mike Gabriel
* Merge branch 'tari01-pr/enable-werror' (4f306dd)
2022-07-13 Robert Tari
* .build.yml: Build the GTK3 flavour with -Werror (a7b1463)
2022-07-15 Mike Gabriel
* Merge branch 'tari01-pr/crash-on-session-error' (88a19ee)
2022-07-13 Robert Tari
* src/indicator-service.c: Make failure to connect to the session
DBus fatal (3db4f03)
* Whitespace fix (755ee95)
2022-02-17 Mike Gabriel
* release 0.9.1 (80dae40) (tag: 0.9.1)
* Merge branch 'tari01-pr/cleanup-compile-flags' (4231e8b)
2022-02-17 Robert Tari
* .build.yml: Drop extra compilation flags (cf542e4)
* Clean up compilation flags (4b442de)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(47244a9)
2021-11-18 Robert Tari
* Merge branch 'sunweaver-pr/dont-export-private-symbols' (7c5e41b)
2021-11-18 Mike Gabriel
* debian/libayatana-indicator*-7.symbols: Drop private symbols again.
(ceb487f)
* src/{CMakeLists.txt,indicator.symbols}: Don't export private
symbols. Immitate symbol exports as previously done with
libtool. (7cfded8)
2021-11-17 Mike Gabriel
* d/changelog: Raise upstream version of DEB builds, due to wrong
package revision in 0.9.0 release. (659cc9c)
* release 0.9.0 (6a16c6f) (tag: 0.9.0)
2021-11-10 Mike Gabriel
* Merge branch 'tari01-pr/check-menu-item-name-null' (c118af3)
2021-11-05 Robert Tari
* src/indicator-ng.c: Make sure old menu item name is not NULL before
comparison (40e310b)
2021-11-01 Robert Tari
* Merge branch 'sunweaver-pr/travis-cleanup' (71b39fb)
2021-10-26 Mike Gabriel
* .build.yml: Remove source code of locally built dependency after it
has been installed. (e43c209)
* .build.yml: Run unit tests in build_scripts: target. (7839b52)
* .build.yml: Drop autotools dependencies. (d995a6e)
2021-10-22 Robert Tari
* Merge branch 'sunweaver-pr/gtk2-flavour-build-fix' (c9063c6)
2021-10-22 Mike Gabriel
* debian/rules: Use one spelling for 'flavour'. (c15189f)
* CMakeLists.txt: Don't build GTK2 flavour against GTK3. (bde82da)
2021-10-21 Mike Gabriel
* Merge branch 'diddledani-icon-scaling' (99649c5)
2021-10-15 Dani Llewellyn
* Scale icons when loading from filename (7e02a15)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (1904f33)
2021-10-19 Robert Tari
* Merge branch
'sunweaver-pr/different-folders-for-include-files-based-on-GTK-flavour'
(79db730)
2021-09-20 Robert Tari
* Fix copyright headers (eecd9dd)
2021-09-02 Robert Tari
* Fix Travis status image (0b69ab9)
2021-10-19 Mike Gabriel
* debian/libayatana-indicator*-dev.install: Ship include header files
correctly in two separate dev:pkgs. (548d13a)
* src/CMakeLists.txt: Use different include paths for GTK-2 and GTK-3
builds (even if header files are indentical). (6721575)
2021-09-20 Robert Tari
* Fix copyright headers (7a377a1)
2021-09-02 Robert Tari
* Fix Travis status image (4e7a5b1)
2021-08-29 Mike Gabriel
* debian/{control,compat}: Bump to level 10. (18eade4)
* debian/rules: Enable unit tests. (7f3efa9)
2021-08-28 Mike Gabriel
* .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
(3c111d0)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (cb74130)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (cb0c07e)
2021-06-27 Mike Gabriel
* README.md: Add missing parenthesis close. (304b8b8)
2021-06-17 Mike Gabriel
* debian/control: Drop B-D: dh-exec. Not needed anymore since removal
of ayatana-indicator-common bin:pkg. (0275b35)
* debian/rules: Drop remnants of ayatana-indicator-common (found in
dh_install and dh_missing overrides). (3ccffba)
2021-06-16 Mike Gabriel
* Merge branch 'tari01-pr/drop-ayatana-indicators-target' (9b15f3c)
2021-06-15 Robert Tari
* debian/: Drop bin:pkg ayatana-indicator-common (moved to src:pkg
libayatana-common). (1343147)
* .build.yml: Remove systemd dependency. (888ceb9)
* data/: Drop ayatana-indicators.target (moved to libayatana-common).
(cbca7c3)
2021-06-10 Mike Gabriel
* Merge branch 'tari01-pr/disable-loader' (0523726)
2021-06-10 Robert Tari
* Add option to disable Loader build/installation (777d748)
2021-06-09 Mike Gabriel
* Merge branch 'tari01-pr/cmake-install-full' (a25c5f1)
2021-06-08 Robert Tari
* Use CMAKE_INSTALL_FULL_*DIR locations (dea96dd)
2021-06-08 Mike Gabriel
* debian/control: Add D (libayatana-indicator3-dev):
libayatana-ido3-dev. (912f071)
2021-05-25 Mike Gabriel
* README.md: Slight adjustment to the .desktop file comparison.
(f2b907a)
* Merge branch 'tari01-pr/update-docs' (cd7c85d)
2021-05-24 Robert Tari
* README: Drop old file (b4cb3aa)
* Add documentation files (77c690f)
2021-05-17 Robert Tari
* Merge branch 'sunweaver-pr/support-disabling-IDO' (a129e90)
2021-05-17 Mike Gabriel
* Travis CI: Also test GTK+-3.0 builds with IDO support disabled.
(99f8f1f)
* CMakeLists.txt: Report more build parameters to stdout when CMake
configures the build. (80253cf)
* {,**/}CMakeLists.txt: Support builds against GTK+-3.0 with IDO
support disabled. (b28e807)
2021-05-17 Robert Tari
* Merge branch 'tari01-pr/fix-tests-and-coverage' (f6baada)
2021-05-16 Mike Gabriel
* CMakeLists.txt: Fix coverage report. We need to reference the test
executables here, not the test wrappers. (a914848)
* tests/CMakeLists.txt: Rewrite to fix tests and coverage (49d522e)
* Revert "tests/run-xvfb.sh: Drop file, not required with CMake."
(9c35f2f)
2021-03-16 Robert Tari
* tests/org.ayatana.indicator.test.service.in: Fix placeholder
(629f2a7)
* tests/service-manager-connect.service.in: Fix placeholder (e37c1b8)
* tests/service-version-good.service.in: Fix placeholder (4a5c707)
* tests/service-version-bad.service.in: Fix placeholder (b9842a3)
* tests/session.conf.in: Fix placeholder (94ee3f9)
* tests/test-indicator-ng.c: Enable all tests (8fe500d)
2021-05-14 Robert Tari
* Merge branch 'sunweaver-pr/bring-back-gtk2-builds' (763acde)
2021-05-12 Mike Gabriel
* Travis CI: Drop autotools support, build and test GTK+-2.0 and
GTK+-3.0 flavours. (173f104)
* debian/libayatana-indicator3-tools.install: Install
ayatana-indicator3-loader test tool to LIBEXECDIR.
(b2214f2)
* debian/libayatana-indicator*-dev.install: No .a files shipped
anymore. (08a856c)
* debian/*.symbols: Update symbols files. (8eec783)
* debian/rules: Run GTK2/GTK3 unit tests sequentially. (262df76)
* debian/rules: Explicitly enable tests at build time. (0371084)
* debian/rules: Adjust to CMake based build. (Fixes DEB builds after
CMake switch). (73e6c3a)
* debian/control: Adjust B-Ds for CMake based build. (1140a11)
* CMakeLists.txt: Always builds indicator3 loader tool (not just when
ENABLE_TESTS is set). (0a9b030)
* Bring back GTK+-2.0 and GTK+-3.0 build flavours. (bfb679d)
* tests/run-xvfb.sh: Drop file, not required with CMake. (c7a152a)
* trim-lcov.py: Drop file, not required anymore with CMake. (e2d3331)
*/Makefile.am: Drop more remnants of autotools. (eb53143)
* Merge branch 'tari01-pr/move-to-cmake' (025c376)
2021-02-10 Robert Tari
* Append us to copyright headers (c277aa6)
2021-02-11 Robert Tari
* Remove Automake-related files (e20daf6)
* Add CMakeLists.txt files + tests/test-loader.c: fix library paths +
Fix include paths (1fa174f)
* tests/test-indicator-ng.c: disable menu test for now, it will not
work with GCovr (729e95b)
2021-02-10 Robert Tari
* Whitespace fix (1cba923)
* Add ayatana-indicator3-0.4.pc.in to data (25c2922)
* Move source files to src (b8b206c)
2021-05-06 Mike Gabriel
* Travis CI: Also support CMake based CI builds. (13c1c80)
2021-05-06 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci-with-cmake-support' (aa6723b)
2021-05-06 Mike Gabriel
* Travis CI: Also support CMake based CI builds. (bc6886f)
2021-05-04 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (d68a7de)
2021-05-04 Mike Gabriel
* .build.yml: Build ayatana-ido from upstream Git rather than using
the possibly outdate packaged version of ayatana-ido.
(f2b0b01)
* .travis.yml: Don't run autotools builds twice (once via script,
once directly). (c58c269)
* .travis.yml: Also do CI builds against Debian stable. (89db74c)
* .travis.yml: Temporarily disable CI builds on ubuntu:rolling.
Ubuntu's I series is not ready yet as docker container.
(195c450)
*/Makefile.am: Drop -Werror compiler flag for now. Not helpful when
setting up CI builds for dirty code. (246f41f)
2021-04-21 Mike Gabriel
* .build.yml: Drop distcheck target. Not required. (1760be4)
* .build.yml: Enable unit tests during configure. (a7375c8)
* .build.yml: Output test-suite.log at the end of unit testings.
(9b913f0)
* .build.yml: No tests are run on Archlinux, neither are they run on
Ubuntu. (962eea0)
* .build.yml: Unit tests require xvfb (and xauth). (a849b4a)
2021-04-20 Mike Gabriel
* tools/indicator-loader.c: Silence unused parameter warnings/errors
for various functions. (1911cb3)
* libayatana-indicator/indicator-service{,-manager}.c: Drop return
statements and g_error_free() calls that never get
reached. (8338069)
* libayatana-indicator/indicator-ng.c: Stricter type usage when
comparing Integer like variable. (ade4d68)
* libayatana-indicator/indicator-ng.c: Silence unused parameter
warnings/errors for various functions. (ad0e922)
* libayatana-indicator/indicator-service-manager.c: Silence unused
parameter warnings/errors for various functions. (432174b)
* libayatana-indicator/indicator-service.c: Avoid error: use of GNU
old-style field designator extension. (cc7f8ce)
* libayatana-indicator/indicator-service.c: Silence unused parameter
warnings/errors for callback functions. (995b2cd)
* libayatana-indicator/indicator-image-helper.c: Silence unused
parameter warnings/errors for callback functions.
(b829a57)
* libayatana-indicator/indicator-desktop-shortcuts.c: Avoid
comparison of integers of different signs. Thanks to
scan-build on Travis-CI. (7e70eb7)
* Travis-CI: Also build against Ubuntu 20.04 (for Ubuntu Touch's
sake). (4880df3)
* Travis-CI: temporarily disable archlinux:latest CI builds.
(e86d11e)
* TRAVIS: Initial attempt to get TRAVIS CI working for this project.
(5424403)
2021-02-03 Mike Gabriel
* debian/rules: Don't build/run unit tests parallely. (5cd5b0c)
* debian/control: Add B-D at-spi2-core. Fix FTBFS during unit tests.
(9b1ca2a)
2021-02-03 Robert Tari
* Merge branch 'sunweaver-pr/drop-Werror-flag-from-unit-test-builds'
(84b7a79)
2021-02-03 Mike Gabriel
* tests/Makefile.am: Drop -Werror from unit test builds. (800747d)
2021-01-25 Mike Gabriel
* release 0.8.4 (9a887fb) (tag: 0.8.4)
* Makefile.am: Set DISTCHECK_CONFIGURE_FLAGS. (d0abfc5)
* debian/*: Update from official Debian packaging. (dec55b8)
2020-12-04 Robert Tari
* Merge branch 'sunweaver-pr/debian-build-with-unit-tests' (6935c68)
2020-12-04 Mike Gabriel
* configure.ac: Drop superfluous square bracket (typo fix). (0321918)
* tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
dbus-runner. (d6b4c6b)
* libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
if object to operate on is a GTK_BOX. (29f118a)
2020-12-04 Robert Tari
* Merge branch 'sunweaver-pr/fix-typo-in-configure-ac' (fbb8dbe)
2020-12-04 Mike Gabriel
* tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
dbus-runner. (fb1450e)
* libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
if object to operate on is a GTK_BOX. (cbf345e)
2020-12-04 Robert Tari
* Merge branch 'sunweaver-pr/fix-test-indicator-ng' (1f54cb3)
2020-12-04 Mike Gabriel
* debian/rules: Enable unit tests after build. (fb9db8a)
* configure.ac: Drop superfluous square bracket (typo fix). (6eab844)
* tests/Makefile.am: Wrap test-indicator-ng around Xvfb and
dbus-runner. (1a62e1e)
* libayatana-indicator/indicator-ng.c: Only run gtk_box_set_spacing()
if object to operate on is a GTK_BOX. (770efbc)
2020-11-09 Mike Gabriel
* release 0.8.3 (4489b12) (tag: 0.8.3)
2020-10-30 Mike Gabriel
* Merge branch 'tari01-pr/fix-menu-resizing' (2806da0)
2020-10-30 Robert Tari
* indicator-ng.c: Fix menu resizing for all themes (f5663d0)
2020-09-10 Mike Gabriel
* release 0.8.2 (afa8c6a) (tag: 0.8.2)
* Merge branch 'tari01-pr/trim-lcov-py3' (cce52a7)
2020-09-10 Robert Tari
* trim-lcov.py: Port trim-lcov to Python 3 (c310b42)
2020-09-08 Mike Gabriel
* Merge branch 'tari01-pr/disable-menu-arrows' (6b0ca37)
2020-08-26 Robert Tari
* Disable menu arrows (1df0f1d)
2020-09-08 Mike Gabriel
* Merge branch 'tari01-pr/blank-label-padding-spacing' (2130f28)
2020-09-05 Robert Tari
* indicator-ng.c: Fix padding and spacing for hidden indicator item
labels (73fd4da)
2020-09-05 Mike Gabriel
* Merge branch 'tari01-pr/blank-label' (cba1c3c)
2020-09-05 Robert Tari
* indicator-ng.c: Do not hide image when toggling label visibility
(d8b5315)
* Whitespace fix (8c8822d)
* Whitespace fix (8ccd3bc)
2020-09-05 Mike Gabriel
* Merge branch 'tari01-pr/duplicate-locations' (242b20b)
2020-09-02 Robert Tari
* Fix duplicate location in the datetime indicator. (6e5ab2c)
2020-08-26 Mike Gabriel
* release 0.8.1 (f89575e) (tag: 0.8.1)
* Merge branch 'tari01-pr/fix-menu-scrolling' (7ad3a78)
2020-08-25 Robert Tari
* Enable menu scrolling + reset offset on popup (6de1c02)
2020-08-17 Mike Gabriel
* Merge branch 'tari01-pr/multiple-messaging-clients' (cb4cf54)
2020-08-16 Robert Tari
* Fix IDO insertion index in Indicator Messages with multiple clients
(b6fd2c1)
2020-08-14 Mike Gabriel
* release 0.8.0 (8beffb3) (tag: 0.8.0)
* debian/control: Let ayatana-indicator-common break system
indicators before 0.8.0 (except power indicator, that one
before 2.1.0). (d87433d)
* debian/control: Update versioned B-D on libayatana-ido3-dev to
0.8.0-0~. (758b74d)
* configure.ac: Bump IDO_REQUIRED_VERSION to 0.8.0. (5afd8bf)
2020-08-14 Robert Tari
* Fix width of menu panes. (0a798f3)
2020-08-13 Robert Tari
* Merge branch 'sunweaver-pr/ayatanamenuitemfactory-from-ido'
Attributes GH PR #15:
https://github.com/AyatanaIndicators/libayatana-indicator/pull/15
(e9902ad)
2020-08-13 Mike Gabriel
* Use ayatanamenuitemfactory.(c|h) from ayatana-ido. Reduce code
duplications. (e34f12e)
* Merge branch 'tari01-pr/ido-insertion-error-handling' (573e40f)
2020-08-13 Robert Tari
* Try to prevent cascading failure if IDO creation fails (f0ee1df)
2020-08-11 Mike Gabriel
* Merge branch 'tari01-pr/replace-x-canonical-attributes' (27f00a5)
2020-08-11 Robert Tari
* Replace x-canonical attributes (004ae04)
2020-08-10 Mike Gabriel
* debian/ayatana-indicator-common.links: Add FIXME/reminder to drop
manual symlinking of systemd user service file once DH
compat level is raised to a level above 12. (f57637e)
* Merge branch 'ubports-fix-systemd' (985f492)
2020-08-09 Marius Gripsgard
* Use indicators.target as the systemd lifecycle unit (42358cc)
2020-08-08 Robert Tari
* Fix tests and deprecations (fixes #1) (7ceee62)
2020-07-31 Robert Tari
* Merge pull request #5 from tari01/master (a5b1374)
* Resize open menus as items change (e528ee8)
2020-07-28 Mike Gabriel
* release 0.7.1 (74cfb21) (tag: 0.7.1)
2020-07-27 Robert Tari
* Merge pull request #4 from tari01/master (a7c9a35)
* Display and connect the Indicator Messages widgets (208176b)
2020-07-24 Mike Gabriel
* debian/*: Update from official Debian packaging. (9a41af8)
2020-07-23 Mike Gabriel
* release 0.7.0 (87e85c2) (tag: 0.7.0)
2020-07-22 Mike Gabriel
* debian/libayatana-indicator3-7.symbols: Add new symbols, already
targetting next upstream release. (e32b9d0)
* libayatana-indicator/Makefile.am: Make sure,
ayatanamenuitemfactory.c gets built during GTK-3 builds.
(1917f00)
2020-07-22 Robert Tari
* Display IDO widgets/Use own action muxer/Allow IDO CSS styling
(b619354)
2020-07-22 Mike Gabriel
* Merge branch 'ntninja-master' (c984cc5)
2019-12-12 Alexander Schlarb
* Make building of `ayatana-indicator-loader3` optional (c6f93fe)
2019-11-20 Mike Gabriel
* release 0.6.3 (faf2784) (tag: 0.6.3)
* debian/rules: Switch from dh_install --fail-missing to dh_missing
--fail-missing. (a5bc467)
**/Makefile.am: Set -DGTK_DISABLE_DEPRECATED for gtk2 builds. Fixes
FTBFS against Glib2.0 >= 2.62. (dd16c4c)
2019-08-29 Mike Gabriel
* libayatana-indicator/indicator-object.c: Typo fix in comment.
(b4a069f)
2018-11-05 Mike Gabriel
* GObject private API/ABI: Get rid of g_type_class_add_private() and
use DEFINE_TYPE_WITH_PRIVATE(). (a734066)
* debian/control: Switch B-D from libayatana-ido3-0.4-dev ->
libayatana-ido3-dev. (e8073fd)
2018-03-20 Mike Gabriel
* release 0.6.2 (3927e0f) (tag: 0.6.2)
* libayatana-indicator/indicator-ng.c: Type cast assignments from
g_object_ref_sink(). (34b4321)
* debian/control: Drop unneeded D (libayatana-indicator3-dev):
libayatana-indicator-dev. (3b3c265)
2017-10-26 Mike Gabriel
* Makefile.am: Drop distcheck features. (8de3f59)
2017-10-22 Mike Gabriel
* debian/changelog: Fix source project name in most recent changelog
stanza. (cffab72)
2017-09-27 Mike Gabriel
* debian/changelog: post-release fix in date strings (2) (fb3d8fe)
* debian/changelog: post-release fix in date strings (for 0.6.0 and
0.6.1) (7a2f684)
2017-09-23 Mike Gabriel
* post-release fix-up of debian/changelog (4f355a3)
2017-09-22 Mike Gabriel
* debian/rules: Drop dh_install call for bin:pkg
-plibayatana-indicator-tools. We don't ship that anymore.
(6233943)
* debian/ayatana-indicator-common.install: Set x-bit on file
permissions. (7222339)
* release 0.6.1 (20640dd) (tag: 0.6.1)
* debian/control: Add B-D systemd [linux-any]. (df6c2e9)
* debian/{control,ayatana-indicators-common}: Leave
ayatana-indicators-commin bin:package empty on non-systemd
systems. (7bd1d1d)
* configure.ac: Support pkg-config (<< 0.27). (afba9ad)
* autotools: Make systemd dependency optional. This makes
libayatana-indicator available on Debian GNU/kFreeBSD and
Debian GNU/Hurd. (2b5c1b0)
2017-05-22 Mike Gabriel
* debian/*: Adopt packaging improvements from official Debian
package. (5ff7174)
* release 0.6.0 (4fd7ae8) (tag: 0.6.0)
* Add empty NEWS file to prevent FTBFS. (c49b409)
* Update AUTHORS file. (9029a50)
* Move NEWS -> NEWS.Canonical. (0409f01)
* autogen.sh: Add 'ayatana-' to the PKG_NAME value. (820f332)
* README: Update, don't mention Unity. We are non-Ubuntu centric.
Also adapt path where indicator service files have to be
placed. (6523f70)
2017-05-16 Mike Gabriel
* Fix up for previous commit. (8c2a254)
2017-05-15 Mike Gabriel
* One step back... Mimick Canonical's API. Use their namespace for
item attributes. (ac3c960)
* tools/80indicator-debugging: Adapt comment header to our fork.
(9c42187)
2017-05-15 Ted Gould
* ayatana-indicator-common: Add a package to hold shared systemd
targets for systemd user session. (0f68605)
2017-05-15 Mike Gabriel
* drop buildcruft file (4ab9812)
* build system: Switch from gnome-common to mate-common. (c4a411d)
2016-02-19 Iain Lane
* Add -lm via LDADD to resolve FTBFS in Ubuntu 16.04 and Debian
stretch/unstable. (0871d14)
2015-11-16 Mike Gabriel
* Use x-ayatanaindicator-* instead of x-canonical-*. (c9b08c1)
* Makefile.am: Replace dist-hook for Bazaar based VCS repo against
dist-hook for a Git based VCS repo. (1748add)
2015-11-11 Mike Gabriel
* debian/libayatana-indicator*.symbols: Add .symbols files for shared
libraries. (35fbed9)
* debian/rules: Remove builddir/ and build-aux/ directories when
auto-cleaning up package. (9469b6e)
* Drop .bzrignore file. (ed550aa)
2015-11-10 Mike Gabriel
* debian/changelog: Use a Debianinc revision in the package version
(0.6.0 -> 0.6.0-0). (3682a7c)
* debian/control: Fix build-dep issue for libayatana-ido3-0.4-dev.
(9c0552f)
2015-11-07 Mike Gabriel
* Various fixes for making the library name change complete.
(fc142ac)
2015-11-06 Mike Gabriel
* Fork libayatana-indicator from Ubuntu's libindicator shared
library. (9d1b39f)
2014-09-22 CI bot
* Releasing 12.10.2+14.10.20140922-0ubuntu1 (b1f280a)
2014-09-22 Marco Trevisan (Treviño)
* IndicatorNG: Reverse the scroll delta on left scroll events
(5ae6789)
2014-07-16 Marco Trevisan (Treviño)
* IndicatorNG: Reverse the scroll delta on left scroll events
(19b7298)
* IndicatorLoader: convert gtk scroll events to indicator object
events (1a211d6)
* IndicatorLoader: add scroll-entry support (515f717)
2014-04-02 CI bot
* Releasing 12.10.2+14.04.20140402-0ubuntu1 (14a8261)
2014-04-02 William Hua
* Don't load using the icon info structure if it's a GBytesIcon.
Fixes: 1293548 (e662c87)
2014-03-29 William Hua
* Don't load using the icon info structure if it's a bytes icon.
(68a5ec6)
2014-03-04 CI bot
* Releasing 12.10.2+14.04.20140304-0ubuntu1 (1dc288c)
2014-03-04 Marco Trevisan (Treviño)
* IndicatorImageHelper: always try to use a GIcon or the filename as
source of the GdkImage (a0a0b28)
2014-03-03 Marco Trevisan (Treviño)
* IndicatorImageHelper: let's use the actual icon file if its height
is less than ICON_SIZE (844e1b5)
* IndicatorLoader: Make sure that we load the icon at its original
size, if not higher than IMAGE_SIZE (8a1bdd7)
2014-02-28 Marco Trevisan (Treviño)
* ImageHelper: set image from icon name if we have the filename
(acf1752)
* IndicatorImageHelper: always try to use a GIcon or the file-name as
source of the Gdk image (12db08f)
2014-02-18 CI bot
* Releasing 12.10.2+14.04.20140218-0ubuntu1 (517d1b4)
2014-02-18 Marco Trevisan (Treviño)
* IndicatorObject: add parent_window parameter to IndicatorEntry
(31d0819)
2014-02-13 Marco Trevisan (Treviño)
* IndicatorObject: add parent_window parameter to IndicatorEntry
(9affd1f)
2014-01-29 CI bot
* Releasing 12.10.2+14.04.20140129-0ubuntu1 (a7660e5)
2014-01-29 Lars Uebernickel
* indicator-ng: support "submenu-action" on root menu items
Fixes:
793450 (ced7687)
* indicator-ng: support "submenu-action" on root menu items (239817c)
2014-01-17 Łukasz 'sil2100' Zemczak
* Sync trunk with what's in the archive (759fdd8)
2013-12-20 Colin Watson
* Use named icons rather than (deprecated) stock items.
Fixes:
https://bugs.launchpad.net/bugs/1262626. (b7f9938)
* Use named icons rather than (deprecated) stock items. (a1e5383)
2013-12-19 Lars Uebernickel
* Don't treat deprecation warnings as errors and fix indicator-ng
test for gtk 3.10.
Fixes:
https://bugs.launchpad.net/bugs/1262626. (f6b60f1)
* test-indicator-ng: adapt to new gtkmodelmenuitem widget structure
(b2d4deb)
* Don't treat deprecation warnings as errors (ef145fc)
2013-11-25 Automatic PS uploader
* Releasing 12.10.2+14.04.20131125-0ubuntu1 (revision 517 from
lp:libindicator). (a1318f0)
* Releasing 12.10.2+14.04.20131125-0ubuntu1, based on r517 (cef38fd)
2013-10-31 Timo Jyrinki
* Sync changelog from what's in archive. (69132b0)
2013-10-29 Lars Uebernickel
* Allow setting different positions for each profile in indicator
files (cf5ac5e)
2013-10-24 Charles Kerr
* When we can't get a handle to the bus, exit gracefully instead of
crashing.
Fixes: https://bugs.launchpad.net/bugs/1218222.
(773d09b)
2013-10-23 Charles Kerr
* minor cleanup in the dispose() and finalize() functions (2d8ee13)
* When we can't get a handle to the system bus, exit gracefully
instead of crashing. (40b4288)
2013-10-17 Lars Uebernickel
* indicator-ng: always create entry.label and entry.image (de95588)
* indicator-ng: always create entry.label and entry.image (244d618)
* Warn when an indicator doesn't get respawned anymore. (ccf83ad)
2013-10-16 Lars Uebernickel
* Warn when an indicator doesn't get respawned anymore (0a9a95f)
2013-10-10 Lars Uebernickel
* Allow setting per-profile positions in indicator files (478ea09)
2013-09-13 Automatic PS uploader
* Releasing 12.10.2+13.10.20130913-0ubuntu1 (revision 511 from
lp:libindicator). (a52033e)
* Releasing 12.10.2+13.10.20130913-0ubuntu1, based on r511 (f5e4716)
2013-09-09 Lars Uebernickel
* Expose scrolling and middle clicking to fix bug #1221242 and
#1204036 (make scrolling and middle clicking work on the
sound indicator).
Fixes:
https://bugs.launchpad.net/bugs/1204036,
https://bugs.launchpad.net/bugs/1221242. (5878e6b)
* Remove debug message (9e857c3)
* Support x-canonical-secondary action (bb39362)
* Support "x-canonical-scroll-action" (f4fa566)
2013-08-23 Automatic PS uploader
* Releasing 12.10.2+13.10.20130823-0ubuntu1 (revision 509 from
lp:libindicator). (86f3d9e)
* Releasing 12.10.2+13.10.20130823-0ubuntu1, based on r509 (415565b)
2013-08-22 Marco Trevisan (Treviño)
* IndicatorDesktopShortcuts: add support to Path key for shortcut
items.
Fixes: https://bugs.launchpad.net/bugs/1113883.
(b47e0f1)
* IndicatorDesktopShortcut: fix indentation (59a242d)
* IndicatorDesktopShortcuts: restore previous working dir if we
changed it (427b5d5)
2013-08-09 Marco Trevisan (Treviño)
* IndicatorDesktopShortcuts: use g_key_file_get_string for path
(6d93aba)
2013-08-08 Marco Trevisan (Treviño)
* IndicatorDesktopShortcuts: add support to Path key for shortcut
items (c0bb294)
2013-07-31 Automatic PS uploader
* Releasing 12.10.2+13.10.20130731-0ubuntu1 (revision 507 from
lp:libindicator). (f695712)
* Releasing 12.10.2+13.10.20130731-0ubuntu1, based on r507 (a8df6b3)
2013-07-30 Charles Kerr
* in indicator-loader3, if we're looking at an ng-style indicator,
show all of its profiles instead of just one. (ae7687c)
2013-07-26 Charles Kerr
* explicitly set UBUNTU_MENUPROXY to 0 (e430061)
* more copyediting. why am I awake? (f842a80)
* copyediting: fix linewraps (5acc284)
2013-07-25 Charles Kerr
* plug a keyfile leak (7f61992)
* in indicator-loader, show =all= the profiles (083af7d)
2013-07-19 Automatic PS uploader
* Releasing 12.10.2+13.10.20130719-0ubuntu1 (revision 505 from
lp:libindicator). (ce7a42f)
* Releasing 12.10.2+13.10.20130719-0ubuntu1, based on r505 (ed00a13)
2013-07-18 Marco Trevisan (Treviño)
* IndicatorDesktopShortcuts: fix memory leak, free groupheader.
(0c4921a)
2013-07-17 Marco Trevisan (Treviño)
* IndicatorDesktopShortcuts: free groupheader (598c4b7)
2013-07-02 Automatic PS uploader
* Releasing 12.10.2+13.10.20130702-0ubuntu1 to ubuntu. (507e694)
* Releasing 12.10.2+13.10.20130702-0ubuntu1, based on r503 (4cacb64)
2013-06-28 Lars Uebernickel
* Add support for indicators to tell the panel where they'd like to
appear (4ec8c2f)
* indicator-object: g_return_if_fail -> g_return_val_if_fail
(e7e2b63)
* README: include information about the new Position key in indicator
files (9090409)
* Allow indicators to tell the panel where they want to appear
(e744e38)
2013-06-28 Automatic PS uploader
* Releasing 12.10.2+13.10.20130628-0ubuntu1 to ubuntu. (3470db7)
* Releasing 12.10.2+13.10.20130628-0ubuntu1, based on r501 (55e85a1)
2013-06-27 Charles Kerr
* Fixes a crasher bug in ng's parsing of the response to
org.freedesktop.DBus.StartServiceByName: The result's
variant format is "(u)", not "u". (b4ea3e7)
* in indicator_ng_service_started(), the result's variant type should
be parsed as '(u)' rather than 'u' (104bcd6)
2013-06-19 Automatic PS uploader