-
Notifications
You must be signed in to change notification settings - Fork 14
/
ChangeLog
4939 lines (3735 loc) · 187 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.5.93 (HEAD -> master, tag: 0.5.93)
2023-09-10 Mike Gabriel
* Merge branch 'tari01-pr/enable-docs' (a80f3b7)
2023-09-07 Robert Tari
* CMakeLists.txt: Generate GTK documentation by default (277f584)
2023-08-10 Robert Tari
* README.md: Fix title copy-paste mistake (05ee0c7)
2023-09-07 Robert Tari
* Merge branch 'tyll-executable_so' (54fc06c)
2023-09-06 Till Maas
* cmake: Install library as library (12dc6d2)
2023-08-10 Mike Gabriel
* debian/libayatana-appindicator*.symbols: Update .symbols after
having limited the number of exported symbols. (86f8bb3)
* Merge branch 'tari01-pr/limit-symbols' (ef6ee22)
2023-08-09 Robert Tari
* Limit exported symbols (4d97676)
2023-08-10 Mike Gabriel
* Merge branch 'tari01-pr/build-instructions' (2a3ed01)
2023-08-09 Robert Tari
* Add info and build instructions (e0c8e15)
2023-08-10 Mike Gabriel
* Merge branch 'tari01-pr/drop-dbus-glib' (3b69c23)
2023-08-09 Robert Tari
* .build.yml: Drop dbus-glib and dbus dependencies (d6cdc24)
* debian/control: Drop libdbus-glib-1-dev and libdbus-1-dev (1ac50df)
* Replace DBus-GLib with GDBus and drop libdus (f3cf535)
* tests/test-libappindicator.c: Drop unread value (25001b0)
2023-08-07 Mike Gabriel
* Merge branch 'WPettersson-document-status' (9201035)
2023-07-20 William Pettersson
* Document the status property a bit more clearly. (864b830)
2023-06-07 Mike Gabriel
* Merge branch 'tari01-pr/build-fixes' (2b32292)
2023-03-11 Robert Tari
* .build.yml: Add doc requirements and build with GTKDOC (05913e6)
* bindings/mono/CMakeLists.txt: Drop path from linked resource file
(e67e62e)
* src/app-indicator.c: Don't use GNU old-style field designator
extension (d848644)
2023-03-10 Robert Tari
* src/app-indicator.c: Fix documentation related errors (f7f4a8d)
* Explicitly mark deprecated functions and use substitutes (aec1741)
* src/AyatanaAppIndicator*-0.1.metadata: Drop unused metadata
(483cd99)
* bindings/mono/CMakeLists.txt: Drop unused properties (6f8cdd5)
* bindings/mono/libayatana-appindicator*-api.metadata: Drop/fix
properties, methods and signals (833d2c9)
* Whitespace fix (9f92d34)
2023-02-02 Mike Gabriel
* release 0.5.92 (d214fe3) (tag: 0.5.92)
* Merge branch 'tari01-pr/fix-build-warnings' (4f9c4e9)
2022-07-15 Robert Tari
* Fix all remaining build warnings (694ab4e)
2022-08-19 Robert Tari
* src/app-indicator.c: Fix wrong function signatures (0231964)
2022-07-15 Robert Tari
* Silence warnings generated by Vala (d305bda)
2022-07-14 Robert Tari
* Fix remaining deprecation warnings (44a82a0)
2022-07-13 Robert Tari
* src/app-indicator.c: Silence GtkStatusIcon deprecation warnings
(cc27f13)
* Whitespace fix (28d2178)
2022-04-08 Mike Gabriel
* release 0.5.91 (f225dcc) (tag: 0.5.91)
* Merge branch 'pr/discord-segfaulting' (59e472a)
2022-04-01 Mike Gabriel
* src/appindicator.c: Clean up all g_signal_emit and g_signal_new
calls so that they correspond with each other. (05dee64)
* src/appindicator.c: Fix path NULL check in status_icon_change().
(540b7bf)
2022-04-01 Robert Tari
* Merge branch 'sunweaver-pr/gpl-3-copying-file' (5b0a474)
2022-04-01 Mike Gabriel
* COPYING.GPL.3: Add file. Some code files are licensed GPL-3. Thanks
to Luca Weiss for spotting this. (6c01f2c)
2022-02-16 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (420dcd2)
2022-02-11 Robert Tari
* .build.yml: Drop extra compilation flags (0ea872f)
* Clean up compilation flags (e6b34ef)
2022-02-09 Robert Tari
* Merge branch 'sunweaver-pr/let-run-xvfv-sh-run-in-bin-sh' (3bec2d1)
2022-02-08 Mike Gabriel
* tests/run-xvfb.sh: Allow sourcing run-xvfb.sh with /bin/sh.
(772bab7)
* Merge branch 'z3ntu-tests-bash' (ea135ed)
2022-02-06 Luca Weiss
* Use /bin/sh for running tests (dc4d76b)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
(b09086c)
2022-01-27 Robert Tari
* Merge branch 'sunweaver-pr/pkg-config-file-for-gtk2-broken'
(43cfc1e)
2021-12-21 Mike Gabriel
* src/ayatana-appindicator3-0.1.pc.in: Update description field and
mention GTK-3+. (1f74aa3)
* src/ayatana-appindicator-0.1.pc.in: Adapt file for CMake builds.
This slipped through when porting from autotools to CMake,
it seems. (Thanks to Unit193 for reporting this via IRC).
(7019d68)
2021-12-08 Mike Gabriel
* Merge branch 'z3ntu-canonicalize_file_name' (e689457)
2021-12-07 Luca Weiss
* Fix build with musl libc (89415c0)
2021-11-18 Mike Gabriel
* release 0.5.90 (afb37c4) (tag: 0.5.90)
2021-10-24 Mike Gabriel
* debian/rules: Unset DBUS_SESSION_BUS_ADDRESS before running tests.
(2bf2076)
* CMakeLists.txt: Fix how we evaluate the result for find_program for
gtkdoc-scan. (ea91c02)
* CMakeLists.txt: Fix gtkdoc-scan binary name. (d008320)
2021-10-24 Robert Tari
* Merge branch 'sunweaver-pr/run-tests-in-build_scripts-target'
(c3f146d)
2021-10-24 Mike Gabriel
* .build.yml. Run unit tests directly after build in build_scripts:
target. (a6c9ba8)
2021-10-24 Robert Tari
* Merge branch 'sunweaver-pr/dbus-test-runner-keep-env' (c2f6dc5)
* Merge branch 'sunweaver-pr/fix-mono-bindings-for-gtk3' (06df5ff)
2021-10-24 Mike Gabriel
* tests/CMakeLists.txt: Assure that modified outside environment
variables (see debian/rules) survive into the
dbus-test-runner wrapped environment. (471a7ac)
* .build.yml: Fix building and running unit tests (mixed up of && and
||). (52bade6)
* .build.yml: Drop local builds of ayatana-ido and
libayatana-indicator. They confuse cppcheck. (d34e805)
* .build.yml: Fix rebuild with gcc on multi-core build nodes.
(3a6def5)
* .build.yml and debian/control: Sync list and order of
build-dependencies (Debian and Ubuntu). (074fb94)
* bindings/mono/CMakeLists.txt: Fix missing target
bindings/mono/AyatanaAppIndicator/ApplicationIndicator.cs.
(c8b0ce5)
2021-10-24 Robert Tari
* Merge branch 'sunweaver-pr/gi-is-mandatory' (adaf4e3)
* .build.yml: Fix typo (12f77f0)
2021-10-23 Mike Gabriel
* CMakeLists.txt: White-space fix (remove superfluous empty line).
(289797b)
* CMakeLists.txt: Check for presence of gtk-doc executable if
-DENABLE_GTKDOC=ON. (aaac9d8)
* {,bindings/}CMakeLists.txt: Add switch for enabling/disabling
bindings (enabled by default). (9673233)
2021-10-24 Robert Tari
* .build.yml: Fix typo (f720888)
* Merge branch 'sunweaver-pr/check-for-gtk-doc' (ba37cb9)
2021-10-23 Mike Gabriel
* {,bindings/}CMakeLists.txt: Add switch for enabling/disabling
bindings (enabled by default). (d80057c)
2021-10-24 Robert Tari
* Merge branch 'sunweaver-pr/make-bindings-optional' (62c77b5)
2021-10-23 Mike Gabriel
* src/CMakeLists.txt: GObjectIntrospection is not optional, so mark
it as REQUIRED (only). (c3e24c2)
* CMakeLists.txt: White-space fix (remove superfluous empty line).
(3bbad2a)
* CMakeLists.txt: Check for presence of gtk-doc executable if
-DENABLE_GTKDOC=ON. (5ffca10)
* {,bindings/}CMakeLists.txt: Add switch for enabling/disabling
bindings (enabled by default). (7e5b7d8)
2021-10-23 Robert Tari
* Merge branch 'sunweaver-pr/bring-back-gtk2-build-support' (7e4b671)
* Merge branch 'sunweaver-pr/add-enable-gtkdoc-cmake-option'
(69f8357)
2021-10-23 Mike Gabriel
* .build.yml: Drop autogen.sh support; add GTK+-2.0 build and test
support; also run unit tests on Ubuntu. (91bddd9)
* debian/*: Re-enable / uncomment GTK+ 2.0 support. (152bf4e)
* Re-introduce (CMake based) build support against GTK+ 2.0.
(c723768)
* CMakeLists: Introduce -DENABLE_GTKDOC. (1245eb7)
2021-10-22 Mike Gabriel
* debian/rules: Run GTK3 unit tests first (see if they also fail on
Jenkins). (61bb127)
* debian/rules: Also explicitly set XDG_CACHE_HOME for unit tests.
(4de805f)
* debian/rules: Also set XDG_DATA_HOME for unit tests. (800f06c)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (7bb8af0)
* .travis.yml: Temporarily disable ppc64le builds (38190d0)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (e7d58e5)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (8d3a18b)
2021-06-11 Robert Tari
* Merge branch 'sunweaver-pr/debian-fix-gtk-3-only-builds' (c173a0e)
2021-06-11 Mike Gabriel
* debian/*: Fix DEB builds (GTK-3+ only for now) after CMake
switch-over. (5826955)
2021-06-11 Robert Tari
* Merge branch 'sunweaver-pr/mono-namespacing-fix' (909558a)
2021-06-11 Mike Gabriel
* Mono bindings: Change namespace from ayatana-appindicator-sharp3 to
ayatana-appindicator3-sharp (and similar). (d359a4b)
2021-06-10 Mike Gabriel
* debian/changelog: Bump package version to 0.5.90. (301b56f)
* Merge branch 'tari01-pr/move-to-cmake' (80245fc)
2021-06-09 Robert Tari
* bindings/vala/ayatana-appindicator3-0.1.deps: Add all dependencies
(fd8225e)
2021-06-03 Robert Tari
* .build.yml: Add libdbus-1-dev dependency for Debian/Ubuntu
(edc83f3)
2021-06-02 Robert Tari
* .build.yml: Add gtk-sharp3-gapi dependency for Debian/Ubuntu
(363301e)
2021-06-01 Robert Tari
* .build.yml: Add libgtk3.0-cil-dev dependency (56c2732)
2021-02-27 Robert Tari
* Drop Automake files (ec32948)
* Drop legacy GTK files (93f8f78)
* Add CMakeLists.txt files + cmake/ helpers (367188d)
* bindings/mono/examples: Port ayatana-indicator-example.in to CMake
(2d8c300)
* bindings/mono: Drop custom extension and use partial class in
ApplicationIndicatorCustom.cs (33422a5)
* bindings/vala: Add ayatana-appindicator3-0.1.deps (3ed807d)
* bindings/mono: Rename and port
ayatana-appindicator-sharp3-0.1.pc.in to CMake (e16b735)
* src: Port ayatana-appindicator3-0.1.pc.in to CMake (7b0ede1)
* bindings/mono: Use preconfigured
ayatana-appindicator-sharp.dll.config (a52688b)
* docs/reference: Port version.xml.in to CMake (1d8eec2)
* docs/reference: Port libayatana-appindicator-docs.sgml.in to CMake
(3ebb89d)
* bindings/mono: Port policy.0.1.ayatana-appindicator-sharp.config.in
to CMake (0df68d8)
* bindings/mono: Port policy.0.0.ayatana-appindicator-sharp.config.in
to CMake (290c62f)
* bindings/mono: Update AssemblyInfo.cs (00f0e2c)
* bindings/mono: Port app-indicator.sources.xml.in to CMake (4e06a0e)
* src: use preconfigured AyatanaAppIndicator3-0.1.metadata (5004d72)
2021-05-25 Robert Tari
* Merge branch 'sunweaver-pr/travis-ci' (3148485)
2021-05-25 Mike Gabriel
* configure.ac: Default to GTK+-3.0 build (will come with CMake
switch, anyway). (3400cf9)
* {src,tests}/Makefile.am: Drop -Werror flag for now. Needs to be
re-added later. (32f5f11)
* Travis CI: Add initial scripts for running CI builds on Travis CI.
(13f7ad0)
2021-05-03 Mike Gabriel
* debian/rules: Make really really sure that unit tests are not run
in parallel (although this looks ugly). (826f848)
2021-05-01 Mike Gabriel
* Merge branch 'pr/fix-unit-tests' (1defcc3)
2021-04-30 Mike Gabriel
* debian/rules: Switch to official Debian's dotest-% target. This
stops ignoring unit tests during DEB package buids (and
also fixes them). (6173997)
* tests/Makefile.am: Add --keep-env option to dbus-test-runner calls.
Allows propagating e.g. a build HOME into the DBus test
environment. (04a517e)
2020-07-23 Mike Gabriel
* release 0.5.5 (c43a76e) (tag: 0.5.5)
* debian/rules: Explicitly set XDG_CACHE_HOME during unit tests, too.
Hope this amends the dconf errors spotted lately.
(c11784b)
* debian/rules: Fix dh_auto_test call in dotest-%: target. (91ec65e)
* debian/control: Drop R³ field again, it causes FTBFS on Ubuntu
bionic in their version of dh_makeclilibs. (71dfd0a)
* debian/rules: Drop more Python2 build stuff, esp. references to
Py2-version specific builds. (05ebffc)
* debian/changelog: Fix typo in previous changelog stanza's date.
(1c48b44)
2020-07-22 Mike Gabriel
* configure.ac: Drop Python section that configured the build for
Python2 bindings. (50e147a)
2020-07-20 Mike Gabriel
* configure.ac: No more reference to Python2 ayatana_appindicator
bindings. (6af5e32)
2020-07-19 Mike Gabriel
* debian/rules: Drop reference to python2 build of remove bin:pkg
python-ayatana-appindicator. (7373261)
2020-07-18 Mike Gabriel
* debian/control: Port over changes from official Debian packaging.
(43dc072)
* bindings/pyton: Drop Python2/Gtk-2 bindings. (8c4c6db)
* debian/*: Drop Python2 binding support. (eb5ffbb)
2019-11-11 Mike Gabriel
* release 0.5.4 (5ca235f) (tag: 0.5.4)
2019-08-29 Mike Gabriel
* Avoid deprecated g_type_class_add_private. (e7acaf9)
2018-03-22 Mike Gabriel
* debian/control: Add Ds for libgtk*-dev to
libaytana-appindicator*-dev. (f9d315a)
2018-03-20 Mike Gabriel
* debian/control: Drop from Recommends:
ayatana-indicator-application. The -application Indicator
should be pulled in from the desktop env's side that wants
to utilize it (e.g. via the indicator-render applet).
(7b7bd6b)
* release 0.5.3 (4892a12) (tag: 0.5.3)
* src/app-indicator.c: Type cast assignments from g_object_ref().
(b14ba33)
2017-10-26 Mike Gabriel
* {configure.ac,Makefile.am}: Drop distcheck features. (d4b1697)
2017-10-24 Mike Gabriel
* release 0.5.2 (a081ea2) (tag: 0.5.2)
* debian/source/format: Explicitly set to source format 1.0.
(82f779a)
* debian/upstream/signing-key.asc: Add upstream signing key.
(34f4291)
* debian/control: Use Github repo in Vcs-*: URL fields. (5f9176e)
* debian/control: Bump Standards-Version: to 4.1.1. No changes
needed. (f8fccd9)
* debian/control: Fix Homepage: URL. (7a4fb33)
* debian/*.install: Adapt .typelib installation paths (to
multi-arch). (eff5282)
* debian/control: Various adaptation to SYNOPSIS and LONG_DESCRIPTION
fields. (eb9d5a1)
* debian/rules: Only dh_install cil packages on architectures that
support Mono. (6a978fc)
* debian/rules: Enable all hardening flags. (906c9a4)
* debian/copyright: Adopt from official Debian package (slightly
modified). (3a09566)
* debian/rules: White space fix. (af533aa)
* API documentation: Suppress some warnings being thrown. (c3c9e79)
* python2 bindings: Finally avoid implicit declaration for
(_ayatana)_appindicator_add_constants() function symbol.
(d89dee1)
2017-10-06 Mike Gabriel
* debian/control: Add to B-D: dh-python. (024cc53)
2017-10-05 Mike Gabriel
* src/app-indicator.c: Avoid usage of PATH_MAX macro. Fixes FTBFS on
Debian GNU/Hurd. (bc7f683)
2017-09-29 Mike Gabriel
* Revert "debian/{control,compat}: Bump DH version level to 10 (and
bump B-D to >= 10)." (c17c300)
* post-release project name fix in debian/changelog (4388914)
* debian/control: Add missing , at EOL under B-D. (0303c95)
2017-09-28 Mike Gabriel
* debian/{control,rules}: Update supported host architectures.
(9164fa6)
* debian/{control,compat}: Bump DH version level to 10 (and bump B-D
to >= 10). (9c19888)
* bindings/mono/Makefile.am: Don't run tests on all targets, only on
check target. Fixes FTBFS when built parallely. (65e8d53)
2017-09-26 Mike Gabriel
* debian/changelog: Post-release fix in date string of 0.5.0 release
stanza. (303ab50)
* bindings/python: Yet another 'ayatana' namespace fix for the
Python2 bindings. (ee1719a)
2017-09-23 Mike Gabriel
* release 0.5.1 (c3dc683) (tag: 0.5.1)
* Python2 bindings: Fix import ayatana_appindicator failure by
correctly adding the ayatana namespace. (8a97153)
* docs/reference/Makefile.am: Drop option --nogtkinit from
SCANGOBJ_OPTIONS. Has been long deprecated in scangobj and
been removed in gtk-doc (>= 1.26). (75d83e0)
2017-05-22 Mike Gabriel
* release 0.5.0 (73a2c16) (tag: 0.5.0)
* autogen.sh: Fix PKG_NAME. Use ayatana- in PKG_NAME. (bd7789c)
2017-05-15 Marco Trevisan (Treviño)
* app-indicator: don't append the snap prefix if the icon is saved in
a well known readable path (0f55cbb)
* AppIndicator: don't emit label cahanges when guide is still empty
(20e557b)
* AppIndicator: fix icon and theme paths when running in $SNAP
environment (5b851ff)
2017-05-15 Alberts Muktupāvels
* Handle watcher service appearing and disappearing. (17376e1)
2017-05-15 Dmitry Shachnev
* Make test-simple-app really working. (14520bd)
2017-05-15 Mike Gabriel
* build system: Switch to mate-common. (b0a3d75)
* src/dbus-shared.h: Fix copy+paste flaw for
INDICATOR_APPLICATION_DBUS_OBJ. (4dd25fc)
2015-11-11 Mike Gabriel
* debian/rules: Use instead of `pwd`. (3dbc56b)
* Re-rename README.md to README. Otherwise automake will complain.
(8f3e225)
* README.md: Don't sound Ubuntu-hostile (which we aren't). (d7266c0)
* Rename README -> README.md, fill with content. (b63351e)
* tests/run-xvfb.sh: Give tests even more time (10s). (742c033)
* tests/run-xvfb.sh: Give tests more time (4s instead of 2s) to
complete. This may help with observed / arbitrary test
failures when built on jenkins.arctica-project.org.
(c6d4799)
* debian/control: Fix versioned build-dependency for
libayatana-indicator{,3}-dev. (6b3a341)
* Revert "debian/rules: Make sure the kill command is found in ..."
(d9c905e)
* debian/rules: Make sure the kill command is found in
/home/mike/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/opt/thinlinc/bin.
(1abf3ea)
* debian/rules: Use backticks instead of $(<cmd>) (which is not a GNU
make way of invoking commands). (1a915b2)
* debian/rules: Provide temporary home for test suite runs. (865dd82)
* debian/rules: Expect tests/test-suite.log files in build/gtk<ver>
subdirs. (7ded69d)
* debian/rules: Don't abort build on failing tests (so that we see
the tests-suite.log file). (d95085e)
* debian/rules: View test's log file for better debugging of problems
when built in clean chroots. (0d6f90a)
* debian/control: Add B-D: procps. The test suite complains about the
ps command to be missing in minimal build environments.
(5f0eee4)
* Drop .bzrignore file. (c7c92ab)
2015-11-10 Mike Gabriel
* debian/control: Fix build-dependency issue for nightly builds.
(5952912)
2015-11-09 Mike Gabriel
* Fork from Ubuntu's libappindicator project. (def21c2)
2014-11-10 CI bot
* Releasing 12.10.1+15.04.20141110-0ubuntu1 (bf7bc28)
2014-11-10 Lars Uebernickel
* scroll-event: change parameter to the right type (9cb1df0)
2014-11-10 Matthias Klose
* Rebuild to drop files installed into /usr/share/pyshared. (643fad3)
2014-11-10 Lars Uebernickel
* gcov.m4: add lcov 1.11 (cd218c8)
* scroll-event: change parameter to the right type (ae927bc)
2013-12-19 Ted Gould
* Fix build failures on trusty.
Fixes:
https://bugs.launchpad.net/bugs/1262655. (25762ad)
* Adding gcov 1.10 (52c50b3)
2013-12-19 Matthias Klose
* Build with -Wno-error=deprecated-declarations.; Don't build the
mono bindings on ppc64el, not available.; Disable
building the example, vala build error. (a703b19)
2013-10-17 Robert Bruce Park
* Merge distro back to trunk. (65bc7f8)
* Merge distro back to trunk. (3cb943d)
2013-10-14 Matthias Klose
* Don't build the mono bindings on AArch64, not available.
Fixes:
https://bugs.launchpad.net/bugs/1239474. (7fa21cc)
* Don't build the mono bindings on AArch64, not available. (LP:
#1239474) (63078a8)
2013-09-20 Automatic PS uploader
* Releasing 12.10.1+13.10.20130920-0ubuntu1 (revision 266 from
lp:libappindicator). (53d9d3d)
* Releasing 12.10.1+13.10.20130920-0ubuntu1, based on r266 (6561e54)
2013-09-16 Jeremy Bicha
* - Build using default vala - Build-depend on at-spi2-core to avoid
test failure - Build-depend on libxml2-utils - Don't
explicitly build-depend on gir packages, gnome-doc-utils,
or quilt - Have -dev packages depend on their gir-
packages. (e467f23)
2013-08-13 Jeremy Bicha
* Don't explicitly build-depend on gir packages, quilt, or
gnome-doc-utils Build using default vala Build-depend on
libxml2-utils Build-depend on at-spi2-core to avoid test
failure Have -dev packages depend on their gir- packages
(88416a6)
2013-06-19 Automatic PS uploader
* Releasing 12.10.1daily13.06.19-0ubuntu1 to ubuntu. (2f5c0e2)
* Releasing 12.10.1daily13.06.19-0ubuntu1, based on r264 (d24626e)
2013-06-10 Marco Trevisan (Treviño)
* NotificationWatcher interface has not anymore the
XAyatanaRegisterNotificationApprover method. (6e92176)
2013-06-10 Ted Gould
* Making gtk-doc check run in the current source directory. (e17244e)
2013-06-07 Ted Gould
* Seems no one else has this on, no reason to be the odd ball.
(256ce01)
* Don't need the same directory twice (5ab6b49)
* An odd typo worth fixing (b8fe5d1)
* Going back to the environment style (27a81fb)
* Dropping some left over debugging info (955ce2e)
* Making sure the check is done in the source directory (0678dac)
2013-05-03 Automatic PS uploader
* Releasing 12.10.1daily13.05.02-0ubuntu1 to ubuntu. (1ca305b)
2013-05-02 Automatic PS uploader
* Releasing 12.10.1daily13.05.02-0ubuntu1, based on r261 (da7e4bb)
2013-05-02 Mathieu Trudel-Lapierre
* Merge changelog changes from /13.04 branch for saucy. (2a10f27)
* Merge changelog changes from /13.04 branch for saucy. (8c82773)
2013-04-19 Łukasz 'sil2100' Zemczak
* indicator_desktop_shortcuts_nick_exec() is deprecated, use
indicator_desktop_shortcuts_nick_exec_with_context() with
a NULL context instead - fixes the FTBFS. (a510902)
* indicator_desktop_shortcuts_nick_exec is deprecated, use
indicator_desktop_shortcuts_nick_exec_with_context instead
- fixes the FTBFS (affeefe)
2013-04-17 Mathieu Trudel-Lapierre
* Remove the clean target. (0202579)
2013-04-16 Iain Lane
* Install appindicator-sharp's pcfile into /usr/share/pkgconfig as
this is an arch:all package and library. Update the
assemblydir variable in this pcfile to refer to the
correct location for the library instead of an incorrect
multiarch directory. (02d580a)
* Install appindicator-sharp's pcfile into /usr/share/pkgconfig as
this is an arch:all package and library. Update the
assemblydir variable in this pcfile to refer to the
correct location for the library instead of an incorrect
multiarch directory. (32257b0)
2013-04-09 Mathieu Trudel-Lapierre
* debian/rules: drop the clean target, it's superfluous. (e40014d)
2013-04-03 Mathieu Trudel-Lapierre
* Reverse the order of dh_clean and dh_autoreconf_clean, fixes issues
where autoreconf files get dropped and thus autoreconf
fails to properly clean. (736066f)
2013-03-13 Automatic PS uploader
* Releasing 12.10.1daily13.03.13-0ubuntu1 to ubuntu. (5d2aa7d)
* Releasing 12.10.1daily13.03.13-0ubuntu1, based on r255 (8bdd55e)
2013-03-11 Sebastien Bacher
* stop build-depending on libindicate, it's deprecated and not used
there. (5c18eb1)
* stop build-depending on libindicate, it's deprecated and not used
there (34d5196)
2013-02-15 Automatic PS uploader
* Releasing 12.10.1daily13.02.15-0ubuntu1 to ubuntu. (d3d5390)
* Releasing 12.10.1daily13.02.15-0ubuntu1, based on r253 (ef867f3)
2013-02-14 John Vert
* in app_indicator_init(), finish initializing self's fields before
calling g_bus_get().
Fixes:
https://bugs.launchpad.net/bugs/1122596. (59c3e10)
* in app_indicator_init(), finish initializing self's fields before
calling g_bus_get(). (6e84cff)
2013-02-14 Iain Lane
* Install typelib files into non Multi-Arch paths.
Fixes:
https://bugs.launchpad.net/bugs/1124941. (93b038e)
* Install typelib files in standard (non MA) paths (0a83385)
2013-02-13 Automatic PS uploader
* Releasing 12.10.1daily13.02.13-0ubuntu1 to ubuntu. (ede8d21)
* Releasing 12.10.1daily13.02.13-0ubuntu1, based on r250 (454c84f)
2013-02-05 Mathieu Trudel-Lapierre
* Bootstrap message.
Fixes: https://bugs.launchpad.net/bugs/1065310.
(89da4a1)
2013-02-04 Mathieu Trudel-Lapierre
* Automatic snapshot from revision 245 (bootstrap): - Fix Vala
classes not being able to inherit from Indicator (LP:
#1065310) (5d60b84)
* We don't need to kill at-spi2-registry, that was only meant for
testing. (e0e8251)
* We don't need to kill at-spi2-registry, that was only meant for
testing. (b266f26)
2013-01-30 Charles Kerr
* This is a continuation of
~mathieu-tl/libappindicator/fix-test-merge/ which adds
fixes for bug #1102589, bug #1102595, bug #1109128, and
bug #1103087, which should get it finally passing CI.
Fixes: https://bugs.launchpad.net/bugs/1102589,
https://bugs.launchpad.net/bugs/1102595,
https://bugs.launchpad.net/bugs/1103087,
https://bugs.launchpad.net/bugs/1109128. (bd333ad)
2013-01-29 Charles Kerr
* fix potential overflow reported by Coverity (3e9b3f1)
* fix copy-paste error when updating the attention accessible text
(0793d59)
* flush the dbus connection before exiting
test-libappindicator-status-server (345b7af)
* raise gtk+ minimum to 2.35.4 because we no longer use g_type_init()
(82b3dc0)
2013-01-23 Mathieu Trudel-Lapierre
* Increase dbus-test-runner timeout to 5 minutes to give tests enough
time to start up and run on buildds, especially on slow
architectures. (fc8b73e)
* resolve conflicts on acinclude.m4 (1c9c770)
2013-01-21 Chris J Arges
* This fixes python multi-arch include issues. (ee33a9a)
2013-01-17 Chris J Arges
* acinclude.m4: Fix python multi-arch include issues. (962ea76)
2013-01-16 Mathieu Trudel-Lapierre
* Remove deprecated calls to g_type_init() (6a86412)
* Adjust timeouts and log handlers to not fail tests unnecessarily.
(8958959)
2013-01-14 Michael Terry
* increase another test timeout to make amd64 build (c5aca65)
2013-01-10 Michael Terry
* some packaging fixes to make tests more resistant to timing issues
and warnings from sub-libraries (616555a)
2013-01-08 Mathieu Trudel-Lapierre
* More traces (b598e7c)
2012-12-18 Marco Trevisan (Treviño)
* NotificationWatcher: remove XAyatanaRegisterNotificationApprover
method (62ef4f4)
2012-12-11 Mathieu Trudel-Lapierre
* Properly retrieve the path to python headers. (59a0f71)
2012-12-10 Mathieu Trudel-Lapierre
* Remove entry about disabling tests for documentation: they're
fixed. (8aad250)
* Fix gtkdoc tests and building of the documentation given a separate
build directory. (c8d15b0)
2012-12-07 Mathieu Trudel-Lapierre
* Re-enable docs (0605654)
2012-12-06 Mathieu Trudel-Lapierre
* Add reference to the bug we're waiting for a fix for; re: gtk-doc
completeness, missing links and undocumented symbols
(db9a00b)
* Temporarily disable gtk-doc completeness tests until they can be
fixed. (35683fe)
2012-12-05 Ted Gould
* Adding a custom clean rule to the inline packaging. (3050e34)
2012-12-05 Mathieu Trudel-Lapierre
* Inline packaging (9651f1d)
2012-12-04 Ted Gould
* Trying to be more direct (d2f16cb)
* Going with just dh_clean (3dceb09)
* Making it so that clean doesn't have cli in it (63938c0)
2012-11-30 Mathieu Trudel-Lapierre
* Properly disable tests for gtk2 and gtk3, not the gtk2 build.
(a640bfe)
* Temporarily disable GTK2 tests. (085a347)
2012-11-30 Charles Kerr
* update our use of gtk-doc from 1.9 to 1.18. (effd665)
2012-11-27 Mathieu Trudel-Lapierre
* More shuffling around of Build-Depends. (4f9fa5b)
2012-11-26 Mathieu Trudel-Lapierre
* Add xvfb to Build-Depends. (568791d)
* Override dh_auto_test to run tests per-flavor. (bab27b9)
* Add a Pre-Depends on multiarch-support for libappindicator(3-)7.
(97eb2fd)
* Override dh_autoreconf to run autogen.sh and not call configure.
(6a07efc)
* Add and export DPKG_GENSYMBOLS_CHECK_LEVEL. (9dff094)
* Update Vcs-Bzr, Vcs-Browser and add a notice to uploaders.
(ee40944)
* Drop old Conflicts, Replaces, Provides for old unsupported upgrade
paths. (6ccd332)
* debian/*.install: - Update paths for multiarch and for use with
dh9 (remove debian/tmp...) (4664f1e)
* debian/rules: - Convert from cdbs to debhelper 9. (1c8427d)
* Drop Build-Depends on cdbs. (a091723)
* debian/compat: bump to compat level 9. (d92dc38)
* Bump Build-Depends on debhelper to (>= 9). (ca3d312)
* Reorganize Build-Depends for clarity. (4e7dde6)
* debian/control: - Update style: use trailing commas at the end
of dependency lists. (501f677)
* Tell bzr-builddeb to build the package in split mode. (f6833f0)
* Import debian/ from lp:~ubuntu-desktop/libappindicator/ubuntu
(51bae23)
2012-10-11 Lars Uebernickel
* Merge lp:~robert-ancell/libappindicator/lp-1065310 (0807da7)
2012-10-11 Robert Ancell
* Fix Vala classes not being able to inherit from Indicator (26b796b)
2012-07-11 Sebastien Bacher
* releasing version 12.10.0-0ubuntu1 (09ddb17)
* New upstream release. (63a49ad)
* Import upstream version 12.10.0 (dfefc88)
2012-07-11 Charles Kerr
* bump version to 12.10.0 (f2744fa)
2012-06-18 Charles Kerr
* merge lp:~evgeni/libappindicator/optional-mono to make Mono binding
generation optional. This way we don't FTB on
architectures that don't support Mono. (ad488df)
* merge bzr merge
lp:~evgeni/libappindicator/multiarch-same-devheaders so
that we don't include build-time filenames in comments of
the enum header files. (2723b6c)
2012-06-10 Evgeni Golov
* don't include build-time filenames in comments of the enum header
files (96fc7f9)
* make building mono extension optional, so we can build on archs
that do not have mono (086dae1)
2012-05-23 Robert Ancell
* releasing version 0.4.92-0ubuntu2 (f480157) (tag: 0.4.92-0ubuntu2)
2012-05-22 unknown
* use autoreconf.mk instead of calling dh_autoreconf by hand
(8d0330b)
2012-04-23 Charles Kerr
* merge lp:~ted/libappindicator/app_name to try the application name
as a fallback if the client doesn't explicitly set the
title. (0bf6ada)
2012-04-16 Ted Gould
* If we don't have a title set, use the application name to output
the title (b894548)
2012-04-12 Charles Kerr
* merge lp:~allanlesage/libappindicator/TDD to add gcov targets to
our autotools build for code-coverage reporting. For more
information, see this blog post:
http://qualityhour.wordpress.com/2012/01/29/test-coverage-tutorial-for-cc-autotools-projects/
. (859a831)
2012-03-27 Allan LeSage
* Added coverage tooling. (6f29399)
2012-03-21 Ken VanDine