-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathChangeLog
2302 lines (1543 loc) · 72.8 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
2024-08-22 Mike Gabriel
* release 0.10.4 (HEAD -> main, tag: 0.10.4)
* Merge branch 'tari01-pr/value-change-close' (4134bf3d)
2024-07-17 Robert Tari
* src/idoscalemenuitem.c: Add ability to close the menu when the
slider's value changes (4446a18d)
* src/idoscalemenuitem.c: Disable menu item selection (1eaf28c9)
2024-07-10 Mike Gabriel
* release 0.10.3 (9906cc1d) (tag: 0.10.3)
* Merge branch 'tari01-pr/switch-accelerator' (bd25ec74)
2024-07-09 Robert Tari
* src/idoswitchmenuitem.c: Allow the switch to display an
accelerator. (255c93f5)
2024-04-08 Mike Gabriel
* release 0.10.2 (2bb2f321) (tag: 0.10.2)
* Merge branch 'tari01-pr/expand-scale' (de33725f)
2024-04-04 Robert Tari
* src/idoscalemenuitem.c: Add new functionality via the digits and
marks parameters (451a9efb)
* src/idoscalemenuitem.c: Make page increment same as step increment
(87715f3f)
2023-08-24 Mike Gabriel
* release 0.10.1 (13402a2c) (tag: 0.10.1)
* COPYING: Symlink to COPYING.GPL-3, the licensed used by the
majority of code files. (c9bfd1b5)
* Rename COPYING to COPYING.GPL-3 and use Debian's version of it.
(cc276098)
* COPYING files: Ship a copy of LGPL-2(+) and LGPL-3. Some code files
in this project use either of those licenses. (b040a375)
* COPYING.LGPL.2.1: Rename to COPYING.LGPL-2.1 (and use layout from
Debian's LGPL-2.1 license file shipped in
/usr/share/common-licenses/). (20d65627)
* Merge branch 'tyll-executable_so' (39277de1)
2023-08-24 Till Maas
* cmake: Install library as library (610ddb96)
2023-08-07 Mike Gabriel
* Merge branch 'tari01-pr/no-hardcoded-icon-sizes' (b1998c6a)
2023-08-05 Robert Tari
* Do not hardcode icon sizes (e487b162)
* Fix possible memory leaks (ebb915b5)
* src/idoalarmmenuitem.c: Do not free non memory-allocated variable
(579cad6e)
* src/idoplaybackmenuitem.c: Drop unused variable (c2bade07)
* src/idoplaybackmenuitem.c: Fix undefined variable (be68b43c)
2023-06-09 Mike Gabriel
* d/libayatana-ido3-0.4-0.symbols: Update symbols. (09c5052d)
* d/changelog: amend revision (5263257c)
* release 0.10.0 (75f61898) (tag: 0.10.0)
2023-05-05 Mike Gabriel
* Merge branch 'tari01-pr/level-item' (e74e767a)
2023-04-04 Robert Tari
* Add level menu item (876a9fa2)
* CMakeLists.txt: Add threads fix for old CMake (fc636cea)
2023-05-05 Mike Gabriel
* Merge branch 'tari01-pr/progress-item-rewrite' (c730328e)
2023-03-03 Robert Tari
* src/idoprogressmenuitem.c: Rewrite to use icon, progress property
and activation (1b164cf8)
2023-02-26 Mike Gabriel
* Revert "cmake: Enable building tests by default" (f19a5f47)
* debian/libayatana-ido3-0.4-0.symbols: Update symbols. (109100e2)
* release 0.9.3 (10b05bdb) (tag: 0.9.3)
* Merge branch 'JamiKettunen-modern-gtest' (62ec1cda)
2023-02-26 Jami Kettunen
* cmake: Enable building tests by default (889c006f)
* tests: Fix building against modern GTest (f692439d)
2022-09-05 Mike Gabriel
* Merge branch 'tari01-pr/secondary-text-and-count' (4e047789)
2022-09-04 Robert Tari
* src/idobasicmenuitem.c: Set secondary text and count with lozenge
from menu model (7aa6323b)
2022-06-27 Mike Gabriel
* .travis.yml: Add CI builds for Ubuntu 22.04. (10fde125)
2022-06-03 Mike Gabriel
* release 0.9.2 (69ba03b9) (tag: 0.9.2)
2022-03-24 Mike Gabriel
* Merge branch 'ricotz-main' (e56a633c)
2022-03-15 Rico Tzschichholz
* vala: The name of the vapi should match the pkg-config name
(2e1c0409)
2022-02-28 Mike Gabriel
* Merge branch 'jpalus-link-libm' (d87cc103)
2022-02-19 Jan Palus
* src/CMakeLists.txt: link libm for expf, pow and sinf (62f510e2)
2022-02-17 Mike Gabriel
* release 0.9.1 (9e8a410f) (tag: 0.9.1)
2022-02-08 Robert Tari
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system
+ disable ppc64el builds (9c8dd710)
2022-01-27 Mike Gabriel
* Merge branch 'tari01-pr/cleanup-compile-flags' (854485a8)
2022-01-14 Robert Tari
* .build.yml: Drop extra compilation flags and build with -Werror
(aaf337b8)
* Clean up compilation flags (b6278e24)
2021-11-12 Mike Gabriel
* Merge branch 'sunweaver-pr/ppc64le-alive-again' (b340930c)
2021-11-10 Mike Gabriel
* .travis.yml: Re-enable ppc64le builds on Travis CI again.
(f07e4bd2)
* Merge branch 'tari01-pr/drop-scale-margin' (abcf34b1)
2021-11-05 Robert Tari
* src/idoscalemenuitem.c: Drop hard-coded end-margin for the Scale
Display Object (696edc3e)
2021-11-02 Mike Gabriel
* release 0.9.0 (72d04c90) (tag: 0.9.0)
* debian/control: ayatana-ido (esp. the shared library) breaks older
ayatana-indicators-* versions that use IDOs. (929370bb)
* debian/control: Drop B-D: mate-common. (ab857b2f)
* debian/control: Bump Standards-Version: to 4.6.0. No changes
needed. (1350ad88)
2021-10-26 Mike Gabriel
* .build.yml: Drop autogen.sh support; Run unit tests in
build_scripts: target. (9205e10e)
* Revert ".build.yml: Drop autogen.sh support; Run unit tests in
build_scripts: target." (e128c176)
2021-10-25 Mike Gabriel
* .build.yml: Drop autogen.sh support; Run unit tests in
build_scripts: target. (bde36171)
2021-10-20 Robert Tari
* .travis.yml: Temporarily disable ppc64le builds (cb6e7423)
2021-10-18 Mike Gabriel
* Merge branch 'tari01-pr/use-consistent-ido-names' (b26af470)
2021-09-20 Robert Tari
* Use consistent Ayatana IDO names (caec51f5)
* Merge branch 'pr/fix-unit-test-failure-on-ubuntu-20-04' (f0f879c6)
* Fix unit test failure on Ubuntu 20.04 (24ee3d02)
* Fix copyright headers (2c6a2669)
2021-09-02 Robert Tari
* Fix Travis status image (2600470f)
* Merge branch 'sunweaver-pr/ubuntu-CI-builds-run-unittests'
(d08fc80c)
2021-08-28 Mike Gabriel
* .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
(f16cedf9)
2021-09-02 Robert Tari
* Merge branch 'sunweaver-pr/use-ayatana-indicators-dev-scripts'
(f30a2b96)
2021-08-29 Mike Gabriel
* .build.yml: Also run unit tests during CI builds against Ubuntu.
(e4ce9964)
2021-08-28 Mike Gabriel
* .travis.yml: Use Ayatana Indicators project's dev-scripts repo.
(5b2b0168)
2021-08-10 Mike Gabriel
* CMakeLists.txt: Add empty line below 'Options' comment. (8b37e2d5)
* Merge branch 'tari01-pr/no-pie-only-in-tests' (0cff15b5)
2021-08-10 Robert Tari
* Use -no-pie build flags for test only (95d2a880)
2021-08-10 Mike Gabriel
* Merge branch 'tari01-pr/add-enable-werror-option' (b4927b12)
2021-08-09 Robert Tari
* Add ENABLE_WERROR option (c68353a5)
2021-06-09 Mike Gabriel
* Merge branch 'tari01-pr/cmake-install-full' (879e27ea)
2021-06-08 Robert Tari
* src/CMakeLists.txt: Add missing target link libraries (48818026)
2021-06-09 Mike Gabriel
* Merge branch 'tari01-pr/add-missing-target-libs' (473c7063)
2021-06-08 Robert Tari
* data/libayatana-ido3-0.4.pc.in: Use CMAKE_INSTALL_FULL_*DIR
locations (e2a30acb)
* src/CMakeLists.txt: Add missing target link libraries (0dd15ce5)
* Merge branch 'sunweaver-pr/conditional-build-of-GIR-and-VAPI'
(54f11749)
2021-06-07 Mike Gabriel
* src/CMakeLists.txt: Wrap GIR and VAPI related build instructions
into if-clauses (that check, if INTROSPECTION_FOUND and
VAPI_FOUND). (7f9c75d8)
* Merge branch 'tari01-pr/relative-install-dirs' (f754c6a2)
2021-06-07 Robert Tari
* Use CMAKE_INSTALL_FULL_*DIR variables for installation (10c3401d)
2021-06-07 Mike Gabriel
* Merge branch 'tari01-pr/add-glib-2.0-to-pkgconfig' (215fbe41)
2021-06-04 Robert Tari
* data/libayatana-ido3-0.4.pc.in: Add glib-2.0 dependency (91cb0ab4)
2021-06-07 Mike Gabriel
* Merge branch 'tari01-pr/add-project-description' (942bdd59)
2021-06-01 Robert Tari
* README.md: Add project description (30aa3c2b)
2021-05-25 Mike Gabriel
* Merge branch 'tari01-pr/update-docs' (e11bf6e8)
2021-05-17 Robert Tari
* Add documentation files (5dae59b3)
* Merge branch 'trism/fix-removable-a11y' (e6a410de)
2021-05-04 Mike Gabriel
* CMakeLists.txt: Move coverage report generation macro into
basefolder's CMakeLists.txt file. (41d83490)
2021-05-11 Mike Gabriel
* debian/control: Adjust versioned B-D on cmake (3.13 as stated in
CMakeLists.txt). (287c8fc4)
2021-05-12 Robert Tari
* Merge branch 'sunweaver-pr/fix-coverage-report' (8d2c0128)
2021-05-11 Mike Gabriel
* debian/control: Adjust versioned B-D on cmake (3.13 as stated in
CMakeLists.txt). (4dedcedf)
2021-05-03 Robert Tari
* src/idolocationmenuitem.c: Fix deprecated g_time_zone_new warning.
(ef73e1d3)
2021-05-04 Mike Gabriel
* .travis.yml: Don't try running autotools based CI build. (80df555d)
2021-05-11 Mike Gabriel
* debian/control: Adjust versioned B-D on cmake (3.13 as stated in
CMakeLists.txt). (c158381d)
2021-05-09 Jason Conti
* src/idoremovablemenuitem.c: replace grid with box to fix a11y
(d6d68760)
2021-05-04 Mike Gabriel
* Merge branch 'tari01-pr/fix-deprecation-warning' (9f2f8e9f)
2021-05-03 Robert Tari
* src/idolocationmenuitem.c: Fix deprecated g_time_zone_new warning.
(4f34f7b8)
2021-05-04 Mike Gabriel
* .travis.yml: Don't try running autotools based CI build. (5663ffb1)
* CMakeLists.txt: Move coverage report generation macro into
basefolder's CMakeLists.txt file. (81db2957)
2021-05-03 Mike Gabriel
* debian/libayatana-ido3-0.4-0.symbols: Add symbol
'ido_basic_menu_item_set_pixbuf' (coming with 0.8.3).
(ccd08348)
2021-04-27 Mike Gabriel
* .travis.yml: Temporarily disable ubuntu:rolling while the new
distro version being bootstrapped by Canonical. (9c92d427)
* Merge branch 'tari01-pr/add-appointment-icon' (12c8fa46)
2021-03-24 Robert Tari
* Add us to the copyright headers (241bd377)
* src/basicmenuitem.c: Add GdkPixbuf source support for the icon
(386eaabc)
* src/basicmenuitem.h: Add the ido_basic_menu_item_set_pixbuf
function (aa242a51)
* src/idoappointmentmenuitem.c: Contruct the basic menu item using
the pixbuf property (f95ddece)
* Whitespace fix (1158fdc8)
2021-04-21 Mike Gabriel
* Merge branch 'tari01-pr/switch-to-cmake' (fcf633bd)
2021-04-21 Robert Tari
* CMakeLists.txt: Drop duplicate status messages (3adf9ec3)
* CMakeLists.txt: Fix typo (c75d5b57)
2021-04-20 Mike Gabriel
* debian/: Adjust to build system switch-over to CMake. (6b4eb421)
2021-02-03 Robert Tari
* src/idotimestampmenuitem.c: Whitespace fixes in copyright header.
(d62ba3a0)
* Drop local config.h includes. (2ebe5c8e)
2021-02-05 Robert Tari
* Remove automake-related files (715feb6c)
2021-04-21 Mike Gabriel
* tests/CMakeLists.txt: Unit tests may only run and build if shared
library target has been built. (9ec937ca)
* tests/CMakeLists.txt: Build unit tests with --no-pie CXXFLAG.
(fd3931e5)
2021-04-20 Mike Gabriel
* tests/: Port to using GMock cmake package from cmake-extras.
(db3414f6)
* example/CMakeLists.txt: The example/ folder requires the library to
have been built. Fix parallel build issue with
-DDISABLED_TESTS=OFF option. (42a5485d)
* CMakeLists.txt: Drop duplicate ENABLE_COVERAGE_REPORT() macro call.
(65f7c219)
* CMakeLists.txt: Leave finding gtest.pc to GMock cmake module.
(38e4b901)
* CMakeLists.txt: Tolerate older versions of GLib-2.0 and GoogleTest.
Support building on Debian 10. (bbe29018)
* CMakeLists.txt: Let's tolerate CMake minimum version 3.13 (to
support building against Debian 10). (f308bf10)
2021-04-21 Mike Gabriel
* {tests/,}CMakeLists.txt: Add ENABLE_COVERAGE build option.
(05732031)
2021-04-20 Mike Gabriel
* CMakeLists.txt: Don't use variable name MAINTAINER_MODE (it is
misleading), use ENABLE_TESTS and ENABLE_COVERAGE as
options instead. (ab041b77)
* src/CMakeLists.txt: Actively set --library-path for g-ir-scanner.
(94e20a89)
2021-02-05 Robert Tari
* Add CMakeLists.txt files. (9f96225d)
2021-04-20 Mike Gabriel
* CMake: Add required .cmake includes (FindGObjectIntrospection,
FindVala). (b74d4016)
2021-02-05 Robert Tari
* Add data/libayatana-ido3-0.4.pc.in (e34245c3)
2021-04-21 Mike Gabriel
* .build.yml: On Debian, actively enable unit tests when building
with CMake. (34e808d3)
* .build.yml: Don't fail on which's non-zero exit-code. (d5f56cd5)
* .build.yml: Run unit tests in xvfb-run environment (if xvfb-run is
$PATH). (656b45e6)
* .build.yml: Test target with CMake is 'test', with autotools it is
'check'. (f1eeeb95)
2021-04-20 Mike Gabriel
* .build.yml: No such Makefile target distcheck with CMake builds.
(bde5cc1d)
* .build.yml: Don't run cmake in Clang mode. Breaks GCC builds later
on. (2502b951)
* .travis.yml: Also run Travis CI builds against current Debian
stable. (51c1bd8a)
* .travis.yml: pip3-install wheel. Should resolve "error: invalid
command 'bdist_wheel'" during installation of PyGithub.
(9fe49e4d)
* .build.yml: Drop echo statement. (5dc3ba64)
* .build.yml: Don't confuse docker-build with unneeded colons
(confuses YAML parser). (2a313fd8)
* .build.yml: Re-add clang for archlinux and ubuntu (needed for
scan-build command). (6973640c)
* .build.yml: Add build requirements: gcovr, lcov. (7a84804f)
* .build.yml: Additionall pull in cmake related packages. (75c827df)
* .build.yml: Drop not-required build requirements. (5d258485)
* .build.yml: Add CMake support. (cdf83990)
* .build.yml: Drop fedora build target. (d622a631)
* Travis-CI: temporarily disable archlinux:latest CI builds.
(e3021e92)
* Travis-CI: Also build against Ubuntu 20.04 (for Ubuntu Touch's
sake). (3b3c77d5)
* .build.yml: Try installing pacman to work-around missing
/var/lib/pacman directory. (746f6cfb)
* Travis-CI: Simplify CI scripts, drop fedora remnants, no gen-index
script needed. (020f5baa)
* .travis.yml: Drop deploy: section. (58448311)
* TRAVIS: Disable Fedora CI builds for now (and thus, cppcheck).
(96c2ddba)
2021-01-25 Mike Gabriel
* release 0.8.2 (e4bf36c6) (tag: 0.8.2)
* debian/*: Update from official Debian packaging. (9f276a06)
2020-12-22 Robert Tari
* Merge branch 'sunweaver-pr/travis-builds-against-fedora' (f51b230f)
2020-12-22 Mike Gabriel
* Travis: Enable CI builds against Fedora. (46dc10a1)
* Merge branch 'dthadi3-ppc64le' (bcc5cc52)
2020-12-10 Devendranath Thadi
* Travis-ci: archlinux docker image not available on power (3255a97e)
* Travis-ci: added support for ppc64le (e5a710f7)
2020-12-03 Mike Gabriel
* .build.yml: Add 'which' build-requirement (needed by autogen.sh /
mate-common) when building against Archlinux. (9aa47501)
* Travis: First attempt at CI building against Archlinux. (8acd8f71)
* debian/libayatana-ido3-0.4-0.symbols: Update for new symbols
related to idoRemovableMenuItem. (af27d395)
2020-12-03 Robert Tari
* Merge branch 'sunweaver-pr/fix-make-distcheck' (295c154b)
2020-11-30 Mike Gabriel
* AUTHORS: Add Robert Tari to authors. (afdf4623)
2020-12-03 Robert Tari
* Merge branch 'sunweaver-pr/update-authors' (6e5bb51a)
2020-12-02 Mike Gabriel
* TRAVIS: Add .build.yml (missing in previous commit). (5df78c79)
* TRAVIS: first attempt of doing CI builds in docker images.
(1803b017)
2020-12-03 Mike Gabriel
* NEWS: Add file (compiled out of Git history). (3ca4c37e)
* Makefile.am: Add --disable-silent-rules option to
DISTCHECK_CONFIGURE_FLAGS. (2a83a928)
* src/Makefile.am: Move 'sources_c =' variable definition further up.
(9057543f)
* src/Makefile.am: Split out all *.c files from
libayatana_ido_0_4_la_SOURCES into sources_c variable.
(385c7976)
* src/Makefile.am: Various TAB'bing fixes / beautifications.
(d5fb21d8)
* src/Makefile.am: Merge old 'INCLUDES =' and 'AM_CPPFLAGS =' values
(and beautify the TAB'bing). (5307fc84)
* src/libayatana-ido.h: Include internal APIs from the local
directory (i.e. the same dir where libayatana-ido.h is
located). (bd87193c)
* configure.ac: Comment out CHECK_XORG_GTEST. Not available in a
functional state, currently. (0a5a670d)
* Makefile.am: Re-add DISTCHECK_CONFIGURE_FLAGS to disable GTK doc
build during 'make distcheck'. (9f5734c8)
2020-12-02 Mike Gabriel
* TRAVIS: Add .build.yml (missing in previous commit). (f2e01767)
* TRAVIS: first attempt of doing CI builds in docker images.
(8323793f)
2020-11-30 Mike Gabriel
* AUTHORS: Add Robert Tari to authors. (36c39de3)
2020-12-01 Mike Gabriel
* .travis.yml: Correctly set MATRIX_EVAL for 'GCC 10.x / Ubuntu
bionic'. (6f86a8c6)
* .travis.yml: Add test-build against GCC 10.x. (1cbc0bc9)
* .travis.yml: Name Ubuntu version in CI job names. (67324d2f)
* .travis.yml: Disable 'Clang 3.9 / xenial' CI build (GLib2.0 too old
in Ubuntu xenial). (521d2bd0)
* .travis.yml: Disable 'GCC 5.4 / xenial' CI build (GLib2.0 too old
in Ubuntu xenial).. (9478a52e)
* .travis.yml: Add 'script:' section. Our test target is 'check', not
'test'. Also enable more verbose builds. (242e6706)
* .travis.yml: Run autogen.sh before configuring/building. (aff72d87)
2020-11-30 Mike Gabriel
* Initial .travis.yml configuration. (da6f59b5)
* Merge branch 'tari01-pr/show-removable-button' (7fb66ef5)
2020-11-26 Robert Tari
* idoremovablemenuitem.c: Show button by default (e7d62172)
2020-11-30 Mike Gabriel
* Merge branch 'tari01-pr/ido-removable' (fbf7f2e5)
2020-11-24 Robert Tari
* Add a new menu item type: IDO Removable (02f9598a)
2020-11-09 Mike Gabriel
* release 0.8.1 (d3bcb7d2) (tag: 0.8.1)
2020-10-21 Mike Gabriel
* Merge branch 'tari01-pr/switch-initial-state' (2267a403)
2020-09-25 Robert Tari
* idoswitchmenuitem.c: Fix setting the initial state for the switch
(336b92c4)
2020-10-21 Mike Gabriel
* Merge branch 'tari01-pr/basic-markup' (b0dfd127)
2020-09-25 Robert Tari
* Add sanity-check in ido_switch_menu_item_activate (13e3334d)
2020-09-16 Robert Tari
* idoswitchmenuitem.c: Pass the switch activation state in the action
signal (eaa7ce5d)
* Whitespace fix (f96d98c7)
2020-09-17 Robert Tari
* idobasicmenuitem.c: Add optional markup to the basic menu item
(009998bd)
2020-09-27 Mike Gabriel
* Merge branch 'tari01-pr/switch-state-fix' (bbcbd080)
2020-09-25 Robert Tari
* Add sanity-check in ido_switch_menu_item_activate (d3184630)
2020-09-16 Robert Tari
* idoswitchmenuitem.c: Pass the switch activation state in the action
signal (6a4bf3d4)
* Whitespace fix (7ed68c15)
2020-08-14 Mike Gabriel
* release 0.8.0 (d580f61c) (tag: 0.8.0)
2020-08-13 Robert Tari
* Merge branch 'sunweaver-pr/ayatanamenuitemfactory-make-public-api'
Attributes GH PR #13:
https://github.com/AyatanaIndicators/ayatana-ido/pull/13
(11e687d9)
2020-08-13 Mike Gabriel
* src/Makefile.am: Export ayatanamenuitemfactory.h as part of the
public API, needed by indicator-ng.c in
libayatana-indicator. (d61bb9fd)
2020-08-11 Robert Tari
* Merge branch 'sunweaver-pr/replace-x-canonical-attributes'
Attributes GH PR #11:
https://github.com/AyatanaIndicators/ayatana-ido/pull/11
(34aa56fb)
* Merge branch 'pr/replace-x-canonical-attributes' of
https://github.com/sunweaver/ayatana-ido into
sunweaver-pr/replace-x-canonical-attributes (b3686dc2)
2020-08-11 Mike Gabriel
* Replace x-canonical attributes solely used by Ayatana Indicators.
(974147df)
2020-08-11 Robert Tari
* Replace x-canonical attributes (9e209733)
2020-08-10 Mike Gabriel
* Merge branch 'tari01-master' (4e2ff263)
2020-08-07 Robert Tari
* Drop IDO Message Dialog (2ce8e4a7)
2020-07-31 Robert Tari
* Merge pull request #8 from tari01/master (f062e196)
* Centre playback menu item spinner/Pad application menu item label
(b65bc505)
2020-07-28 Robert Tari
* Merge pull request #7 from tari01/master (b18ced14)
* Centre volume control/Stretch calendar horizontally (f937570c)
2020-07-24 Mike Gabriel
* release 0.5.0 (fac3c960) (tag: 0.5.0)
* src/idomessagedialog.c: Mark G_GNUC_{BEGIN,END}_IGNORE_DEPRECATIONS
wrapping around gtk_dialog_get_action_area() with a FIXME.
(ef4ea9d0)
* Merge branch 'tari01-master' (669fb5e0)
2020-07-24 Robert Tari
* Updated colour getter for playback control (40a8f045)
* Some refactoring to avoid warnings (c0bddf13)
2020-07-23 Mike Gabriel
* Merge branch 'tari01-master' (f8f87bdc)
2020-07-23 Robert Tari
* Remove ayatana-private.h (9384761a)
2020-07-07 Mike Gabriel
* src/Makefile.am: Don't choke with FTBFS on every future deprecation
warning. Drop -Werror from CPPFLAGS. (9e2cc8f1)
* Merge branch 'kikislater-patch-1' (e29ccbb7)
2020-07-07 Sylvain POULAIN
* gtk_widget_get_state is deprecated (033c9f49)
2019-12-04 Mike Gabriel
* release 0.4.90 (f9466bb0) (tag: 0.4.90)
* Port from Glib's g_object_newv to g_object_new_with_properties.
(15453452)
2019-12-03 Mike Gabriel
* Avoid deprecated g_type_class_add_private. (0ab4079b)
2018-08-13 Mike Gabriel
* release 0.4.4 (3fded466) (tag: 0.4.4)
* libayatana-ido3.pc.in: Fix Name: field in .pc file. (87e08a67)
* Revert "libayatana-ido3.pc.in: Unversion name of .pc pkg-config
file (plus fix Name: field in .pc file)." (c4357fbb)
* release 0.4.3 (b98a821b) (tag: 0.4.3)
* debian/control: Rename -dev pkg (drop SO version from name).
(455e1136)
* libayatana-ido3.pc.in: Unversion name of .pc pkg-config file (plus
fix Name: field in .pc file). (b88e8e92)
* debian/libayatana-ido3-0.4-dev.install: Unversion name of .pc
pkg-config file. (e1b6e693)
* debian/gir1.2-ayatanaido3-0.4.install: Renamed from
gir1.2-ayatana-ido3-0.4.install. (b3497fb3)
* debian/gir1.2-ayatanaido3-0.4.install: Renamed from
gir1.2-ayatana-ido3-0.4.install. (177a6942)
* debian/control: typo fix (missing colon in Replaces: field).
(c3c95ec7)
2018-07-16 Mike Gabriel
* autogen.sh: Fix PKG_NAME (ido -> ayatana-ido). (34aabe72)
2017-12-04 Mike Gabriel
* debian/*: Adopt packaging changes from official Debian package.
(57c67c96)
* debian/copyright: Package has moved on Github (ArcticaProject ->
AyatanaIndicators). (d78483e8)
* debian/control: Package has moved on Github (ArcticaProject ->
AyatanaIndicators). (c1b56c62)
* debian/changelog: Bump upsteam version to a development version.
(100892aa)
* release 0.4.2 (5a10cb59) (tag: 0.4.2)
* tests/Makefile.am: Fix static lib name (libido -> libayatana-ido).
(511562ee)
* debian/control: Bump Standards-Version: to 4.1.1. No changes
needed. (bb3f64f4)
* libayatana-ido3.pc.in: Fix pkg-config name (libido ->
libayatana-ido). (3fcfc52c)
2017-10-26 Mike Gabriel
* Makefile.am: Drop distcheck features. (f87b4295)
2017-10-22 Mike Gabriel
* debian/changelog: Fix source project name in most recent changelog
stanza. (35eeb7e7)
2017-09-15 Mike Gabriel
* release 0.4.1 (75bbddb3) (tag: 0.4.1)
2017-06-23 Mike Gabriel
* debian/control: Add versioned B-D: dpkg-dev (>= 1.16.1.1)
(1202ada6)
* debian/upstream: Add upstream signing keys. (d54247b4)
* debian/watch: Add file. (cf2fe656)
* debian/patches: Add README for patches folder. (9ade6cd9)
* debian/rules: Add get-orig-source rule. (c17595f7)
* debian/rules: Enable all hardening flags. (b7ac3e9d)
* debian/control: Don't duplicate Section: for shared library
package. (9c9bd9db)
* debian/control: Bump Standards-Version: to 3.9.8. No changes
needed. (eb4383f4)
* debian/copyright: Adopt minor changes from official Debian package.
(4f7b60c9)
2017-05-22 Mike Gabriel
* configure.ac: Let AC_CONFIG_SRCDIR point to src/libayatana-ido.h.
(03ae4390)
* src/libido.h: Drop empty file (artifact of fork). (e835f22a)
* debian/copyright: Adopt from official Debian package. (33c6c134)
* release 0.4.0 (2c5700f7) (tag: 0.4.0)
* configure.ac: Update shared library name, bug tracker URL, homepage
URL. (fda91d47)
* Build system: Drop remnants of GTK-2+ support. (39d0d9fb)
* debian/{control,gir1.2-ayatana-ido3-0.4.install}: Turn into
Multi-Arch: same package. (fec55f9d)
* debian/control: Update SYNOPSIS and LONG_DESCRIPTION fields.
(81e64871)
* autogen.sh: Drop references to deprecated shell variables.
(6b027abf)
* Drop .bzr-builddeb/default.conf. We are on Git. (5ff2bc11)
2017-05-16 Mike Gabriel
* One step back... Mimick Canonical's API. Use their namespace for
item attributes. (4daacc47)
* Move NEWS file from Canonical out of the way. (7956f5b7)
2017-05-15 Marco Trevisan (Treviño)
* IdoCalendarMenuItem: disconnect from parent signals on item
destruction (LP: #1506427) (61e95ac5)
2017-05-15 Mike Gabriel
* build system: Switch to mate-common. (89f8b570)
2015-11-16 Mike Gabriel
* Use x-ayatanaindicator-* instead of x-canonical-*. (4a435758)
* Makefile.am (fcf7848c)
2015-11-11 Mike Gabriel
* Drop .bzrignore file. (656e57dc)
2015-11-06 Mike Gabriel
* libayatana-ido fork: Fix include paths for public header files.
(ffebacae)
* Adapt pkconfig .pc files to library name changes. (8acfbb70)
* debian/rules: Drop override_dh_auto_test rule. Tests are disabled
in tests/Makefile.am at the moment, anyway. (3790a17d)
* make: Improve distclean ruleset. (17de78b1)
* Re-add forgotten files after fork: libayatana-ido.pc.in,
libayatana-ido3.pc.in. (00872537)
* Fork ayatana-ido from Ubuntu's ido shared library. (76d15095)
2015-10-02 CI Train Bot
* Releasing 13.10.0+15.10.20151002-0ubuntu1 (d1b09d9f)
2015-10-02 Lars Uebernickel
* idosourcemenuitem: change misplaced g_return_val_if_fail() Approved
by: Sebastien Bacher, PS Jenkins bot (771ce0c2)
* idosourcemenuitem: change misplaced g_return_val_if_fail()
(fd3ea181)
2015-07-28 CI Train Bot
* Releasing 13.10.0+15.10.20150728-0ubuntu1 (f007376c)
2015-07-28 Marco Trevisan (Treviño)
* IdoCalendarMenuItem: add crash guard on
ido_calendar_menu_item_key_press (03583381)
2015-07-22 Marco Trevisan (Treviño)
* IdoCalendarMenuItem: add crash guard on
ido_calendar_menu_item_key_press (ac4bbf0c)
2015-03-19 CI Train Bot
* Releasing 13.10.0+15.04.20150319-0ubuntu1 (6f2f647e)
2015-03-19 Lars Uebernickel
* idoscalemenuitem: fix scale hover state Approved by: Sebastien
Bacher, PS Jenkins bot, Simon Steinbeiß (4c578ba7)
2015-03-10 Lars Uebernickel
* idoscalemenuitem: set focus flag on scale (3bef6a19)
* idoscalemenuitem: translate motion event coordinates (07a30270)
2015-01-30 CI Train Bot
* Releasing 13.10.0+15.04.20150130-0ubuntu1 (fced82c1)
2015-01-30 Lars Uebernickel
* idoplaybackmenuitem: don't set the spinner class (34458940)
* idoplaybackmenuitem: don't set the spinner class (1f922e5a)
2015-01-22 CI Train Bot
* Releasing 13.10.0+15.04.20150122-0ubuntu1 (467b70e3)
2015-01-22 Lars Uebernickel
* idoscalemenuitem: fix slider event forwarding Approved by: Iain
Lane, PS Jenkins bot (9f8609c1)
2015-01-21 Lars Uebernickel
* idoscalemenuitem: remove extraneous line (22e14c51)
* idoscalemenuitem: only forward button events that are inside the
scale (3ae1abba)
* idoscalemenuitem: don't translate event coordinates (b42893f3)
2014-11-03 CI bot
* Releasing 13.10.0+15.04.20141103-0ubuntu1 (d69f78b0)
2014-11-03 Ted Gould
* Update tags for newer GObject Introsepction Scanner and disable
xorg-gtest tests
Fixes: 1382020 Approved by: PS Jenkins
bot (2d4009b5)
* Filter out symbols in the library (c3c628dc)
* Comment out xorg-gtest tests (fae005ab)
2014-10-16 Ted Gould
* Add lcov version 1.11 (e9522b40)
* Update tags for newer GObject Introsepction Scanner (5c4cf2d5)
2014-04-23 CI bot
* Releasing 13.10.0+14.04.20140423-0ubuntu1 (01ce8c36)
2014-04-23 Lars Uebernickel
* Make long track infos better readable (bc444da6)
* idoplaybackmenuitem: don't introduce even more magic numbers
(82c094a5)
* idoplaybackmenuitem: center the controls horizontally (8844b191)
* idomediaplayermenuitem: don't hardcode width (3c5e4d8c)
* idomediaplayermenuitem: use small font for track info labels
(560f9332)
2014-04-07 CI bot
* Releasing 13.10.0+14.04.20140407-0ubuntu1 (c734bb89)
2014-04-07 Lars Uebernickel
* idobasicmenuitem: update icon when the theme changes (c3fc9b1c)
2014-04-04 Lars Uebernickel
* idobasicmenuitem: don't export update_image() (220d43ca)
* idobasicmenuitem: update icon when the theme changes (b7ec0fe2)
2014-03-28 CI bot
* Releasing 13.10.0+14.04.20140328-0ubuntu1 (1c842fe4)
* Update symbols (06270039)
2014-03-28 Lars Uebernickel
* idoplaybackmenuitem: propagate events in the menu keyrelease
handler (d973b784)
* expose idobasicmenuitem, a normal menu item that supports
non-square icons (6e90a5c3)
* Highlight back/forward buttons when hovering them with the pointer
(34b23e22)
* idobasicmenuitem: check return value of
gtk_icon_info_get_filename() for NULL (8269c14b)
2014-03-27 Lars Uebernickel
* idobasicmenuitem: add symbol for _new_from_model() (ab158b1d)
* idobasicmenuitem: support non-square icons (d1403ebc)
* Expose IdoBasicMenuItem as com.canonical.indicator.basic (b5fe1d71)