-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog
9162 lines (7538 loc) · 391 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
unity (7.5.0+18.10.20180926.2-0ubuntu1) cosmic; urgency=medium
[ Alexander Hale ]
* Update the Free Software Foundation address in license headers
[ Marco Trevisan (Treviño) ]
* Favorite migrations: add nautilus-home and nautilus-folder-handler
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 26 Sep 2018 10:29:04 +0000
unity (7.5.0+18.10.20180827-0ubuntu1) cosmic; urgency=medium
[ Alberts Muktupāvels ]
* Fix build.
-- Dmitry Shachnev <mitya57@ubuntu.com> Mon, 27 Aug 2018 12:50:33 +0000
unity (7.5.0+18.04.20180413-0ubuntu1) bionic; urgency=medium
* unity_migrate_gnome_favorites: add evolution and gnome-tweaks
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 13 Apr 2018 21:33:45 +0000
unity (7.5.0+18.04.20180409-0ubuntu1) bionic; urgency=medium
* unity.migrations: add migration script to rename GNOME desktop files
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 09 Apr 2018 20:23:54 +0000
unity (7.5.0+18.04.20180404-0ubuntu2) bionic; urgency=medium
* Add "X-Ubuntu-Use-Langpack: yes" to debian/control now that this package is
in Universe (LP: #1760435).
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 07 Apr 2018 11:37:31 -0500
unity (7.5.0+18.04.20180321-0ubuntu1) bionic; urgency=medium
[ Andrea Azzarone ]
* Fix memory leak in UserAuthenticatorPam::AuthenticateStart and add
some debug messages.
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 21 Mar 2018 14:56:58 +0000
unity (7.5.0+18.04.20180221.1-0ubuntu1) bionic; urgency=medium
* Unity use track_obj to safely connect to UScreen and Settings
signals (LP: #1748330) (LP: #1748330)
* CairoBaseWindow: don't try to compute the blur of an invalid texture
(LP: #1290056)
* Unity: use new definition of infinite CompRegion's (LP: #1749957)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 21 Feb 2018 15:27:45 +0000
unity (7.5.0+18.04.20171116-0ubuntu1) bionic; urgency=medium
* tools: add migration script to set the default values for unity-
lowgfx profile
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 16 Nov 2017 03:24:50 +0000
unity (7.5.0+17.10.20171010-0ubuntu1) artful; urgency=medium
[ Andrea Azzarone ]
* Avoid to show multiple "Authentication Failure" messages.
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 10 Oct 2017 16:19:48 +0000
unity (7.5.0+17.10.20171004-0ubuntu1) artful; urgency=medium
* UnitySettings: use the ubuntu-schemas path for scaling settings (LP:
#1721082)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 04 Oct 2017 18:50:43 +0000
unity (7.5.0+17.10.20170925.1-0ubuntu1) artful; urgency=medium
[ Andrea Azzarone ]
* Fix build issues with gcc-7 and g++-7
* Refactor the way UserAuthenticator is created and passed around.
Handle failures to create new threads and fallback to a "Switch to
greeter..." button in case of failure. (LP: #1311316)
* Wait until the color buffer is cleared before suspending. (LP:
#1532508)
[ Marco Trevisan (Treviño) ]
* Tests: split unit tests in single binaries, enable unstable tests
* debian/rules: ignore warnings in armhf and ppc64el
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 25 Sep 2017 16:05:06 +0000
unity (7.5.0+17.10.20170721.1-0ubuntu1) artful; urgency=medium
* GLibSignal: allow to block, unblock signals
* UnitySettings: use glib::Signal blocking for ignoring setting
changes
* UnitySettings: listen to compiz profile status in order to set
low_gfx value
* Launcher: disable or reduce most icon effects on lowgfx (LP:
#1700859)
* PanelController: ensure we disconnect from signals on destruction
(LP: #1504870)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 21 Jul 2017 08:53:17 +0000
unity (7.5.0+17.10.20170707-0ubuntu1) artful; urgency=medium
[ Andrea Azzarone ]
* Lockscreen: always draw the background-color in the lockscreen (LP:
#1702701)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 07 Jul 2017 01:03:47 +0000
unity (7.5.0+17.10.20170703.1-0ubuntu1) artful; urgency=medium
* BGHash, UnityScreen: get desktop averageColor from compiz
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 03 Jul 2017 15:39:06 +0000
unity (7.5.0+17.10.20170619-0ubuntu1) artful; urgency=medium
* Rename ubuntu-session systemd target to unity-session to inline with
new session name:
- modify data/unity7.service.in and debian/unity.links to reflect new
systemd target.
- Breaks against older version of ubuntu-session, now that unity-session
provides that new systemd target name.
* Recommends unity-session, as ubuntu-session can't be a transitional package
(it will be the Gnome Shell default ubuntu session), this is how we install
that new session package again.
-- Didier Roche <didrocks@ubuntu.com> Mon, 19 Jun 2017 10:50:58 +0200
unity (7.5.0+17.10.20170609-0ubuntu1) artful; urgency=medium
* Use g_mkdir_with_parents instead of mkdir.
-- Andrea Azzarone <andrea.azzarone@canonical.com> Fri, 09 Jun 2017 09:55:59 +0000
unity (7.5.0+17.10.20170601-0ubuntu1) artful; urgency=medium
[ Iain Lane ]
* Drop the default amazon launcher - we're moving to an alternative
implementation in GNOME Shell.
-- iain@orangesquash.org.uk <iain@orangesquash.org.uk> Thu, 01 Jun 2017 19:15:28 +0000
unity (7.5.0+17.10.20170425.1-0ubuntu1) artful; urgency=medium
[ Dimitri John Ledkov ]
* Drop libupstart-dev dependency, and simply include verbantim dbus
object paths.
* Do not use upstart-dbus.h in compiz_config_profile_setter either.
[ Eleni Maria Stea ]
* removes lowgfx option from ccsm, reads the "lowgfx" gsetting
(lp:~hikiko/unity-control-center/unity-control-center.lowgfx) (LP:
#1668950)
[ Marco Trevisan (Treviño) ]
* Panel: ensure the menu-manager tracker is updated to match monitor
(LP: #1671432)
* compiz-profile-setter: tool to update the current profile and use in
systemd and Unity settings (LP: #1668950)
[ Nick Dedekind ]
* Fixed tooltip scaling issues. (LP: #1673950)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 25 Apr 2017 17:59:20 +0000
unity (7.5.0+17.04.20170407.1-0ubuntu1) zesty; urgency=medium
* Dash: fix the neko regression we have since a couple of cycles (LP:
#1680927)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 07 Apr 2017 18:31:47 +0000
unity (7.5.0+17.04.20170301-0ubuntu1) zesty; urgency=medium
* UnityWindow: safely check validity of UnityWindow from scaled one
(LP: #1659847)
* InputMonitor: don't try to deference an invalid Nux display (LP:
#1632656)
* unity7.service: set ups and BAMF as wanted, not required
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 01 Mar 2017 13:07:08 +0000
unity (7.5.0+17.04.20170222-0ubuntu1) zesty; urgency=medium
* BackgroundSettings: use gnome-bg to generate textures with proper
scaling (LP: #1666359)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 22 Feb 2017 01:52:54 +0000
unity (7.5.0+17.04.20170125-0ubuntu1) zesty; urgency=medium
[ Marco Trevisan (Treviño) ]
* GnomeSessionManager: add gcancellable to instance and use it for
calls with temporary proxies
[ Michał Sawicz ]
* Drop click scope from the default list of favourites
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 25 Jan 2017 16:55:08 +0000
unity (7.5.0+17.04.20170109-0ubuntu1) zesty; urgency=medium
[ Andrea Azzarone ]
* Round gtk scaling factor to closest integer. (LP: #1649736)
* Keep the screen locked if rebooting with autologin. (LP: #1600389)
[ Eleni Maria Stea ]
* shouldn't create blur rectangles when there's no blur, skips the
blur rects processing in low gfx.
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 09 Jan 2017 15:10:02 +0000
unity (7.5.0+17.04.20161130-0ubuntu1) zesty; urgency=medium
[ Kai-Heng Feng ]
* UnitySettings: If scale-factor is not set, find and set right scale
for HiDPI displays.
[ Marco Trevisan (Treviño) ]
* CMakeLists.txt: add support to compile with GTest 1.8 (LP: #1644062)
* UnityScreen: toggle gestures recognition on lock (LP: #1645507)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 30 Nov 2016 11:06:58 +0000
unity (7.5.0+17.04.20161111.1-0ubuntu1) zesty; urgency=medium
* LockScreenController: use InputMonitor to get all the events and
hide the Blank Window (LP: #1321075)
* LockScreenController: use input monitor to get the events to switch
monitor (LP: #1316862)
* LauncherOptions: use track_obj to manage option changes (LP:
#1622995)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 11 Nov 2016 16:01:53 +0000
unity (7.5.0+17.04.20161107.2-0ubuntu1) zesty; urgency=medium
[ Andrea Azzarone ]
* Properly handle the file manager copy dialog in
FileManagerLauncherIcon and in StorageLauncherIcon. (LP: #1575452,
#1609845)
* Correctly position the force quit dialog when scaling is different
than 1.0 (LP: #1637991)
* GnomeSession: Retrieve the session id using dbus if $XDG_SESSION_ID
is not set
[ Marco Trevisan (Treviño) ]
* LockScreenController: ignore icon_paths_changed signal in
menumanager for Lockscreen (LP: #1635625)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 07 Nov 2016 23:31:33 +0000
unity (7.5.0+17.04.20161107-0ubuntu1) zesty; urgency=medium
* No-change rebuild against latest nux
-- Jeremy Bicha <jbicha@ubuntu.com> Mon, 07 Nov 2016 02:22:22 +0000
unity (7.5.0+17.04.20161027-0ubuntu1) zesty; urgency=medium
[ Marco Trevisan (Treviño) ]
* TestXdndStartStopNotifierImp: enable some unstable tests by adding
XTest support
[ Martin Pitt ]
* Add indicator-printers Wants to unity-panel-service.service
* Disable fatal deprecation warnings to build with zesty's GTK 3.22
without breaking backportability.
-- Martin Pitt <martin.pitt@ubuntu.com> Thu, 27 Oct 2016 08:41:53 +0000
unity (7.5.0+16.10.20160906.1-0ubuntu1) yakkety; urgency=medium
[ Marco Trevisan (Treviño), Ted Gould ]
* Unity: add systemd units for the shell and related services, mark
unity7 a requirement for ubuntu-session
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 06 Sep 2016 14:19:15 +0000
unity (7.5.0+16.10.20160901.2-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Disable menu discovery animation if MenusDiscoveryDuration is 0.
(LP: #942962)
* Redraw fake decorations on window resize. (LP: #940470)
[ Marco Trevisan (Treviño) ]
* InputMonitor: add an unity class that monitors XInput2 events and
converts them to XEvent
* EdgeBarrierController: use InputMonitor to get the barrier events
instead of relying on its implementation
* DecorationsMenuLayout: use input monitor for menu scrubbing (LP:
#1614597)
* PanelView: use InputMonitor to track menu events
* LockScreenPanel: use InputMonitor events instead of mouse polling
for menu scrubbing
* MenuManager: add support for mouse trackers with triangle algorithm
support (LP: #1618405)
* PanelView: scale gradient refinement properly
* PanelService: don't allow to deactivate menus if they've been opened
too shortly
* WindowButton: properly partially unmaximize a window when
middle/left clicking in the restore button (LP: #1616136)
* CMake: move data and setting files in proper folder, define shared
libdir variables
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 01 Sep 2016 23:59:15 +0000
unity (7.5.0+16.10.20160819-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Use compiz::Window::serverNext instead of compiz::Window::next in
IsWindowObscured as the latter can be outdated just after
scale/spread terminates. (LP: #1614116)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 19 Aug 2016 13:15:09 +0000
unity (7.5.0+16.10.20160817.1-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Make sure the switcher detail view is properly scaled. Also scale
the xy_offset to make sure the switcher and launcher do not overlap.
(LP: #1605256)
* Close session dialog on first ESC. (LP: #1521116)
* Filter out scrolling envents for FilterExpanderLabel. (LP: #1604632)
[ Marco Trevisan (Treviño) ]
* OverlayRenderer: properly decorate launcher/panel when the launcher
is at the bottom (LP: #1611694)
* UserAuthenticatorPam: ensure pam_handle_ is null initialized and
don't proceed if not set (LP: #1611668)
* OverlayRenderer: don't use rotated textures, just rotate them at
rendering time
* DecorationStyle: set css name for Gtk 3.20
* SpreadWidgets: add container for spread filter and new spread
decorations (LP: #1283314)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 17 Aug 2016 14:03:22 +0000
unity (7.5.0+16.10.20160806-0ubuntu1) yakkety; urgency=medium
[ Marco Trevisan (Treviño) ]
* DecoratedWindow: avoid deferencing an invalid shadow texture ptr,
and split functions (LP: #1608464)
* UnityWindowView: don't try to deference close_button_ if its' null
* DecorationsForceQuitDialog: make CSS selectors work with gtk 3.20
[ Andrea Azzarone, Marco Trevisan (Treviño) ]
* DecoratedWindow: display unmaximize button if the window is
vertically or horizontally maximized (LP: #1608480)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Sat, 06 Aug 2016 16:25:58 +0000
unity (7.5.0+16.10.20160727-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* [LockSceen] Remove numlock warning. (LP: #1526322)
* Make sure initiate and terminate callbacks are not empty before
calling them. (LP: #1605012)
* Properly destroy close_button_ to properly disconnect lambda. (LP:
#1605010)
* Use the standard notification-device-eject in the "device eject"
notification. This allows us to scale it properly on high-dpi
setups. (LP: #1605231)
* Add tools to enforce unityshell plugin for the current profile and
add "move" and "resize" plugins as requirements. (LP: #1506023,
#1605007)
* When locked discard damages from windows below lockscreen. (LP:
#1605180)
[ Eleni Maria Stea ]
* DecoratedWindow: Added shadows for shaped windows
[ Marco Trevisan (Treviño) ]
* LockScreenAcceleratorController: ensure callbacks are valid before
calling them (LP: #1605012)
* DecoratedWindow: Cleanup shadows for shaped windows, reduce
recomputation
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 27 Jul 2016 10:25:54 +0000
unity (7.5.0+16.10.20160715-0ubuntu1) yakkety; urgency=medium
[ Eleni Maria Stea ]
* Reverts fix for multimonitor because of problems in nvidia cards
(see bug: #1602901) (LP: #1602901)
-- iain@orangesquash.org.uk <iain@orangesquash.org.uk> Fri, 15 Jul 2016 15:13:28 +0000
unity (7.5.0+16.10.20160714-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* FileManagerLauncherIcon: Don't trust the Quirk::VISIBLE in the ctor.
(LP: #1599133)
* [TrashLauncherIcon] Create GFileMonitor in an idle to avoid blocking
calls. (LP: #1602720)
[ Marco Trevisan (Treviño) ]
* Unity script: use result from unity_support_test to check the right
COMPIZ_CONFIG_PROFILE to use (LP: #1602377)
* SwitcherView: always disable animations when in lowgfx mode (LP:
#1602784)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 14 Jul 2016 10:06:29 +0000
unity (7.5.0+16.10.20160705.4-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Add missing header to fix compilation error with -Duse_pch=OFF.
* Filter out fullscreen window in show desktop mode to decide if unity
must be displayed. (LP: #1597706)
* Make sure file manager icon is not removed when unpinned. (LP:
#1578792)
* Properly calculate the intersection geometry in PanelView::Draw.
This is needed to properly call SyncGeometries and to avoid problems
such as lp:1595698. (LP: #1595698)
[ Eleni Maria Stea ]
* speeds up the showdesktop plugin in lowgfx mode
* UnityScreen: only redraw parts of the screen visible in each output
(LP: #1598770)
[ Marco Trevisan (Treviño) ]
* LockScreenAcceleratorController: check if a setting key is available
instead of crashing
* ApplicationLauncherIcon: ensure quirks are properly set on icon
initialization
* Views: Toggle animators durations based on low-gfx setting (LP:
#1598770)
* unity7.conf: use different compiz profile based on
unity_support_test result (LP: #1598770)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 05 Jul 2016 10:24:14 +0000
unity (7.5.0+16.10.20160628.1-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* UnitySettings: Add an option to enable/disable pam account checking.
(LP: #1460649)
* Lockscreen: Make sure warning and errors are properly shown to the
user (LP: #1593696)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 28 Jun 2016 16:23:47 +0000
unity (7.5.0+16.10.20160621.1-0ubuntu1) yakkety; urgency=medium
* LockScreenAcceleratorController: use key::Grabber to handle allowed
bindings (LP: #1438754)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 21 Jun 2016 14:44:22 +0000
unity (7.5.0+16.10.20160606.1-0ubuntu1) yakkety; urgency=medium
[ Alberto Milone ]
* UnitySettings: Add dconf keys for disabling multitouch gestures (LP:
#1589520)
[ Andrea Azzarone ]
* Do not trigger screensaver on session inactive. (LP: #1587507)
* Use SwitcherController::SetDetail instead of detail=... (LP:
#1587618)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 06 Jun 2016 14:29:04 +0000
unity (7.5.0+16.10.20160602-0ubuntu1) yakkety; urgency=medium
[ Andrea Azzarone ]
* Add whitelist for auto-repated keys. (LP: #1586491)
* Fix scale window activation if in show desktop mode. (LP: #1582056)
* Order matters in the rendering. Draw launcher shadow after the
background in all cases. (LP: #1586374)
* Fallback to volume name if no other identifier is available. (LP:
#1103593)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 02 Jun 2016 01:02:19 +0000
unity (7.5.0+16.10.20160525-0ubuntu1) yakkety; urgency=medium
[ Eleni Maria Stea ]
* PanelView: Don't draw it if the geo doesn't intersect the monitor
geo (as in ezoom)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Wed, 25 May 2016 14:22:42 +0000
unity (7.5.0+16.10.20160517-0ubuntu1) yakkety; urgency=medium
[ Marco Trevisan (Treviño) ]
* Bumping version to 7.5.0, as per 7.4 release
[ Andrea Azzarone ]
* Do not reset the shortcut for icons that have their own shortcut.
(LP: #1562847)
* Fallback to "background" class in case no background is specified
for title bars and top panel. (LP: #1575527)
* GnomeKeyGrabber: do not activate an action if it's a repeated one.
(LP: #1572241)
* Properly calculate array indexes to avoid crashes. (LP: #1570843)
* Properly remove SoftwareCenterLauncherIcon in case of failure. (LP:
#1553165)
* Update ExpoLauncherIcon in case the quicklist is used to switch vp.
(LP: #1525685)
[ Marco Trevisan (Treviño) ]
* DashStyle: ensure LazyLoadTexture disconnects from signals on
destruction (LP: #1580212)
* Releasing Unity 7.4.0
* SwitcherController: don't try to get a window from empty selections
(LP: #1580211)
* SwitcherView: close the mouse-selected application on middle-click
(LP: #1574689)
* UnityScreen, UnityWindow: cleanup a little the code, and ensure
overridden CompositeWindow functions get actually called
[ handsome_feng ]
* Change the x_offset of expo when launcher position changed. (LP:
#1573897, #1562348)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 17 May 2016 02:56:22 +0000
unity (7.4.0+16.04.20160415-0ubuntu1) xenial; urgency=medium
[ Andrea Azzarone ]
* Do not use pointers to LazyLoadTextures. (LP: #1569100)
* Fix unity script crash. (LP: #1566565)
* LockscreenController: Don't use SetActivate(False) for gnome-
screensaver to prevent unlocking on tty switch. It will not only
deactivate the screensaver but also unlock the screen. (LP:
#1552537)
* unityshell.xml: Fix typo (LP: #1559427)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 15 Apr 2016 05:33:08 +0000
unity (7.4.0+16.04.20160401.1-0ubuntu1) xenial; urgency=medium
[ Andrea Azzarone ]
* Improve the "lock on suspend" logic to always keep in sync the
inhibitor with the lockscreen.
[ Marco Trevisan (Treviño) ]
* DecoratedWindow: Just send estimated extents on
_NET_REQUEST_FRAME_EXTENTS (LP: #1368118)
* TextureCache: add support for loading themed textures (LP: #903179,
#1208790)
* Unity: stop unity7 upstart instance if needed and restart it if not
clearly requested (LP: #1555633)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 01 Apr 2016 23:11:47 +0000
unity (7.4.0+16.04.20160322-0ubuntu1) xenial; urgency=medium
* ForceQuitDialog: set client leader
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 22 Mar 2016 15:36:52 +0000
unity (7.4.0+16.04.20160321-0ubuntu1) xenial; urgency=medium
[ Andrea Azzarone ]
* ApplicationLauncherIcon: use the starting property to show an icon
when launched (LP: #676457)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 21 Mar 2016 15:38:22 +0000
unity (7.4.0+16.04.20160318-0ubuntu1) xenial; urgency=medium
[ Marco Trevisan (Treviño) ]
* UserPromptView: don't hide local scale property (LP: #1551820)
[ Sebastien Bacher ]
* set the gettext domain directly in CMakeLists rather than using
refering to the project name, the translation template is updated
during the build by dh_translations which is not clever enough to
understand the variable (LP: #1557081)
[ handsome_feng ]
* Dash: move it down when the launcher is positioned at the bottom.
(LP: #1552630)
* Launcher: add Bottom mode, so that the launcher can be positioned
horisontally (LP: #1552630)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 18 Mar 2016 10:10:42 +0000
unity (7.4.0+16.04.20160310-0ubuntu1) xenial; urgency=medium
[ Andrea Azzarone ]
* Add a "Format..." option to volume icons. (LP: #1057008)
[ Marco Trevisan (Treviño) ]
* DashView: ensure that we update scaling when monitor changes (LP:
#1546690)
* DecoratedWindow: move the shadow under the window if we've a client-
side decorated window with corners (LP: #1516403)
* LauncherController: add overlay shortcut to all the
WindowedLauncherIcon's we have
* ThemeSettings: add small class for reading gtk settings for theming
(LP: #1543757, #1288998)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 10 Mar 2016 10:09:34 +0000
unity (7.4.0+16.04.20160223.1-0ubuntu1) xenial; urgency=medium
[ Andrea Azzarone, Didier Roche ]
* Gnome-software launcher integration.
[ Marco Trevisan (Treviño) ]
* GnomeFileManager: use *WithTimestamp file operations instead of
using Activate workaround (LP: #1445595)
* unity.migrations: add 04_unity_update_software_center_desktop_file
[ Robert Ancell ]
* Drop unused build-dependency on libgee-dev.
* Switch from Ubuntu Software Center to GNOME Software. (LP: #1547129)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 23 Feb 2016 22:39:18 +0000
unity (7.4.0+16.04.20160209.3-0ubuntu1) xenial; urgency=medium
[ Didier Roche ]
* debian: Recommends session-shortcuts, prodiving easy way to
shutdown, reboot and logout from dash
[ Marco Trevisan (Treviño) ]
* CMake: use GNUInstallDirs with native multi-arch support (LP:
#1508635, #1485668)
* Launcher: add FileManager, Trash and Volume icons integration (LP:
#1524721, #1161323, #1063838, #1063823)
* SwitcherModel: avoid to access to invalid selection or to divide by
zero (LP: #1537524)
[ handsome_feng ]
* Extend the lockscreen theme for kylin.
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Tue, 09 Feb 2016 12:21:15 +0000
unity (7.4.0+16.04.20151218-0ubuntu2) xenial; urgency=medium
* Multiarchify the library packages.
-- Matthias Klose <doko@ubuntu.com> Thu, 28 Jan 2016 17:38:52 +0100
unity (7.4.0+16.04.20151218-0ubuntu1) xenial; urgency=medium
[ Aneesh Madhavan ]
* resources: optimize png images (LP: #1023745)
[ Evan McIntire ]
* ShortcutHint: Add key shortcut hints for Screenshot and Window
Screenshot (LP: #1050195)
[ Marco Trevisan (Treviño) ]
* CompizShortcutModeller: show menus keybinding can be read from
settings
* GnomeKeyGrabber: refcount the actions and remove them only when
nobody needs (LP: #1525308)
* LayoutSystem: add ComputeDecorationHeight method to LayoutWindow
(LP: #1526386)
* PanelMenuView: ensure that the maximized window is computed when
setting the monitor (LP: #1526835)
* SwitcherModel: don't reiterate over windows all the time, keep a
list and update it (LP: #1526434)
* TextInput: reduce opacity to warning if only num_lock is enabled
* Unity: compile a byte regex in order to get proper matching with
byte cmdline (LP: #1526455)
* a11y: don't spam the log with warnings when a quicklist is opened
* a11y: move accessibility stuff to its own directory, adding a
private lib for building
[ Michael Vogt ]
* Display "image-missing" icon in the panel if for some reason a icon
can not be loaded. (LP: #1525186)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 18 Dec 2015 00:01:39 +0000
unity (7.4.0+16.04.20151211-0ubuntu2) xenial; urgency=medium
* rebuild against latest libunity to update the list of recommends
(LP: #1521208)
-- Didier Roche <didrocks@ubuntu.com> Tue, 15 Dec 2015 09:29:52 +0100
unity (7.4.0+16.04.20151211-0ubuntu1) xenial; urgency=medium
[ Marco Trevisan (Treviño) ]
* unity: ensure we use python3 for the launch script and
python2.7 for autopilot (LP: #1512909)
[ Andrea Azzarone ]
* Places(Overlay)VScrollBar: impelement gtk-like overlay scrollbars
(LP: #1481706)
* Properly hide shortcut overlay window to avoid unnecessary redraws.
[ Bryan Quigley ]
* debian/control: Remove telepathy from recommends
[ Eleni Maria Stea ]
* Replaced deprecated calls in tests to get rid of compiler warnings
[ Marco Trevisan (Treviño) ]
* ApplicationLauncherIcon: if a new window opens while spreading,
spread again with proper match (LP: #1517455)
* ExpoLauncherIcon: add Quicklist to switch workspace and see the
selected one (LP: #750497)
* PanelIndicatorEntryView: Activate menus on click, by drawing them as
active (LP: #1513523)
* PanelMenuView: ignore leave events when triggered by feeding nux
manually (LP: #1513496)
* Places(Overlay)VScrollBar: impelement gtk-like overlay scrollbars
(LP: #1481706)
* SwitcherModel: allow to add/remove icons dynamically and update them
when they require it (LP: #1512349)
* SwitcherView: Add support to Alt+Key-right-to-tab to close the
selected app/window
* Switcher{View,Controller}: close active selection on Alt+q (LP:
#1468820)
* TextInput: show warning also when num lock is enabled
* XKeyboardUtil: add ability to get keycodes from any relative
position
* debian/rules: enable unit tests on arm64 again (LP: #1514538)
[ Sebastien Bacher ]
* Updated apport hook to include: the compiz and xorg details, not
only after asking users if the issue is a graphical one (which is
weird question) the upstart logs for unity/ups/lockscreen some
gsettings configurations (LP: #1508974)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 11 Dec 2015 12:46:16 +0000
unity (7.4.0+16.04.20151102-0ubuntu2) xenial; urgency=medium
* No-change rebuild against libglew1.13
-- Steve Langasek <steve.langasek@ubuntu.com> Wed, 11 Nov 2015 19:49:37 +0000
unity (7.4.0+16.04.20151102-0ubuntu1) xenial; urgency=medium
[ Marco Trevisan (Treviño) ]
* Bumping version to 7.4.0
* Fix building in xenial
[ Didier Roche ]
* Remove unity2d transitional packages. We are post trusty LTS, they
are not needed anymore
[ Marco Trevisan (Treviño) ]
* ApplicationLauncherIcon: if an app is not running and has no desktop
file, add QL item to add to dash
* PanelService: unset the idle ID before removal on callback (LP:
#1501289)
* Unity: use compiz cursorCache to get properly updated cursors (LP:
#1359211)
* UnityScreen: add SpreadAppWindows option and trigger it on
Super+Ctrl+[Shift]+W
[ Stephen M. Webb ]
* changed the wording of the help message and warning message for the
--reset option (LP: #1486498)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 02 Nov 2015 13:29:58 +0000
unity (7.3.3-0ubuntu1) UNRELEASED; urgency=medium
* Releasing Unity 7.3.3
-- Marco Trevisan (Treviño) <marco@ubuntu.com> Mon, 26 Oct 2015 15:37:22 +0100
unity (7.3.2+15.10.20151016-0ubuntu1) wily; urgency=medium
[ Marco Trevisan (Treviño) ]
* Sync changelog with proposed
[ Andrea Azzarone ]
* Avoid test failures on jenkins.
[ CI Train Bot ]
* UnityScreen: close the session dialog in case it's open and we're
requested to lock (LP: #1505234)
[ Marco Trevisan (Treviño) ]
* LauncherIcon: force lookup icon by scaling it at the requested size
(LP: #1446081, #1501973)
* PanelService: ensure that we free the "fake" IndicatorEntry's we
create for dropdowns (LP: #1503348)
* ResultRendererTile: consider global scaling when scaling a not-
squared icon (LP: #1499286)
* TestDash: Use local results in PreviewNavigateTests instead of
online ones
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 16 Oct 2015 08:46:34 +0000
unity (7.3.2+15.10.20151002.2-0ubuntu1) wily; urgency=medium
* GnomeKeyGrabber: Don't allow an action to be grabbed multiple times
(LP: #1459571)
* PanelService, DBusIndicators: drop support for EntryShowNowChanged
signal
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Fri, 02 Oct 2015 14:02:10 +0000
unity (7.3.2+15.10.20150921-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone ]
* Avoid to open adjacent menu when moving from an indicator icon to
its dropdown menu. (LP: #552920)
* Make sure to restore the state before the call to
glDisable(GL_SCISSOR_TEST). (LP: #1485727)
[ Iain Lane ]
* launcher: Always make sure we check the right file when seeing if
.desktop files have been deleted. Fixes disappearing launcher icons
when applications are upgraded when we are using glib > 2.44. (LP:
#1498106)
[ Lars Uebernickel ]
* DevicesSettingsImp: dont't feed garbage to gsettings (LP: #1495173)
[ Luke Yelavich ]
* Make a copy of a quicklist menu item plain text label
* Make a copy of a quicklist menu item plain text label
[ Marco Trevisan (Treviño) ]
* MenuManager: add a new setting to control the show-now delay (LP:
#1497915)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Mon, 21 Sep 2015 17:44:10 +0000
unity (7.3.2+15.10.20150910.1-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone andrea.azzarone@canonical.com ]
* Add unit tests for unity::lockscreen::DBusManager.
* Add/Update tests for gnome session manager.
* Do not allow shutdown when screen is locked. (LP: #1460626)
* Make sure we update the maximized window when "show
desktop"/"restore desktop". (LP: #1485559)
* Merge patch from https://launchpadlibrarian.net/216192448/llvm-
fix.patch (LP: #1491555)
* Merge patch from https://launchpadlibrarian.net/216276242/low-gfx-
override.patch (LP: #1491913)
[ Andrea Azzarone azzaronea@gmail.com ]
* Properly hide decorations when on "Show Desktop" mode. (LP:
#1485073)
[ Marco Trevisan (Treviño) ]
* UnityScreen: force shell to be on top when there's a window
fullscreen and we've a menu open. (LP: #591189)
-- Marco Trevisan (Treviño) <mail@3v1n0.net> Thu, 10 Sep 2015 15:37:46 +0000
unity (7.3.2+15.10.20150825-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone andrea.azzarone@canonical.com ]
* Do not handle events coming from viewports not actually containing
the window. (LP: #1449654)
[ Chris Townsend ]
* Also use the Compiz show() method when forcing an unmapped window to
be visible when clicking on it's active Launcher icon. (LP: #989588)
* When using keyboard navigation in the Dash, skip category headers
that are not expandable. Also, do not highlight the category header
when the mouse cursor is over it. (LP: #1045933)
[ Marco Trevisan (Treviño) ]
* ApplicationManager: rely on windows monitor property changes for
updating Pips (LP: #1027191)
* Autopilot: modernize some tests, use stronger methods to ensure
false positive
* DecorationsForceQuitDialog: override the background of the window
with transparent color (LP: #1470292)
* Launcher: Always unfold an active icon (LP: #1472339)
* PanelMenuView: ensure that we connect to window signals as soon as
the AppManager knows it (LP: #1472326)
* PlacesGroup: connect to view changes using a function instead of a
lambda (LP: #1470298)
* SessionButton: set button opacity to 75% when pressed (LP: #1301655)
-- CI Train Bot <ci-train-bot@canonical.com> Tue, 25 Aug 2015 08:15:56 +0000
unity (7.3.2+15.10.20150819-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone andrea.azzarone@canonical.com ]
* Do not handle events coming from viewports not actually containing
the window. (LP: #1449654)
[ Chris Townsend ]
* Also use the Compiz show() method when forcing an unmapped window to
be visible when clicking on it's active Launcher icon. (LP: #989588)
* When using keyboard navigation in the Dash, skip category headers
that are not expandable. Also, do not highlight the category header
when the mouse cursor is over it. (LP: #1045933)
[ Marco Trevisan (Treviño) ]
* ApplicationManager: rely on windows monitor property changes for
updating Pips (LP: #1027191)
* Autopilot: modernize some tests, use stronger methods to ensure
false positive
* DecorationsForceQuitDialog: override the background of the window
with transparent color (LP: #1470292)
* Launcher: Always unfold an active icon (LP: #1472339)
* PanelMenuView: ensure that we connect to window signals as soon as
the AppManager knows it (LP: #1472326)
* PlacesGroup: connect to view changes using a function instead of a
lambda (LP: #1470298)
* SessionButton: set button opacity to 75% when pressed (LP: #1301655)
-- CI Train Bot <ci-train-bot@canonical.com> Wed, 19 Aug 2015 14:45:18 +0000
unity (7.3.2+15.10.20150803.1-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone andrea.azzarone@canonical.com ]
* Enable building unity form source with gcc5.
* Fixes that enable building unity from sources with cmake3 (wily).
[ CI Train Bot ]
* New rebuild forced.
[ Stephen M. Webb ]
* unity-shared/DebugDBusInterface.cpp: include <iostream> to fix a
FTBFS
-- CI Train Bot <ci-train-bot@canonical.com> Mon, 03 Aug 2015 12:35:24 +0000
unity (7.3.2+15.10.20150627.1-0ubuntu1) wily; urgency=medium
[ Andrea Azzarone andrea.azzarone@canonical.com ]
* Fix a regression with urgent icons not showing up if launcher is
hidden. (LP: #1450991)
* Make sure new icons are added to the model before calling
SortAndUpdate. (LP: #1458950)
* This likely could fix
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1451613. At
least the backtraces posted there suggest this. But I think that
those backtraces are just leftovers of old crashes-on-unloading.
[ CI Train Bot ]
* New rebuild forced.
[ Chris Townsend ]
* Allow mouse clicks that are not in the visible area of the Quicklist
to pass through down to the Launcher icon. Fixes a failing AP test.
(LP: #1456245)
[ Luke Yelavich ]
* Implement filter results controls accessibility (LP: #1457071)
[ Marco Trevisan (Treviño) ]
* ApplicationManager: add missing features, keep a copy of views
around
* DecorationsForceQuitDialog: remove deprecated override style
functions, use CSS
* GnomeSessionManager: Request ScreenSaver (de)activation on VT
changes (LP: #1405349)
* OverlayWindowButtons: trigger a queuedraw also when a child requires
a redraw (LP: #1461618)
* PanelMenuView: connect to target window / application title changes
(LP: #1418449)
-- CI Train Bot <ci-train-bot@canonical.com> Sat, 27 Jun 2015 04:44:56 +0000
unity (7.3.2+15.10.20150522-0ubuntu1) wily; urgency=medium
[ CI Train Bot ]
* New rebuild forced.
[ Chris Townsend ]
* Add necessary signaling to set the BFB icon's tooltip and the Home
Scope's default search string to accurately reflect if searching
online is enabled or disabled in unity-system-settings. (LP:
#1202160, #1101662)
* Enable real page up/page down key navigation in the Dash. When using
these keys the view scrolls the length of the visible view. (LP:
#913612)
* If Spread/Expo is active, then terminate it when entering Launcher
keynav mode. (LP: #1447810)
* If dragging an application:// uri type from the Dash to the desktop,
change it to a file:// uri type so Nautilus can understand the type
a make a copy of it on the desktop. (LP: #1241972)
* Wait on Spread to be terminated before showing the Quicklist. (LP:
#1441626)
[ Luke Yelavich ]
* Implement scope bar icon accessibility (LP: #1457073)
[ Marco Trevisan (Treviño) ]
* ResultViewGrid: wait for double-click event only if the relative
result needs the Preview (LP: #1447372, #1291950)
-- CI Train Bot <ci-train-bot@canonical.com> Fri, 22 May 2015 13:21:14 +0000
unity (7.3.2+15.10.20150512-0ubuntu1) wily; urgency=medium
[ Chris Townsend ]
* Add new signal to tell the Launcher to terminate keynav mode and use
that signal when a BFB quicklist item is chosen. (LP: #1052024,
#1444643)
* Add option to enable and disable Unity low graphics mode on the fly
in ccsm or via gsettings. (LP: #1412937)