[Touch-packages] [Bug 1675448] [NEW] Unity 8 doesnt allow multiple mir connections in a single client
Public bug reported: Some clients like to probe to see if a mir connection is available such as SDL2 and SDL1.2. This is an issue in U8 as it doesnt seem to allow multiple connections in one process. Example: http://paste.ubuntu.com/24235399/ Output on U8: http://paste.ubuntu.com/24235406/ ** Affects: unity8 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1675448 Title: Unity 8 doesnt allow multiple mir connections in a single client Status in unity8 package in Ubuntu: New Bug description: Some clients like to probe to see if a mir connection is available such as SDL2 and SDL1.2. This is an issue in U8 as it doesnt seem to allow multiple connections in one process. Example: http://paste.ubuntu.com/24235399/ Output on U8: http://paste.ubuntu.com/24235406/ To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1675448/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1667352] Re: SDL apps either "Failed to connect to the mir server: ..." or segfault in protobuf via mir_connect_sync
Bug is in protobuf leaking symbols, so not a mir/sdl2 bug. ** Changed in: libsdl2 (Ubuntu) Status: Confirmed => Invalid ** Changed in: mir/0.26 Assignee: Brandon Schaefer (brandontschaefer) => (unassigned) ** Changed in: mir Status: In Progress => Invalid ** Changed in: mir/0.26 Status: Triaged => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to protobuf in Ubuntu. https://bugs.launchpad.net/bugs/1667352 Title: SDL apps either "Failed to connect to the mir server: ..." or segfault in protobuf via mir_connect_sync Status in Canonical System Image: In Progress Status in Mir: Invalid Status in Mir 0.26 series: Invalid Status in libsdl2 package in Ubuntu: Invalid Status in protobuf package in Ubuntu: In Progress Bug description: ubuntu 17.04 unity8, trying to run neverball game Feb 23 17:46:43 pixel-desktop systemd[2629]: Starting ubuntu-app-launch-application-legacy-neverball-1487864803635991.service... Feb 23 17:46:44 pixel-desktop neverball[3591]: Failure to initialize SDL (Failed to connect to the mir server: std::bad_alloc) Feb 23 17:46:44 pixel-desktop systemd[2629]: ubuntu-app-launch-application-legacy-neverball-1487864803635991.service: Main process exited, code=exited, status=1/FAI Feb 23 17:46:44 pixel-desktop systemd[2629]: Failed to start ubuntu-app-launch-application-legacy-neverball-1487864803635991.service. Feb 23 17:46:44 pixel-desktop systemd[2629]: ubuntu-app-launch-application-legacy-neverball-1487864803635991.service: Unit entered failed state. Feb 23 17:46:44 pixel-desktop systemd[2629]: ubuntu-app-launch-application-legacy-neverball-1487864803635991.service: Failed with result 'exit-code'. To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1667352/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1670844] Re: libmirclient cannot be reloaded through dlopen
This is mainly an issue with dynamic loading in SDL2 which ends up re- loading libmirclient twice. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1670844 Title: libmirclient cannot be reloaded through dlopen Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Code example: http://paste.ubuntu.com/24133139/ Fails on the 2nd load due to an issue of libprotobuf-lite not being unloaded. Meaning the static variables aren't being re-inited. Protobuf uses a static variable for an empty string optimization which ends up becoming a dangling pointer: back trace: http://paste.ubuntu.com/24133152/ valgrind: http://paste.ubuntu.com/24133156/ The workaround/fix that we saw was to re-set that static variable which will let the empty string be init'd correctly. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1670844/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1670844] [NEW] libmirclient cannot be reloaded through dlopen
Public bug reported: Code example: http://paste.ubuntu.com/24133139/ Fails on the 2nd load due to an issue of libprotobuf-lite not being unloaded. Meaning the static variables aren't being re-inited. Protobuf uses a static variable for an empty string optimization which ends up becoming a dangling pointer: back trace: http://paste.ubuntu.com/24133152/ valgrind: http://paste.ubuntu.com/24133156/ The workaround/fix that we saw was to re-set that static variable which will let the empty string be init'd correctly. ** Affects: mir Importance: High Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Affects: mir (Ubuntu) Importance: High Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Changed in: mir Status: New => In Progress ** Changed in: mir Importance: Undecided => High ** Changed in: mir Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir Milestone: None => 1.0.0 ** Changed in: mir Milestone: 1.0.0 => 0.26.2 ** Changed in: mir (Ubuntu) Status: New => In Progress ** Changed in: mir (Ubuntu) Importance: Undecided => High ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Summary changed: - Mirclient cannot be reloaded through dlopen + libmirclient cannot be reloaded through dlopen -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1670844 Title: libmirclient cannot be reloaded through dlopen Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Code example: http://paste.ubuntu.com/24133139/ Fails on the 2nd load due to an issue of libprotobuf-lite not being unloaded. Meaning the static variables aren't being re-inited. Protobuf uses a static variable for an empty string optimization which ends up becoming a dangling pointer: back trace: http://paste.ubuntu.com/24133152/ valgrind: http://paste.ubuntu.com/24133156/ The workaround/fix that we saw was to re-set that static variable which will let the empty string be init'd correctly. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1670844/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1667014] Re: Mir hangs when requesting a buffer when no pixel format is set
** Summary changed: - If no pixel format is set for a window it hangs when requesting a buffer + Mir hangs when requesting a buffer when no pixel format is set ** Changed in: mir (Ubuntu) Status: New => Invalid ** Summary changed: - Mir hangs when requesting a buffer when no pixel format is set + Mir hangs when requesting a buffer with no pixel format -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1667014 Title: Mir hangs when requesting a buffer with no pixel format Status in Mir: Invalid Status in mir package in Ubuntu: Invalid Bug description: If no pixel format is set when creating a window the request for a buffer hangs. An example would be to comment out setting the pixel format in eglapp.c then running any egl client demo. http://paste.ubuntu.com/24047858/ To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1667014/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1667014] Re: If no pixel format is set for a window it hangs when requesting a buffer
** Summary changed: - If not pixel format is set for a window it hangs when requesting a buffer + If no pixel format is set for a window it hangs when requesting a buffer ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir (Ubuntu) Importance: Undecided => High ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Kevin DuBois (kdub) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1667014 Title: If no pixel format is set for a window it hangs when requesting a buffer Status in Mir: New Status in mir package in Ubuntu: New Bug description: If no pixel format is set when creating a window the request for a buffer hangs. An example would be to comment out setting the pixel format in eglapp.c then running any egl client demo. http://paste.ubuntu.com/24047858/ To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1667014/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1664610] Re: qtubuntu sends wrong text as part of QKeyEvent
** Changed in: mir Importance: Undecided => Medium ** Changed in: qtubuntu (Ubuntu) Importance: Undecided => Medium ** Changed in: qtubuntu (Ubuntu) Assignee: (unassigned) => Andreas Pokorny (andreas-pokorny) ** Changed in: mir Status: Confirmed => In Progress ** Changed in: qtubuntu (Ubuntu) Status: New => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to qtubuntu in Ubuntu. https://bugs.launchpad.net/bugs/1664610 Title: qtubuntu sends wrong text as part of QKeyEvent Status in Mir: In Progress Status in qtubuntu package in Ubuntu: In Progress Bug description: When using Unity7 or Plasma a key event created by Ctrl+C is QKeyEvent(KeyPress, Key_C, ControlModifier, text="\u0003") But Unity8+ qtubuntu send to the application QKeyEvent(KeyPress, Key_C, ControlModifier, text="c") This is most likely because QMirClientInput::dispatchKeyEvent is using xkb_keysym_to_utf8 to get the text of the event instead of using xkb_state_key_get_utf8 This breaks for example Konsole that expects the correct text to be sent. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1664610/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1654612] Re: Setting the event handler after the surface has been created does nothing
** Branch linked: lp:~brandontschaefer/mir/fix-spec-set-event-handle -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1654612 Title: Setting the event handler after the surface has been created does nothing Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Setting the surface spec for the event handler after the surface has been created does nothing. Reason: We dont set the event handler and recreate the input thread! To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1654612/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1654612] Re: Setting the event handler after the surface has been created does nothing
** Changed in: mir Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: mir Importance: Undecided => Medium ** Changed in: mir Status: New => In Progress ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir (Ubuntu) Status: New => In Progress ** Changed in: mir (Ubuntu) Importance: Undecided => Medium ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1654612 Title: Setting the event handler after the surface has been created does nothing Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Setting the surface spec for the event handler after the surface has been created does nothing. Reason: We dont set the event handler and recreate the input thread! To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1654612/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1606418] Re: PointerConfinement.test_we_update_our_confined_region_on_a_resize
** Branch linked: lp:~brandontschaefer/mir/fix-confined-region-test -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1606418 Title: PointerConfinement.test_we_update_our_confined_region_on_a_resize Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Randomly fails 1/100 times. https://mir-jenkins.ubuntu.com/job/build-2-binpkg-mir/arch=i386,compiler=gcc,platform=mesa,release=xenial+overlay/1612/console Looking into it, most likely a race with surface resize... To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1606418/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1653789] Re: DisplayConfigurationTest.configure_session_removed_display failure
** Changed in: mir Importance: High => Medium ** Changed in: mir (Ubuntu) Importance: High => Medium -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1653789 Title: DisplayConfigurationTest.configure_session_removed_display failure Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: 19:32:28 11: [2017-01-03 19:32:28.499435] mirserver: Session virtual void mir_test_framework::ConnectedClientHeadlessServer::SetUp() removed display configuration 19:32:28 11: 19:32:28 11: GMOCK WARNING: 19:32:28 11: Uninteresting mock function call - returning directly. 19:32:28 11: Function call: session_configuration_removed(@0xbc0ca80 16-byte object <00-A8 97-0A 00-00 00-00 F0-A7 97-0A 00-00 00-00>) 19:32:28 11: Stack trace: 19:32:38 11: [2017-01-03 19:32:38.595943] mirserver: Stopping 19:32:38 11: /<>/mir-0.26.0+xenial3324bzr3948/tests/acceptance-tests/test_new_display_configuration.cpp:1810: Failure 19:32:38 11: Actual function call count doesn't match EXPECT_CALL(*observer, session_configuration_removed(_))... 19:32:38 11: Expected: to be called once 19:32:38 11: Actual: never called - unsatisfied and active 19:32:38 11: [ FAILED ] DisplayConfigurationTest.configure_session_removed_display (11053 ms) https://mir-jenkins.ubuntu.com/job/build-2-binpkg- mir/arch=amd64,compiler=gcc,platform=mesa,release=xenial+overlay/3294/consoleFull To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1653789/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1606418] Re: PointerConfinement.test_we_update_our_confined_region_on_a_resize
Huh, no issues for 4 months then it starts popping up randomly? Seems like a regression somewhere since the last MP ** Changed in: mir (Ubuntu) Importance: Undecided => Medium ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: mir Status: Confirmed => In Progress ** Changed in: mir (Ubuntu) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1606418 Title: PointerConfinement.test_we_update_our_confined_region_on_a_resize Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: Randomly fails 1/100 times. https://mir-jenkins.ubuntu.com/job/build-2-binpkg-mir/arch=i386,compiler=gcc,platform=mesa,release=xenial+overlay/1612/console Looking into it, most likely a race with surface resize... To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1606418/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1653789] Re: DisplayConfigurationTest.configure_session_removed_display failure
** Branch linked: lp:~brandontschaefer/mir/fix-remove-display-test ** Changed in: mir Status: New => In Progress ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir (Ubuntu) Status: New => In Progress ** Changed in: mir (Ubuntu) Importance: Undecided => High ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: mir Milestone: None => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1653789 Title: DisplayConfigurationTest.configure_session_removed_display failure Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: https://mir-jenkins.ubuntu.com/job/build-2-binpkg- mir/arch=amd64,compiler=gcc,platform=mesa,release=xenial+overlay/3294/consoleFull To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1653789/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1649696] Re: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory
(also strange an upgrade didnt just auto do that for you?) ** Changed in: mir Status: Incomplete => Invalid ** Changed in: mir/0.25 Status: Incomplete => Invalid ** Changed in: mir (Ubuntu) Status: Incomplete => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1649696 Title: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory Status in Mir: Invalid Status in Mir 0.25 series: Invalid Status in mir package in Ubuntu: Invalid Bug description: A header from libmirclient-dev has an include for a file that used to be in libmircommon-dev, which seems to have been removed in 0.25.0+16.04.20161203-0ubuntu1 libmircommon-dev=0.24.1+16.04.20160928-0ubuntu1 did have mir_toolkit/common.h To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1649696/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1649696] Re: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory
Good to hear! -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1649696 Title: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory Status in Mir: Invalid Status in Mir 0.25 series: Invalid Status in mir package in Ubuntu: Invalid Bug description: A header from libmirclient-dev has an include for a file that used to be in libmircommon-dev, which seems to have been removed in 0.25.0+16.04.20161203-0ubuntu1 libmircommon-dev=0.24.1+16.04.20160928-0ubuntu1 did have mir_toolkit/common.h To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1649696/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1649696] Re: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory
http://paste.ubuntu.com/23627055/ Xenial + O with pbuilder compiling content hub. Is there a different package you were trying to test? I dont see any comment on it -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1649696 Title: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory Status in Mir: Incomplete Status in Mir 0.25 series: Incomplete Status in mir package in Ubuntu: Incomplete Bug description: A header from libmirclient-dev has an include for a file that used to be in libmircommon-dev, which seems to have been removed in 0.25.0+16.04.20161203-0ubuntu1 libmircommon-dev=0.24.1+16.04.20160928-0ubuntu1 did have mir_toolkit/common.h To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1649696/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1649696] Re: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory
Testing on a fresh install of 0.25 in zesty, and content hub is building for me. Using: 0.25.0+16.04.20161203-0ubuntu1 libmirclient9 0.25.0+16.04.20161203-0ubuntu1 libmircommon7 0.25.0+16.04.20161203-0ubuntu1 libmircore1 Is there a different package you were talking about? -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1649696 Title: /usr/include/mirclient/mir_toolkit/events/event.h:24:32: fatal error: mir_toolkit/common.h: No such file or directory Status in Mir: New Status in mir package in Ubuntu: New Bug description: A header from libmirclient-dev has an include for a file that used to be in libmircommon-dev, which seems to have been removed in 0.25.0+16.04.20161203-0ubuntu1 libmircommon-dev=0.24.1+16.04.20160928-0ubuntu1 did have mir_toolkit/common.h To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1649696/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536279] Re: Mir does not reset key states when paused or resumed
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536279 Title: Mir does not reset key states when paused or resumed Status in Canonical System Image: Confirmed Status in Mir: In Progress Status in QtMir: New Status in mir package in Ubuntu: Confirmed Bug description: Mir switches away from the current VT when ALT+FXX is pressed. During that key sequence the alt modifier is pressed. While away and mir does not receive the alt release. When you switch back to mir there is a chance that mir is not receiving the alt release either. So switching away and back to mir makes the alt key stick... Proposed solution: - track regular keys in mir::input::Seat or in SurfaceDispatcher - inform client(s) about pause / resume with a focus lost / focus gain event - attach key state to focus event or send separate key state event - adapt gdk/qt backends - fix alt key tracking in unity8 to rely on the provided modifier state To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1536279/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1393578] Re: Subpixel order not included in Mir display information
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1393578 Title: Subpixel order not included in Mir display information Status in Mir: In Progress Status in QtMir: Triaged Status in qtubuntu: Triaged Status in mir package in Ubuntu: Triaged Status in xorg-server package in Ubuntu: Triaged Bug description: Just capturing something mentioned by Trevinho on IRC this morning. MirDisplayOutput does not include subpixel ordering, it could and should though. The information is exposed on the drm side (drmModeSubPixel). Marking as wishlist in absence of other information. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1393578/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1600220] Re: Nested server needs full control over cursor position
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1600220 Title: Nested server needs full control over cursor position Status in Mir: In Progress Status in mir package in Ubuntu: Confirmed Bug description: Unity 8, a nested server of unity-system-compositor, needs full control over the cursor position. Mir doesn't have the needed context information to know how to move or position the cursor in all situations. Only Unity 8 has this information, which lives mainly in its QML scene. Once this is granted Unity 8 can dump its QML cursor implementation and move to use the more performant hardware cursor that mir has access to. Related to bug 1513883. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1600220/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1539896] Re: [enhancement] Support Vulkan
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1539896 Title: [enhancement] Support Vulkan Status in Mir: In Progress Status in Ubuntu SDK IDE: Invalid Status in mir package in Ubuntu: Triaged Bug description: full support to the libraries vulkan in mir and in canonical system image. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1539896/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1569836] Re: demo server with CanonicalWindowManagerPolicy hides titlebar when vertmaximized
** Changed in: mir Milestone: 0.25.0 => 0.24.2 ** Changed in: mir Milestone: 0.24.2 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1569836 Title: demo server with CanonicalWindowManagerPolicy hides titlebar when vertmaximized Status in Mir: In Progress Status in mir package in Ubuntu: New Bug description: run mir_demo_server with the CanonicalWindowManagerPolicy. Connect a client (like egltriangle). Hit Shift+F11 to transition client to vertmaximized. The titlebar is hidden (or off the top of the screen). It should be shown at the top. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1569836/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1588237] Re: Inconsistent behaviour of Num Lock
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1588237 Title: Inconsistent behaviour of Num Lock Status in Canonical System Image: Confirmed Status in Mir: In Progress Status in mir package in Ubuntu: Triaged Bug description: How to reproduce: M10 with external Keyboard and Screen, after restart on OTA11. To use numbers in the unlock screen, the num key has to be active. After unlocking, use a search field in the homescope or any other scope. Expected behaviour: The numblock should work, as the num key is still active. Actual behaviour: The numblock only works, when you deactivate the num key. This is the same for the browserbar or the telegram chat. After some time, the behaviour changes, so the numblock behaviour seems to be inconsistent. To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1588237/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1591328] Re: Pointer/cursor input lag in unity8 session
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1591328 Title: Pointer/cursor input lag in unity8 session Status in Canonical System Image: In Progress Status in Mir: In Progress Status in mir package in Ubuntu: Triaged Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: Mouse pointer suffers of heavy input lag on my laptop, might also affect tablet To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1591328/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1612012] Re: Valgrind errors in NesterServer.* cause subsequent tests (ServerDisconnect, ServerStartup, UnresponsiveClient) to fail
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1612012 Title: Valgrind errors in NesterServer.* cause subsequent tests (ServerDisconnect, ServerStartup, UnresponsiveClient) to fail Status in Mir: Confirmed Status in Mir 0.24 series: Fix Released Status in mir package in Ubuntu: Fix Released Bug description: Tests always fail together: ServerDisconnect, ServerStartup, UnresponsiveClient 17:27:52 9: [ FAILED ] 5 tests, listed below: 17:27:52 9: [ FAILED ] ServerDisconnect.is_detected_by_client 17:27:52 9: [ FAILED ] ServerDisconnect.doesnt_stop_client_calling_API_functions 17:27:52 9: [ FAILED ] ServerStartup.creates_endpoint_on_filesystem 17:27:52 9: [ FAILED ] ServerStartup.after_server_sigkilled_can_start_new_instance 17:27:52 9: [ FAILED ] UnresponsiveClient.does_not_hang_server [https://mir-jenkins.ubuntu.com/job/build-2-binpkg- mir/arch=amd64,compiler=clang,platform=mesa,release=vivid+overlay/1772/consoleFull] This is happening regularly in CI. These failures occur together. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1612012/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1628478] Re: Mir servers crash when using the Nvidia driver
** Changed in: mir Milestone: 0.25.0 => 0.26.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1628478 Title: Mir servers crash when using the Nvidia driver Status in Mir: In Progress Status in mir package in Ubuntu: Triaged Bug description: I select Unity8 from the log in screen, type in my credentials and it just hangs. Intel® Core™ i7-4710HQ CPU @ 2.50GHz × 8 GeForce GTX 860M/PCIe/SSE2 To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1628478/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1618672] [NEW] Screen flashes as if the display mode is using garbage values for the top/left and wraps around
Public bug reported: When typing/moving workspace or anything it will randomly happen where the display will flash around. Sometimes it'll get stuck like this: http://i.imgur.com/VSCQZq3.jpg Ive no way to reproduce sadly, but at the worst point the screen will start flashing black and I have to reboot. ProblemType: Bug DistroRelease: Ubuntu 16.10 Package: xorg 1:7.7+13ubuntu3 ProcVersionSignature: Ubuntu 4.4.0-9136.55-generic 4.4.16 Uname: Linux 4.4.0-9136-generic x86_64 .tmp.unity_support_test.0: ApportVersion: 2.20.3-0ubuntu7 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CompositorRunning: compiz CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0' CompositorUnredirectFSW: true CurrentDesktop: Unity Date: Tue Aug 30 19:34:28 2016 DistUpgraded: 2016-01-04 12:05:30,294 DEBUG enabling apt cron job DistroCodename: yakkety DistroVariant: ubuntu ExtraDebuggingInterest: Yes, including running git bisection searches GraphicsCard: Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA controller]) Subsystem: Lenovo HD Graphics 5500 [17aa:5036] InstallationDate: Installed on 2015-12-21 (253 days ago) InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Release amd64 (20151021) MachineType: LENOVO 20BXCTO1WW ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-9136-generic.efi.signed root=UUID=21d99ce3-7e95-44e2-a708-10cf194e0be5 ro quiet splash vt.handoff=7 SourcePackage: xorg UpgradeStatus: Upgraded to yakkety on 2016-01-04 (239 days ago) dmi.bios.date: 11/06/2015 dmi.bios.vendor: LENOVO dmi.bios.version: JBET54WW (1.19 ) dmi.board.asset.tag: Not Available dmi.board.name: 20BXCTO1WW dmi.board.vendor: LENOVO dmi.board.version: SDK0J40709 WIN dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: None dmi.modalias: dmi:bvnLENOVO:bvrJBET54WW(1.19):bd11/06/2015:svnLENOVO:pn20BXCTO1WW:pvrThinkPadT450s:rvnLENOVO:rn20BXCTO1WW:rvrSDK0J40709WIN:cvnLENOVO:ct10:cvrNone: dmi.product.name: 20BXCTO1WW dmi.product.version: ThinkPad T450s dmi.sys.vendor: LENOVO version.compiz: compiz 1:0.9.13.0+16.10.20160818.2-0ubuntu1 version.ia32-libs: ia32-libs N/A version.libdrm2: libdrm2 2.4.70-1 version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.1-3ubuntu2 version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.1-3ubuntu2 version.xserver-xorg-core: xserver-xorg-core 2:1.18.4-1ubuntu4 version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.2-1ubuntu1 version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1 version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.917+git20160706-1ubuntu1 version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-2 xserver.bootTime: Tue Aug 30 19:24:57 2016 xserver.configfile: default xserver.errors: xserver.logfile: /var/log/Xorg.0.log xserver.version: 2:1.18.4-1ubuntu4 xserver.video_driver: modeset ** Affects: xorg (Ubuntu) Importance: High Status: New ** Affects: xorg-server (Ubuntu) Importance: High Status: New ** Tags: amd64 apport-bug compiz-0.9 ubuntu yakkety ** Summary changed: - Screen flashes as if the display mod is using garbage values for the top/left + Screen flashes as if the display mode is using garbage values for the top/left -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to xorg in Ubuntu. https://bugs.launchpad.net/bugs/1618672 Title: Screen flashes as if the display mode is using garbage values for the top/left and wraps around Status in xorg package in Ubuntu: New Status in xorg-server package in Ubuntu: New Bug description: When typing/moving workspace or anything it will randomly happen where the display will flash around. Sometimes it'll get stuck like this: http://i.imgur.com/VSCQZq3.jpg Ive no way to reproduce sadly, but at the worst point the screen will start flashing black and I have to reboot. ProblemType: Bug DistroRelease: Ubuntu 16.10 Package: xorg 1:7.7+13ubuntu3 ProcVersionSignature: Ubuntu 4.4.0-9136.55-generic 4.4.16 Uname: Linux 4.4.0-9136-generic x86_64 .tmp.unity_support_test.0: ApportVersion: 2.20.3-0ubuntu7 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CompositorRunning: compiz CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0' CompositorUnredirectFSW: true CurrentDesktop: Unity Date: Tue Aug 30 19:34:28 2016 DistUpgraded: 2016-01-04 12:05:30,294 DEBUG enabling apt cron job DistroCodename: yakkety DistroVariant: ubuntu ExtraDebuggingInterest: Yes, including running git bisection searches GraphicsCard: Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA controller]) Subsystem: Lenovo HD Graphics 5500 [17aa:5036] InstallationDate: Installed
[Touch-packages] [Bug 1611959] [NEW] Topbar - window controls for maximised windows in the top bar should conform to Fitts's law
Public bug reported: Close, maximize/unmaximize and minimize button for maximised windows in the top bar should conform to Fitts law. Referencing this bug: https://bugs.launchpad.net/ayatana-design/+bug/839690 ** Affects: unity8 (Ubuntu) Importance: Undecided Status: New ** Summary changed: - Topbar - window controls for maximised windows in the top bar should conform to Fitts's law Edit + Topbar - window controls for maximised windows in the top bar should conform to Fitts's law -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1611959 Title: Topbar - window controls for maximised windows in the top bar should conform to Fitts's law Status in unity8 package in Ubuntu: New Bug description: Close, maximize/unmaximize and minimize button for maximised windows in the top bar should conform to Fitts law. Referencing this bug: https://bugs.launchpad.net/ayatana-design/+bug/839690 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1611959/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1590099] Re: Need to support pointer confinement
** Branch linked: lp:~brandontschaefer/mir/pointer-confinement -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1590099 Title: Need to support pointer confinement Status in Mir: In Progress Status in MirAL: Triaged Status in mir package in Ubuntu: In Progress Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1590099/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1592691] Re: mir fails to build in xenial
** Changed in: mir/0.21 Status: Triaged => Fix Committed -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1592691 Title: mir fails to build in xenial Status in Mir: Invalid Status in Mir 0.21 series: Fix Committed Status in mir package in Ubuntu: Triaged Status in mir source package in Xenial: Triaged Bug description: seen in a xenial test rebuild using ppa:ubuntu-toolchain-r/ppa http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-xenial.html In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchContactMatcherP4::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; slot_type = int; action_type = MirTouchAction; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:340:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_x) - x) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:342:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_y) - y) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchEventMatcherP2::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:324:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, 0, mir_touch_axis_x) - x) > 0.5f) ^ In file included from /usr/include/c++/5/cst
[Touch-packages] [Bug 1592691] Re: mir fails to build in xenial
** Changed in: mir Status: Confirmed => Won't Fix ** Changed in: mir Status: Won't Fix => Invalid ** Changed in: mir/0.21 Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1592691 Title: mir fails to build in xenial Status in Mir: Invalid Status in Mir 0.21 series: Confirmed Status in mir package in Ubuntu: Confirmed Bug description: seen in a xenial test rebuild using ppa:ubuntu-toolchain-r/ppa http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-xenial.html In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchContactMatcherP4::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; slot_type = int; action_type = MirTouchAction; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:340:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_x) - x) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:342:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_y) - y) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchEventMatcherP2::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:324:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(
[Touch-packages] [Bug 1592691] Re: mir fails to build in xenial
** Also affects: mir Importance: Undecided Status: New ** Also affects: mir/0.21 Importance: Undecided Status: New ** Changed in: mir Status: New => Confirmed ** Changed in: mir/0.21 Status: New => Confirmed ** Changed in: mir Importance: Undecided => High ** Changed in: mir/0.21 Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1592691 Title: mir fails to build in xenial Status in Mir: Invalid Status in Mir 0.21 series: Confirmed Status in mir package in Ubuntu: Confirmed Bug description: seen in a xenial test rebuild using ppa:ubuntu-toolchain-r/ppa http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20160614-xenial.html In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchContactMatcherP4::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; slot_type = int; action_type = MirTouchAction; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:340:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_x) - x) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h:342:17: error: call of overloaded ‘abs(float)’ is ambiguous if (std::abs(mir_touch_event_axis_value(tev, slot, mir_touch_axis_y) - y) > 0.5f) ^ In file included from /usr/include/c++/5/cstdlib:72:0, from /usr/include/c++/5/bits/stl_algo.h:59, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/stdlib.h:774:12: note: candidate: int abs(int) extern int abs (int __x) __THROW __attribute__ ((__const__)) __wur; ^ In file included from /usr/include/c++/5/bits/stl_algo.h:59:0, from /usr/include/c++/5/algorithm:62, from /usr/include/gmock/gmock-actions.h:43, from /usr/include/gmock/gmock.h:58, from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/precompiled.hpp:22: /usr/include/c++/5/cstdlib:166:3: note: candidate: long int std::abs(long int) abs(long __i) { return __builtin_labs(__i); } ^ /usr/include/c++/5/cstdlib:174:3: note: candidate: long long int std::abs(long long int) abs(long long __x) { return __builtin_llabs (__x); } ^ In file included from /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:31:0: /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/mir/test/event_matchers.h: In instantiation of ‘bool mir::test::TouchEventMatcherP2::gmock_Impl::MatchAndExplain(arg_type, testing::MatchResultListener*) const [with arg_type = MirEvent&; x_type = float; y_type = float]’: /«BUILDDIR»/mir-0.21.0+16.04.20160330/tests/unit-tests/input/evdev/test_libinput_device.cpp:752:1: required from here /«BUILDDIR»/mir-0.21.0+16.04.20160330/include/test/m
[Touch-packages] [Bug 1590099] Re: Need to support pointer confimenet
The mir branch was the first step, not the 100% solution in mir. ** Changed in: mir Status: Fix Committed => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1590099 Title: Need to support pointer confimenet Status in Mir: In Progress Status in MirAL: Triaged Status in mir package in Ubuntu: In Progress Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1590099/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1590099] Re: Need to support pointer confimenet
** Also affects: miral Importance: Undecided Status: New ** Changed in: miral Status: New => Triaged ** Changed in: miral Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1590099 Title: Need to support pointer confimenet Status in Mir: In Progress Status in MirAL: Triaged Status in mir package in Ubuntu: In Progress Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1590099/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1590099] Re: Need to support pointer confimenet
** Branch linked: lp:~brandontschaefer/mir/add-client-confine-pointer- spec -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1590099 Title: Need to support pointer confimenet Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1590099/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1590099] [NEW] Need to support pointer confimenet
Public bug reported: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. ** Affects: mir Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Affects: mir (Ubuntu) Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Affects: qtmir (Ubuntu) Importance: Medium Assignee: Daniel d'Andrada (dandrader) Status: Confirmed ** Affects: unity8 (Ubuntu) Importance: Medium Assignee: Daniel d'Andrada (dandrader) Status: Confirmed ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir Status: New => In Progress ** Changed in: mir (Ubuntu) Status: New => In Progress ** Changed in: mir Importance: Undecided => Medium ** Changed in: mir (Ubuntu) Importance: Undecided => Medium ** Changed in: mir Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: mir Milestone: None => 0.24.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1590099 Title: Need to support pointer confimenet Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Status in qtmir package in Ubuntu: Confirmed Status in unity8 package in Ubuntu: Confirmed Bug description: We need to support pointer confinement set by the client. This way we can generate relative mouse events on a surface without the cursor being able to leave the edge of the window. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1590099/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1589654] [NEW] OSK can render above the greeter before password prompt
Public bug reported: To reproduce, you'll need to compile/install this libertine branch: https://code.launchpad.net/~brandontschaefer/libertine/enable-maliit >From test out gedit on a libertine branch. Ensure this is with xmir:2:1.17.2-1ubuntu0.1~overlay11. A higher version will fix the focusing of the xmir apps. On a vivid+overlay phone updated with: - Open gedit, ensure the OSK opens. - Lock phone - Attempt to unlock. Expect: Normal greeter with no osk open Result: OSK open over the greeter and the OSK sending input to gedit. ** Affects: unity8 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1589654 Title: OSK can render above the greeter before password prompt Status in unity8 package in Ubuntu: New Bug description: To reproduce, you'll need to compile/install this libertine branch: https://code.launchpad.net/~brandontschaefer/libertine/enable-maliit From test out gedit on a libertine branch. Ensure this is with xmir:2:1.17.2-1ubuntu0.1~overlay11. A higher version will fix the focusing of the xmir apps. On a vivid+overlay phone updated with: - Open gedit, ensure the OSK opens. - Lock phone - Attempt to unlock. Expect: Normal greeter with no osk open Result: OSK open over the greeter and the OSK sending input to gedit. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1589654/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1543351] Re: Add on-screen-keyboard support for Xmir/Libertine apps
** Branch linked: lp:~brandontschaefer/libertine/maliit-server-proxy -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1543351 Title: Add on-screen-keyboard support for Xmir/Libertine apps Status in Canonical Pocket Desktop: New Status in Libertine: In Progress Status in Ubuntu UX: New Status in unity8 package in Ubuntu: Incomplete Status in xorg-server package in Ubuntu: Incomplete Bug description: From perspective of product management - this is currently not a requirement, just want to capture it for future we currently can't interact with puritine apps relying on the OSK to add this feature in where text-box selection on an xapp results in triggering the osk, in unity8 would be a very large/complicated effort. However, with a manual capability to trigger the OSK this could be achieved. For design team one idea was to add a show/hide button for the OSK. realizing this may be undesirable to add another indicator item - a follow-on idea might be to add an alpha button in the corner of the xmir-root window (the window that holds any xapp at the moment) this way the button presence would only be limited to the Xapp interaction. To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1543351/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1570698] Re: CI failure in TestClientInput.receives_one_touch_event_per_frame
Ive been getting this as well here: https://code.launchpad.net/~brandontschaefer/mir/mir-event-capnproto/+merge/290760 Nice to see i might not be 100% my fault. Thought the fix should be moving away from real time for the test. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1570698 Title: CI failure in TestClientInput.receives_one_touch_event_per_frame Status in Mir: Triaged Status in mir package in Ubuntu: Invalid Bug description: https://mir-jenkins.ubuntu.com/job/build-2-binpkg- mir/arch=i386,compiler=gcc,platform=mesa,release=xenial/863/consoleFull 02:44:41 11: [ RUN ] TestClientInput.receives_one_touch_event_per_frame 02:44:41 11: [2016-04-15 02:44:41.425619] mirserver: Starting 02:44:41 11: [2016-04-15 02:44:41.430805] mirserver: Selected driver: dummy (version 0.22.0) 02:44:41 11: [2016-04-15 02:44:41.499565] mirserver: Using software cursor 02:44:41 11: [2016-04-15 02:44:41.509983] mirserver: Initial display configuration: 02:44:41 11: [2016-04-15 02:44:41.510510] mirserver: 1.1: VGA 0.0" 0x0mm 02:44:41 11: [2016-04-15 02:44:41.510809] mirserver: Current mode 1000x800 60.00Hz 02:44:41 11: [2016-04-15 02:44:41.511107] mirserver: Preferred mode 1000x800 60.00Hz 02:44:41 11: [2016-04-15 02:44:41.511379] mirserver: Logical position +0+0 02:44:41 11: [2016-04-15 02:44:41.565602] mirserver: Selected input driver: mir:stub-input (version: 0.22.0) 02:44:41 11: [2016-04-15 02:44:41.568428] mirserver: Mir version 0.22.0 02:44:44 11: 02:44:44 11: GMOCK WARNING: 02:44:44 11: Uninteresting mock function call - returning directly. 02:44:44 11: Function call: handle_input(touch_event(when=2480338825735318 (133.240680ms ago), from=3, touch = {{id=1, action=change, tool=finger, x=7.68054, y=12.2889, pressure=1, major=5, minor=8, size=8}, modifiers=1)) 02:44:44 11: Stack trace: 02:44:44 11: /��BUILDDIR��/mir-0.22.0+xenial881bzr3443/tests/acceptance-tests/test_client_input.cpp:639: Failure 02:44:44 11: The difference between 1.0f and client_input_events_per_frame is 0.2400953674316, which exceeds 0.2f, where 02:44:44 11: 1.0f evaluates to 1, 02:44:44 11: client_input_events_per_frame evaluates to 0.7599046325684, and 02:44:44 11: 0.2f evaluates to 0.2000298023224. 02:44:44 11: 02:44:44 11: GMOCK WARNING: 02:44:44 11: Uninteresting mock function call - returning directly. 02:44:45 11: Function call: handle_input(touch_event(when=2480339119018976 (10.576963ms ago), from=3, touch = {{id=1, action=change, tool=finger, x=7.80214, y=12.4834, pressure=1, major=5, minor=8, size=8}, modifiers=1)) 02:44:45 11: Stack trace: 02:44:45 11: 02:44:45 11: GMOCK WARNING: 02:44:45 11: Uninteresting mock function call - returning directly. 02:44:45 11: Function call: handle_input(touch_event(when=2480339135968128 (14.812916ms ago), from=3, touch = {{id=1, action=change, tool=finger, x=7.84436, y=12.551, pressure=1, major=5, minor=8, size=8}, modifiers=1)) 02:44:45 11: Stack trace: 02:44:45 11: [2016-04-15 02:44:45.407565] mirserver: Stopping 02:44:45 11: [ FAILED ] TestClientInput.receives_one_touch_event_per_frame (4083 ms) To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1570698/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1572653] Re: keyboard does not show up on xenial
And QT_DEVICE_PIXEL_RATIO is empty for me as well -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to ubuntu-keyboard in Ubuntu. https://bugs.launchpad.net/bugs/1572653 Title: keyboard does not show up on xenial Status in ubuntu-keyboard package in Ubuntu: Confirmed Bug description: Expected behaviour: Install ubuntu-keyboard, run maliit-server, click on place to enter text -> keyboard shows up. What happens: Running maliit-server after installing ubuntu-keyboard-english in terminal shows following error: WARNING: void MIMPluginManagerPrivate::_q_setActiveSubView(const QString&, Maliit::HandlerState) "libubuntu-keyboard-plugin.so" "en" is not enabled Clicking on fields for entering text, does not cause the keyboard to show up. What I tried so far: export QT_IM_MODULE=Maliit export GTK_IM_MODULE=Maliit and gconftool-2 -s --type list --list-type string /maliit/onscreen/enabled "[llibubuntu-keyboard-plugin.so,en_gb]" gconftool-2 -s --type list --list-type string /maliit/onscreen/active "[libubuntu-keyboard-plugin.so,en_gb]" according to https://github.com/maliit/framework and https://github.com/maliit/plugins but it still won't show up. ProblemType: Bug DistroRelease: Ubuntu 16.04 Package: ubuntu-keyboard 0.99.trunk.phablet2+16.04.20160226.1-0ubuntu1 ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6 Uname: Linux 4.4.0-21-generic x86_64 ApportVersion: 2.20.1-0ubuntu2 Architecture: amd64 CurrentDesktop: Unity Date: Wed Apr 20 18:03:03 2016 InstallationDate: Installed on 2016-04-03 (16 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323) ProcEnviron: LANGUAGE=de_DE PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=de_DE.UTF-8 SHELL=/bin/bash SourcePackage: ubuntu-keyboard UpgradeStatus: No upgrade log present (probably fresh install) modified.conffile..etc.xdg.maliit.org.server.conf: [modified] mtime.conffile..etc.xdg.maliit.org.server.conf: 2016-04-20T17:40:50.856195 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1572653/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1572653] Re: keyboard does not show up on xenial
I can reproduce this same issue, getting it to show up but when attempting to click on the keys it hides (its not getting any input events it would seem) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to ubuntu-keyboard in Ubuntu. https://bugs.launchpad.net/bugs/1572653 Title: keyboard does not show up on xenial Status in ubuntu-keyboard package in Ubuntu: Confirmed Bug description: Expected behaviour: Install ubuntu-keyboard, run maliit-server, click on place to enter text -> keyboard shows up. What happens: Running maliit-server after installing ubuntu-keyboard-english in terminal shows following error: WARNING: void MIMPluginManagerPrivate::_q_setActiveSubView(const QString&, Maliit::HandlerState) "libubuntu-keyboard-plugin.so" "en" is not enabled Clicking on fields for entering text, does not cause the keyboard to show up. What I tried so far: export QT_IM_MODULE=Maliit export GTK_IM_MODULE=Maliit and gconftool-2 -s --type list --list-type string /maliit/onscreen/enabled "[llibubuntu-keyboard-plugin.so,en_gb]" gconftool-2 -s --type list --list-type string /maliit/onscreen/active "[libubuntu-keyboard-plugin.so,en_gb]" according to https://github.com/maliit/framework and https://github.com/maliit/plugins but it still won't show up. ProblemType: Bug DistroRelease: Ubuntu 16.04 Package: ubuntu-keyboard 0.99.trunk.phablet2+16.04.20160226.1-0ubuntu1 ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6 Uname: Linux 4.4.0-21-generic x86_64 ApportVersion: 2.20.1-0ubuntu2 Architecture: amd64 CurrentDesktop: Unity Date: Wed Apr 20 18:03:03 2016 InstallationDate: Installed on 2016-04-03 (16 days ago) InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Beta amd64 (20160323) ProcEnviron: LANGUAGE=de_DE PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=de_DE.UTF-8 SHELL=/bin/bash SourcePackage: ubuntu-keyboard UpgradeStatus: No upgrade log present (probably fresh install) modified.conffile..etc.xdg.maliit.org.server.conf: [modified] mtime.conffile..etc.xdg.maliit.org.server.conf: 2016-04-20T17:40:50.856195 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1572653/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Black screen: Mir hangs and then crashes on startup/login due to reading from /dev/random
** Branch linked: lp:~mir-team/mir/lazy-cookie-secret-creation -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Black screen: Mir hangs and then crashes on startup/login due to reading from /dev/random Status in Mir: In Progress Status in Mir 0.19 series: Won't Fix Status in Mir 0.20 series: Won't Fix Status in Unity System Compositor: Fix Committed Status in mir package in Ubuntu: Triaged Status in unity-system-compositor package in Ubuntu: Fix Released Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Before logging in, move the mouse around lots, for at least 20 seconds. And after logging in, while you're looking at a black screen, move the mouse around furiously. This will populate the kernel entropy pool sufficiently to avoid the hang and crash. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Black screen: Mir hangs and then crashes on login due to reading from /dev/random
** Branch linked: lp:~mir-team/unity-system-compositor/cookie-entropy- workaround ** Changed in: unity-system-compositor Status: In Progress => Fix Committed ** Changed in: mir Status: In Progress => Triaged -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Black screen: Mir hangs and then crashes on login due to reading from /dev/random Status in Mir: Triaged Status in Unity System Compositor: Fix Committed Status in mir package in Ubuntu: Confirmed Status in unity-system-compositor package in Ubuntu: New Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Before logging in, move the mouse around lots, for at least 20 seconds. And after logging in, while you're looking at a black screen, move the mouse around furiously. This will populate the kernel entropy pool sufficiently to avoid the hang and crash. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Mir hangs and then crashes due to reading from /dev/random
** Branch linked: lp:~mir-team/mir/handle-mis-shaped-cookies -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Mir hangs and then crashes due to reading from /dev/random Status in Mir: In Progress Status in Unity System Compositor: In Progress Status in mir package in Ubuntu: Confirmed Status in unity-system-compositor package in Ubuntu: New Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Before logging in, move the mouse around lots, for at least 20 seconds. And after logging in, while you're looking at a black screen, move the mouse around furiously. This will populate the kernel entropy pool sufficiently to avoid the hang and crash. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Mir hangs and then crashes due to reading from /dev/random
** Changed in: unity-system-compositor Status: Fix Committed => In Progress ** Changed in: mir Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Mir hangs and then crashes due to reading from /dev/random Status in Mir: In Progress Status in Unity System Compositor: In Progress Status in mir package in Ubuntu: Confirmed Status in unity-system-compositor package in Ubuntu: New Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Before logging in, move the mouse around lots, for at least 20 seconds. And after logging in, while you're looking at a black screen, move the mouse around furiously. This will populate the kernel entropy pool sufficiently to avoid the hang and crash. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Mir blocks at system boot due to reading from /dev/random
** Changed in: unity-system-compositor Status: Fix Committed => In Progress ** Changed in: unity-system-compositor Milestone: 0.4.0 => 0.4.1 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Mir blocks at system boot due to reading from /dev/random Status in Mir: Confirmed Status in Unity System Compositor: In Progress Status in mir package in Ubuntu: New Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Play with the trackpad at bootup to generate entropy. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1536662] Re: [regression] Mir blocks at system boot due to reading from /dev/random
** Also affects: unity-system-compositor Importance: Undecided Status: New ** Changed in: unity-system-compositor Status: New => In Progress ** Changed in: mir Status: In Progress => Confirmed ** Changed in: mir Importance: High => Low ** Changed in: unity-system-compositor Importance: Undecided => High ** Changed in: mir Importance: Low => Medium ** Changed in: unity-system-compositor Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Branch linked: lp:~mir-team/unity-system-compositor/override-cookie- authority -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1536662 Title: [regression] Mir blocks at system boot due to reading from /dev/random Status in Mir: Confirmed Status in Unity System Compositor: In Progress Status in mir package in Ubuntu: New Bug description: cookie_factory attempts to read data from /dev/random at boot, and blocks until it has enough random data or timesout after 30 seconds. How I can reproduce 1. Run the Unity8 greeter as a mir server 2. Reboot Expected behavior: Greeter is displayed as mir && USC run happily Actual behavior: Mir throws an exception after 30 seconds Work-around: Play with the trackpad at bootup to generate entropy. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1536662/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1535397] Re: Implement support for QWindow::visibility set to Automatic
** Changed in: mir Milestone: None => 0.19.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to camera-app in Ubuntu. https://bugs.launchpad.net/bugs/1535397 Title: Implement support for QWindow::visibility set to Automatic Status in The Avila project: New Status in Canonical System Image: Triaged Status in canonical-pocket-desktop: New Status in Mir: New Status in camera-app package in Ubuntu: New Status in gallery-app package in Ubuntu: New Status in mediaplayer-app package in Ubuntu: New Status in qtubuntu package in Ubuntu: Triaged Status in unity8 package in Ubuntu: Triaged Bug description: We need to support windows setting their visibility to "Automatic", when in Staged mode the window should be fullscreen, whereas in windowed, it should be a normal window. Qt API: http://doc.qt.io/qt-5/qwindow.html#Visibility-enum To manage notifications about this bug go to: https://bugs.launchpad.net/avila/+bug/1535397/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1528384] Re: unity-system-compositor crashed with std::runtime_error in mir::compositor::CompositingFunctor::wait_until_started()
** Changed in: mir Milestone: None => 0.19.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1528384 Title: unity-system-compositor crashed with std::runtime_error in mir::compositor::CompositingFunctor::wait_until_started() Status in Canonical System Image: Confirmed Status in Mir: New Status in Unity System Compositor: New Status in mir package in Ubuntu: New Status in unity-system-compositor package in Ubuntu: New Bug description: Top crash over past week (ww02) on errors.u.c for rc-proposed channels. Started with u-s-c 0.2.0+15.04.20151216.1-0ubuntu1 The Ubuntu Error Tracker has been receiving reports about a problem regarding unity-system-compositor. This problem was most recently seen with version 0.2.0+15.04.20151216.1-0ubuntu1, the problem page at https://errors.ubuntu.com/problem/7bcfcf599b35b264c0be45d5290ad9ae3c50adcf contains more details. To manage notifications about this bug go to: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1528384/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1262116] Re: Nested servers prevent overlays or fullscreen bypass from working
** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1262116 Title: Nested servers prevent overlays or fullscreen bypass from working Status in Mir: In Progress Status in mir package in Ubuntu: New Bug description: Nested servers prevent fullscreen bypass from working. This would explain why nesting fullscreen clients is measurably slower than non-nesting: Direct (bypass) 2600 Direct (bypass off) 2400 Nested (bypass) 2450 Nested (bypass off) 2330 To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1262116/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1476201] Re: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters instead of scaling up to triple buffers.
** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1476201 Title: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters instead of scaling up to triple buffers. Status in Mir: In Progress Status in QtMir: Opinion Status in mir package in Ubuntu: Invalid Status in qtmir package in Ubuntu: Opinion Bug description: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters... [1437388267.960199] perf: Scopes: 37.69 FPS, render time 17.79ms, buffer lag 34.87ms (2 buffers) [1437388268.985012] perf: Scopes: 30.27 FPS, render time 25.22ms, buffer lag 40.29ms (2 buffers) [1437388269.993894] perf: Scopes: 31.74 FPS, render time 23.42ms, buffer lag 40.46ms (2 buffers) [1437388271.002470] perf: Scopes: 36.70 FPS, render time 19.13ms, buffer lag 35.59ms (2 buffers) [1437388272.021942] perf: Scopes: 44.16 FPS, render time 15.96ms, buffer lag 29.12ms (2 buffers) [1437388273.043734] perf: Scopes: 40.15 FPS, render time 17.85ms, buffer lag 31.90ms (2 buffers) whereas forcing triple buffers it runs more smoothly: [1437389981.872839] perf: Scopes: 57.71 FPS, render time 13.86ms, buffer lag 38.31ms (3 buffers) [1437389982.877556] perf: Scopes: 56.77 FPS, render time 15.72ms, buffer lag 37.31ms (3 buffers) [1437389983.887702] perf: Scopes: 57.42 FPS, render time 13.53ms, buffer lag 38.76ms (3 buffers) [1437389984.894372] perf: Scopes: 55.66 FPS, render time 16.02ms, buffer lag 38.12ms (3 buffers) [1437389985.912328] perf: Scopes: 60.96 FPS, render time 13.72ms, buffer lag 34.99ms (3 buffers) [1437389986.929857] perf: Scopes: 59.98 FPS, render time 14.49ms, buffer lag 35.67ms (3 buffers) You can see that unity8-dash is right on the edge here. Surprisingly the problem is not detectable if you keep your finger on the screen. Then the dash actually renders faster. The problem only seems to happen with inertial scrolling; when you fling the surface and lift your finger off. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1476201/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1495974] Re: [android] renogotiation of pixel formats is not supported, leading to potential stride/pixelformat issues
** Changed in: mir Milestone: 0.19.0 => 0.20.0 ** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1495974 Title: [android] renogotiation of pixel formats is not supported, leading to potential stride/pixelformat issues Status in Mir: Confirmed Status in mir package in Ubuntu: New Bug description: Some drivers will call android's perform hook with: NATIVE_WINDOW_SET_BUFFERS_FORMAT. In the case that the pixel formats are the same depth, we accommodate this by just setting the format to the newly-requested format. (ie, mir_pixel_format_rgbx_ to mir_pixel_format_rgba_ is accommodated, as no reallocation is needed). However, we've encountered a device that will try to set the format to HAL_PIXEL_FORMAT_RGB_888 when mir has selected HAL_PIXEL_FORMAT_RGBX_. Since we're going from a 32 bit format to a 24 bit format, the stride information becomes incorrect. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1495974/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1488232] Re: server shutdown failure (segfault)
** Changed in: mir Milestone: 0.19.0 => 0.20.0 ** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1488232 Title: server shutdown failure (segfault) Status in Mir: Confirmed Status in mir package in Ubuntu: New Bug description: Occasional shutdown segfault seen: Program received signal SIGSEGV, Segmentation fault. 0xb6e3f3c6 in ?? () from /lib/arm-linux-gnueabihf/libc.so.6 (gdb) bt #0 0xb6e3f3c6 in ?? () from /lib/arm-linux-gnueabihf/libc.so.6 #1 0xb6b5f94e in __gnu_cxx::new_allocator, (__gnu_cxx::_Lock_policy)2> >::deallocate (this=, __p=) at /usr/arm-linux-gnueabihf/include/c++/4.9.2/ext/new_allocator.h:110 Backtrace stopped: previous frame inner to this frame (corrupt stack?) Happens more often when a client is actively sending messages (eg, swapping rapidly), and the server gets a SIGTERM. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1488232/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1262116] Re: Nested servers prevent overlays or fullscreen bypass from working
** Changed in: mir Milestone: 0.19.0 => 0.20.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1262116 Title: Nested servers prevent overlays or fullscreen bypass from working Status in Mir: In Progress Status in mir package in Ubuntu: New Bug description: Nested servers prevent fullscreen bypass from working. This would explain why nesting fullscreen clients is measurably slower than non-nesting: Direct (bypass) 2600 Direct (bypass off) 2400 Nested (bypass) 2450 Nested (bypass off) 2330 To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1262116/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1476201] Re: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters instead of scaling up to triple buffers.
** Changed in: mir Milestone: 0.19.0 => 0.20.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1476201 Title: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters instead of scaling up to triple buffers. Status in Mir: In Progress Status in QtMir: Opinion Status in mir package in Ubuntu: Invalid Status in qtmir package in Ubuntu: Opinion Bug description: Dynamic double buffering fails to detect inertial dash scrolling as slow; and stutters... [1437388267.960199] perf: Scopes: 37.69 FPS, render time 17.79ms, buffer lag 34.87ms (2 buffers) [1437388268.985012] perf: Scopes: 30.27 FPS, render time 25.22ms, buffer lag 40.29ms (2 buffers) [1437388269.993894] perf: Scopes: 31.74 FPS, render time 23.42ms, buffer lag 40.46ms (2 buffers) [1437388271.002470] perf: Scopes: 36.70 FPS, render time 19.13ms, buffer lag 35.59ms (2 buffers) [1437388272.021942] perf: Scopes: 44.16 FPS, render time 15.96ms, buffer lag 29.12ms (2 buffers) [1437388273.043734] perf: Scopes: 40.15 FPS, render time 17.85ms, buffer lag 31.90ms (2 buffers) whereas forcing triple buffers it runs more smoothly: [1437389981.872839] perf: Scopes: 57.71 FPS, render time 13.86ms, buffer lag 38.31ms (3 buffers) [1437389982.877556] perf: Scopes: 56.77 FPS, render time 15.72ms, buffer lag 37.31ms (3 buffers) [1437389983.887702] perf: Scopes: 57.42 FPS, render time 13.53ms, buffer lag 38.76ms (3 buffers) [1437389984.894372] perf: Scopes: 55.66 FPS, render time 16.02ms, buffer lag 38.12ms (3 buffers) [1437389985.912328] perf: Scopes: 60.96 FPS, render time 13.72ms, buffer lag 34.99ms (3 buffers) [1437389986.929857] perf: Scopes: 59.98 FPS, render time 14.49ms, buffer lag 35.67ms (3 buffers) You can see that unity8-dash is right on the edge here. Surprisingly the problem is not detectable if you keep your finger on the screen. Then the dash actually renders faster. The problem only seems to happen with inertial scrolling; when you fling the surface and lift your finger off. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1476201/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1517205] Re: egl_demo_client_flicker has graphics corruption on android
** Changed in: mir Milestone: 0.19.0 => 0.20.0 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1517205 Title: egl_demo_client_flicker has graphics corruption on android Status in Mir: In Progress Status in mir package in Ubuntu: New Bug description: Investigation of lp: #1406725 yielded two different problems, this is the second problem that affected mir_demo_client_flicker most heavily. When running mir_demo_client_flicker against "mir_demo_server --disable-overlays true", you could see cache-line artifacts, as well as an occasional tile-render-gpu artifact displayed on screen. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1517205/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1493013] Re: CI test failure (segmentation fault) in ServerShutdown.server_can_shut_down_when_clients_are_blocked
** Changed in: mir Milestone: 0.19.0 => 0.20.0 ** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1493013 Title: CI test failure (segmentation fault) in ServerShutdown.server_can_shut_down_when_clients_are_blocked Status in Mir: New Status in mir package in Ubuntu: New Bug description: As seen in https://jenkins.qa.ubuntu.com/job/mir-clang-vivid- amd64-build/2749/consoleFull : 7: [ RUN ] ServerShutdown.server_can_shut_down_when_clients_are_blocked 7: [1441614824.310851] mirplatform: Found graphics driver: mesa-kms 7: [1441614824.310869] mirplatform: Found graphics driver: mesa-x11 7: [1441614824.310882] mirplatform: Found graphics driver: android 7: [1441614824.310923] mirplatform: Found graphics driver: dummy 7: [1441614824.314576] mirserver: Initial display configuration: 7: [1441614824.314600] mirserver: 1.1: VGA 0.0" 0x0mm 7: [1441614824.314609] mirserver: Current mode 1600x1600 60.00Hz 7: [1441614824.314614] mirserver: Preferred mode 1600x1600 60.00Hz 7: [1441614824.314618] mirserver: Logical position +0+0 7: [1441614824.314846] mirserver: Mir version 0.16.0 7: [1441614824.336046] MirSurfaceAPI: Caught exception at client library boundary (in mir_surface_release): /mir/src/client/rpc/stream_socket_transport.cpp(168): Throw in function virtual void mir::client::rpc::StreamSocketTransport::send_message(const std::vector &, const std::vector &) 7: Dynamic exception type: N5boost16exception_detail10clone_implINS0_19error_info_injectorIN3mir25socket_disconnected_errorE 7: std::exception::what: Failed to send message to server: Broken pipe 7: 32, "Broken pipe" 7: [1441614824.336149] MirConnectionAPI: Caught exception at client library boundary (in release): /mir/src/client/rpc/stream_socket_transport.cpp(168): Throw in function virtual void mir::client::rpc::StreamSocketTransport::send_message(const std::vector &, const std::vector &) 7: Dynamic exception type: N5boost16exception_detail10clone_implINS0_19error_info_injectorIN3mir25socket_disconnected_errorE 7: std::exception::what: Failed to send message to server: Broken pipe 7: 32, "Broken pipe" 7: /mir/tools/detect_fd_leaks.bash: line 84: 503 Segmentation fault (core dumped) $@ 2>&1 7:504 Done| detect_fd_leaks 7/9 Test #7: mir_integration_tests .***Failed2.98 sec To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1493013/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1497921] Re: /usr/sbin/unity-system-compositor:unity-system-compositor: pthread_mutex_lock.c:81: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' failed.
** Changed in: mir Milestone: 0.19.0 => 0.20.0 ** Changed in: mir Milestone: 0.20.0 => None -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1497921 Title: /usr/sbin/unity-system-compositor:unity-system-compositor: pthread_mutex_lock.c:81: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' failed. Status in Mir: New Status in Unity System Compositor: New Status in mir package in Ubuntu: New Status in unity-system-compositor package in Ubuntu: New Bug description: The Ubuntu Error Tracker has been receiving reports about a problem regarding unity-system-compositor. This problem was most recently seen with version 0.1.0+15.10.20150728.1-0ubuntu1, the problem page at https://errors.ubuntu.com/problem/d63407ea5739544791989a0588ddf5b1771a8053 contains more details. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1497921/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1205713] Re: unable to type Greek characters to the dash
** Changed in: nux/2.0 Status: In Progress => Triaged -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to nux in Ubuntu. https://bugs.launchpad.net/bugs/1205713 Title: unable to type Greek characters to the dash Status in Nux: Fix Released Status in Nux 2.0 series: Triaged Status in Unity: Invalid Status in nux package in Ubuntu: Fix Released Status in unity package in Ubuntu: Invalid Bug description: On Ubuntu 13.10 Saucy, when i switch to the Greek layout, i cannot type any greek character to the Dash's search field. The pointer does not move at all, which means that it is not just an appearance problem, but there is no input at all of the character. The same applies when i try to use the "Execute command" field that appears when pressing the Alt+F2 keyboard shortcut. This has only to do wiith greek characters, as other characters that are not related to the keyboard layout (such as numerical characters, dots, comas, hyphens etc) can be typed normally regardless of the keyboard layout setting. ** Workaround ** In the terminal: im-config -n xim Then reboot! ProblemType: BugDistroRelease: Ubuntu 13.10 Package: unity 7.0.2+13.10.20130723.1-0ubuntu1 ProcVersionSignature: Ubuntu 3.10.0-5.15-generic 3.10.2 Uname: Linux 3.10.0-5-generic x86_64 ApportVersion: 2.11-0ubuntu1 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' Date: Sat Jul 27 23:02:46 2013 InstallationDate: Installed on 2013-07-12 (15 days ago) InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Alpha amd64 (20130711) MarkForUpload: TrueSourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/nux/+bug/1205713/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1458952] Re: Memory leak in InputMethodIBus
** Changed in: nux (Ubuntu) Status: In Progress => Triaged ** Changed in: nux (Ubuntu) Status: Triaged => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to nux in Ubuntu. https://bugs.launchpad.net/bugs/1458952 Title: Memory leak in InputMethodIBus Status in Nux: Fix Released Status in Nux trusty series: Triaged Status in nux package in Ubuntu: Fix Released Bug description: There are two memory leaks in InputMethodIBus. One is with releasing the ibus_bus and the other being the keybinding. To manage notifications about this bug go to: https://bugs.launchpad.net/nux/+bug/1458952/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1513225] [NEW] libmircookie-dev does not depend on nettle-dev in debian/control
Public bug reported: libmircookie-dev needs to depend on nettle-dev in debian/control ** Affects: mir Importance: High Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Affects: mir (Ubuntu) Importance: High Status: Triaged ** Changed in: mir Status: New => In Progress ** Changed in: mir Importance: Undecided => High ** Branch linked: lp:~brandontschaefer/mir/libmircookie-dev-needs-nettle ** Changed in: mir Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir (Ubuntu) Status: New => Triaged ** Changed in: mir (Ubuntu) Importance: Undecided => High -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1513225 Title: libmircookie-dev does not depend on nettle-dev in debian/control Status in Mir: In Progress Status in mir package in Ubuntu: Triaged Bug description: libmircookie-dev needs to depend on nettle-dev in debian/control To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1513225/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1498829] Re: tests do not compile without precompiled headers
Any way to add this to a CI run? Would be nice to automate checking we are able to compile with out pre compiled headers -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1498829 Title: tests do not compile without precompiled headers Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: With -DMIR_USE_PRECOMPILED_HEADERS=OFF $ make -j6 -k 2>&1 | grep " \*\*\* " make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/compositor/test_queueing_schedule.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/compositor/test_dropping_schedule.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_surface_specification.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_client_scaling.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_surface_morphing.cpp.o] Error 1 make[1]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/all] Error 2 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/client/test_connection_resource_map.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/test_input_event.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/evdev/test_evdev_device_detection.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/dispatch/test_readable_fd.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/graphics/mesa/x11/test_display.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/test_x11_platform.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/graphics/mesa/x11/test_platform.cpp.o] Error 1 To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1498829/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1498829] Re: tests do not compile without precompiled headers
** Changed in: mir Status: New => In Progress ** Changed in: mir Importance: Undecided => Low ** Changed in: mir Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir (Ubuntu) Status: New => In Progress ** Changed in: mir (Ubuntu) Importance: Undecided => Low ** Changed in: mir (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1498829 Title: tests do not compile without precompiled headers Status in Mir: In Progress Status in mir package in Ubuntu: In Progress Bug description: With -DMIR_USE_PRECOMPILED_HEADERS=OFF $ make -j6 -k 2>&1 | grep " \*\*\* " make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/compositor/test_queueing_schedule.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/compositor/test_dropping_schedule.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_surface_specification.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_client_scaling.cpp.o] Error 1 make[2]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/test_surface_morphing.cpp.o] Error 1 make[1]: *** [tests/acceptance-tests/CMakeFiles/mir_acceptance_tests.dir/all] Error 2 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/client/test_connection_resource_map.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/test_input_event.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/evdev/test_evdev_device_detection.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/dispatch/test_readable_fd.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/graphics/mesa/x11/test_display.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/input/test_x11_platform.cpp.o] Error 1 make[2]: *** [tests/unit-tests/CMakeFiles/mir_unit_tests.dir/graphics/mesa/x11/test_platform.cpp.o] Error 1 To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1498829/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1487197] Re: Intermittent test failure BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance
** Description changed: CI run failure + + [ RUN ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0 + /tmp/buildd/mir-0.15.0bzr2850pkg0wily779/tests/unit-tests/compositor/test_buffer_queue.cpp:1592: Failure + Value of: buffers_acquired.size() + Expected: is equal to 2 + Actual: 3 (of type unsigned long) + [ FAILED ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0, where GetParam() = 3 (405 ms) ** Description changed: - CI run failure + CI run failure in this branch: + https://code.launchpad.net/~brandontschaefer/mir/msg-auth-code-field-added/+merge/268383 + + Though this branch doesnt touch anything around those parts, so most + likely a separate intermittent failure. [ RUN ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0 /tmp/buildd/mir-0.15.0bzr2850pkg0wily779/tests/unit-tests/compositor/test_buffer_queue.cpp:1592: Failure Value of: buffers_acquired.size() Expected: is equal to 2 Actual: 3 (of type unsigned long) [ FAILED ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0, where GetParam() = 3 (405 ms) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1487197 Title: Intermittent test failure BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance Status in Mir: New Status in mir package in Ubuntu: New Bug description: CI run failure in this branch: https://code.launchpad.net/~brandontschaefer/mir/msg-auth-code-field-added/+merge/268383 Though this branch doesnt touch anything around those parts, so most likely a separate intermittent failure. [ RUN ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0 /tmp/buildd/mir-0.15.0bzr2850pkg0wily779/tests/unit-tests/compositor/test_buffer_queue.cpp:1592: Failure Value of: buffers_acquired.size() Expected: is equal to 2 Actual: 3 (of type unsigned long) [ FAILED ] BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance/0, where GetParam() = 3 (405 ms) To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1487197/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1487197] [NEW] Intermittent test failure BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance
Public bug reported: CI run failure ** Affects: mir Importance: Medium Status: New ** Affects: mir (Ubuntu) Importance: Medium Status: New ** Also affects: mir (Ubuntu) Importance: Undecided Status: New ** Changed in: mir Importance: Undecided => Medium ** Changed in: mir (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1487197 Title: Intermittent test failure BufferQueue/WithThreeOrMoreBuffers.queue_size_scales_with_client_performance Status in Mir: New Status in mir package in Ubuntu: New Bug description: CI run failure To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1487197/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1276322] Re: [enhancement] Mir lacks relative mouse support
Yup ran into that while testing. Yeah if its fullscreen it should work :). Still trying to get steam working again! -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1276322 Title: [enhancement] Mir lacks relative mouse support Status in Mir: Fix Committed Status in mir package in Ubuntu: Triaged Bug description: Mir lacks relative mouse support, as well as a way to warp the mouse. This is a problem when it comes to SDL as quite a few games depend on these features. SDL bug report: https://bugzilla.libsdl.org/show_bug.cgi?id=2380 This is the only thing that is blocking full SDL Mir support. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1276322/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1397375] Re: [enhancement] need fd (file descriptor) and dispatch function
The work around I have for this is to create your own event queue, the working example i have now: https://github.com/glfw/glfw/blob/master/src/mir_window.c The only difference to move to mir events 2.0 is to instead of memcpy the struct of the sizeof(MirEvent) is to use mir_event_ref to get a copy of the reference of the event. Then just use a mutex when using the queue. Works quite well atm. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1397375 Title: [enhancement] need fd (file descriptor) and dispatch function Status in Mir: Triaged Status in mir package in Ubuntu: Triaged Bug description: A long-standing request only ever made in person (I think) so let's write it down: We need a way to get a pollable object out of the mir client library and a dispatch function to call so that we can integrate mir into the mainloop of the toolkit that is trying to use it. The thread-based delivery mechanism is inconvenient for most toolkits. The fd would ideally be the mir socket itself, but it could also be an eventfd that gets signalled from another thread. In the name of efficiency we should try to cut out the extra threads entirely, though. The dispatch function would dispatch events to the registered delegate, directly from the thread in which it was called. Alternatively (or perhaps additionally), we could also use a function to manually dequeue events. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1397375/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1460149] Re: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7.
Awesome thank you daniel :). This will land in 0.15? Sooo it'll be a bit hard to get *in* until 0.15 is released, since atm im having to do a pretty large ifndef for 0.13 vs 14.04 mir to push changes upstream. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1460149 Title: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7. Status in Mir: In Progress Status in libsdl2 package in Ubuntu: Triaged Status in mir package in Ubuntu: Triaged Status in unity8 package in Ubuntu: Invalid Bug description: https://github.com/pseuudonym404/neverball-touch/issues/2 Install neverball or neverputt from the click store:- https://uappexplorer.com/app/neverputt.lb https://uappexplorer.com/app/neverball.lb Note they work fine on krillin and arale, however there's corruption making the games unusable on Nexus 4 and Nexus 7. Simpler test cases are provided at the above linked github issue. Attaching them to this bug for persistence. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1460149/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1460149] Re: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7.
AFAIK SDL2 should support 24/32 bit colors... I do find that strange since on X11: INFO: SDL_GL_RED_SIZE: requested 5, got 8 INFO: SDL_GL_GREEN_SIZE: requested 5, got 8 INFO: SDL_GL_BLUE_SIZE: requested 5, got 8 INFO: SDL_GL_DEPTH_SIZE: requested 16, got 24 Im not 100% sure why its failing to get the correct requested size, or rather why mir is not requesting a 24/32bit color. Ill take a look at this! Hopefully that turns out to be the issue. As it seems by default to request a 15/16 bi color http://hg.libsdl.org/SDL/file/704a0bfecf75/src/video/SDL_egl.c#l242 This is where its getting the gl_config (requested size) then setting the bits internal when it create the egl config. (Also note this is not the same code X11 runs! Since it wont be using EGL) So it looks like mir is getting the correct requested size (for the most parts a 6 instead of a 5). The main issue is why is it requesting a 5? This could be my fault here for not manually forcing the 24/32 bit or the clients fault for not forcing it. Ill take a deeper look. Cheers -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1460149 Title: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7. Status in Mir: Invalid Status in libsdl2 package in Ubuntu: Triaged Status in mir package in Ubuntu: Invalid Status in unity8 package in Ubuntu: Invalid Bug description: https://github.com/pseuudonym404/neverball-touch/issues/2 Install neverball or neverputt from the click store:- https://uappexplorer.com/app/neverputt.lb https://uappexplorer.com/app/neverball.lb Note they work fine on krillin and arale, however there's corruption making the games unusable on Nexus 4 and Nexus 7. Simpler test cases are provided at the above linked github issue. Attaching them to this bug for persistence. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1460149/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1460149] Re: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7.
** Changed in: libsdl2 (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1460149 Title: Visible corruption in SDL apps (Neverball, Neverputt) on Nexus 4 / Nexus 7. Status in Mir: Invalid Status in libsdl2 package in Ubuntu: Triaged Status in mir package in Ubuntu: Invalid Status in unity8 package in Ubuntu: Invalid Bug description: https://github.com/pseuudonym404/neverball-touch/issues/2 Install neverball or neverputt from the click store:- https://uappexplorer.com/app/neverputt.lb https://uappexplorer.com/app/neverball.lb Note they work fine on krillin and arale, however there's corruption making the games unusable on Nexus 4 and Nexus 7. Simpler test cases are provided at the above linked github issue. Attaching them to this bug for persistence. To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1460149/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1469819] Re: Ubuntu SDK fails to work when a dbus session is not present.
** Description changed: When attempting to run the Ubuntu SDK when there is no dbus session daemon running causes the SDK to fail. The first assumption seems to be in the clipboard. With no dbus-session: http://paste.ubuntu.com/11794311/ With a dbus-session: http://paste.ubuntu.com/11794350/ Which then yields: http://i.imgur.com/wU8NLdm.png + + The QML: + http://paste.ubuntu.com/11794368/ -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to qtubuntu in Ubuntu. https://bugs.launchpad.net/bugs/1469819 Title: Ubuntu SDK fails to work when a dbus session is not present. Status in QT Ubuntu: Triaged Status in qtubuntu package in Ubuntu: Triaged Status in ubuntu-ui-toolkit package in Ubuntu: New Bug description: When attempting to run the Ubuntu SDK when there is no dbus session daemon running causes the SDK to fail. The first assumption seems to be in the clipboard. With no dbus-session: http://paste.ubuntu.com/11794311/ With a dbus-session: http://paste.ubuntu.com/11794350/ Which then yields: http://i.imgur.com/wU8NLdm.png The QML: http://paste.ubuntu.com/11794368/ To manage notifications about this bug go to: https://bugs.launchpad.net/qtubuntu/+bug/1469819/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1469819] [NEW] Ubuntu SDK fails to work when a dbus session is not present.
Public bug reported: When attempting to run the Ubuntu SDK when there is no dbus session daemon running causes the SDK to fail. The first assumption seems to be in the clipboard. With no dbus-session: http://paste.ubuntu.com/11794311/ With a dbus-session: http://paste.ubuntu.com/11794350/ Which then yields: http://i.imgur.com/wU8NLdm.png The QML: http://paste.ubuntu.com/11794368/ ** Affects: qtubuntu Importance: Undecided Status: New ** Affects: qtubuntu (Ubuntu) Importance: Undecided Status: New ** Affects: ubuntu-ui-toolkit (Ubuntu) Importance: Undecided Status: New ** Also affects: qtubuntu (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in Ubuntu. https://bugs.launchpad.net/bugs/1469819 Title: Ubuntu SDK fails to work when a dbus session is not present. Status in QT Ubuntu: New Status in qtubuntu package in Ubuntu: New Status in ubuntu-ui-toolkit package in Ubuntu: New Bug description: When attempting to run the Ubuntu SDK when there is no dbus session daemon running causes the SDK to fail. The first assumption seems to be in the clipboard. With no dbus-session: http://paste.ubuntu.com/11794311/ With a dbus-session: http://paste.ubuntu.com/11794350/ Which then yields: http://i.imgur.com/wU8NLdm.png The QML: http://paste.ubuntu.com/11794368/ To manage notifications about this bug go to: https://bugs.launchpad.net/qtubuntu/+bug/1469819/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1464343] Re: Crash on wily-proposed
Also tested: lp:osmtouch lp:~ubuntu-weather-dev/ubuntu-weather-app/reboot Both crashing the same way, so it looks like its not the app but the qt position ** Also affects: location-service (Ubuntu) Importance: Undecided Status: New ** Changed in: ubuntu-clock-app Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to location-service in Ubuntu. https://bugs.launchpad.net/bugs/1464343 Title: Crash on wily-proposed Status in Clock application for Ubuntu devices: Invalid Status in location-service package in Ubuntu: New Bug description: Hello, So I checked out lp:ubuntu-clock-app mkdir build cd build cmake .. make -j4 make install Then when running the ubuntu-clock-app it crashes in qt position with a 0x0 on this: http://paste.ubuntu.com/11697457/ Output from QML when running: : QML UCDeprecatedTheme: Theme.palette is deprecated. Use ThemeSettings instead. file:///usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/Components/1.2/MainView.qml:124:9: QML AppHeader: Theme.createStyleComponent() is deprecated. Use ThemeSettings instead. file:///usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/Components/Themes/Ambiance/1.2/PageHeadStyle.qml:86:5: QML StyledItem: Theme.createStyleComponent() is deprecated. Use ThemeSettings instead. file:///usr/lib/x86_64-linux-gnu/qt5/qml/Ubuntu/Components/1.2/MainViewBase.qml:35:5: QML StyledItem: Theme.createStyleComponent() is deprecated. Use ThemeSettings instead. : QML UCDeprecatedTheme: Theme.name is deprecated. Use ThemeSettings instead. [New Thread 0x7fffda4f1700 (LWP 17116)] qml: [LOG]: Clock Page loaded file:///home/bschaefer/src/ubuntu-clock-app/app/clock/ClockPage.qml:247:20: Unable to assign [undefined] to QColor Unable to select module, using dummy. Loading module: 'libubuntu_application_api_test.so.2.9.0' To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu-clock-app/+bug/1464343/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1391976] Re: Loading libmircommon.so twice leads to a segfault in libprotobuf.so
This is an issue with SDL2. As with SDL2 it needs to load the OpenGL drivers to check if 3d acceleration is enabled. Once it checks it unloads the library. Then the app starts which needs to load the library again ad seg fault. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to mir in Ubuntu. https://bugs.launchpad.net/bugs/1391976 Title: Loading libmircommon.so twice leads to a segfault in libprotobuf.so Status in Mir: Confirmed Status in mir package in Ubuntu: Confirmed Bug description: Can be reproduced with: load_twice libmircommon.so.1 (or .2) For recent versions of mir use: load_twice libmirclient.so.X (currently .8) load_twice.c: #include #include int main(int argc, char** argv) { void *dl; int i; for (i = 0; i < 2; i++) { dl = dlopen (argv[1], RTLD_LAZY); printf ("%d open dl: %p\n", i, dl); if (dl) dlclose (dl); } } To manage notifications about this bug go to: https://bugs.launchpad.net/mir/+bug/1391976/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1458952] [NEW] Memory leak in InputMethodIBus
Public bug reported: There are two memory leaks in InputMethodIBus. One is with releasing the ibus_bus and the other being the keybinding. ** Affects: nux Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: Fix Committed ** Affects: nux/trusty Importance: Undecided Status: New ** Affects: nux (Ubuntu) Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Also affects: nux (Ubuntu) Importance: Undecided Status: New ** Changed in: nux Status: New => Fix Committed ** Changed in: nux Importance: Undecided => Medium ** Changed in: nux (Ubuntu) Importance: Undecided => Medium ** Changed in: nux (Ubuntu) Status: New => In Progress ** Changed in: nux Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: nux (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Branch linked: lp:~brandontschaefer/nux/input-method-memory-leak-fix -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to nux in Ubuntu. https://bugs.launchpad.net/bugs/1458952 Title: Memory leak in InputMethodIBus Status in Nux: Fix Committed Status in Nux trusty series: New Status in nux package in Ubuntu: In Progress Bug description: There are two memory leaks in InputMethodIBus. One is with releasing the ibus_bus and the other being the keybinding. To manage notifications about this bug go to: https://bugs.launchpad.net/nux/+bug/1458952/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 834465] Re: Unity dash ignores GNOME cursor blink settings
** Changed in: unity Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity Status: Triaged => In Progress ** Changed in: unity (Ubuntu) Status: Triaged => In Progress ** Changed in: unity Milestone: backlog => 7.3.3 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/834465 Title: Unity dash ignores GNOME cursor blink settings Status in Ayatana Design: Fix Committed Status in Unity: In Progress Status in unity package in Ubuntu: In Progress Bug description: Some bugs like this one are because Unity doesn't use standard GTK widgets. 1. Open System Settings>Keyboard. 2. Make sure "Cursor blinks in text fields" is checked and set the slider all the way to the right so that the cursor blinks very fast. 3. Most of Ubuntu respects this setting but the Dash does not. ProblemType: Bug DistroRelease: Ubuntu 11.10 Package: unity 4.10.2-0ubuntu1 ProcVersionSignature: Ubuntu 3.0.0-9.14-generic 3.0.3 Uname: Linux 3.0.0-9-generic x86_64 Architecture: amd64 CompizPlugins: [core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,resize,fade,unitymtgrabhandles,scale,session,unityshell] Date: Fri Aug 26 03:24:25 2011 SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/ayatana-design/+bug/834465/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1108956] Re: The dash closes when trying to switch from Command lens to home lens
** Changed in: unity Status: Triaged => In Progress ** Changed in: unity (Ubuntu) Status: Confirmed => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1108956 Title: The dash closes when trying to switch from Command lens to home lens Status in Ayatana Design: Fix Committed Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in unity package in Ubuntu: In Progress Bug description: When I open the command lens by pressing ALT+F2, if I press "Super" the dash is closed. It should not be closed, it should switch to the home lens instead. This is the suite of the bug 1019457 To manage notifications about this bug go to: https://bugs.launchpad.net/ayatana-design/+bug/1108956/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1072746] Re: window title in panel is missing after "the spread"
** Changed in: unity Status: Triaged => In Progress ** Changed in: unity (Ubuntu) Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1072746 Title: window title in panel is missing after "the spread" Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in unity package in Ubuntu: In Progress Bug description: After leaving the spread by choosing a window with the arrow keys and hitting enter the chosen window is often missing it's title. This mainly affects maximized (Firefox) windows(?). But even in LibreOffice I've seen it a couple of times. By hitting any menu entry the title appears again. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1072746/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1246891] Re: Going back from quicklist to launcher in key-nav mode doesn't unfold the launcher
** Changed in: unity/7.2 Assignee: Marco Trevisan (Treviño) (3v1n0) => Brandon Schaefer (brandontschaefer) ** Changed in: unity/7.2 Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1246891 Title: Going back from quicklist to launcher in key-nav mode doesn't unfold the launcher Status in Unity: In Progress Status in Unity 7.2 series: In Progress Status in unity package in Ubuntu: In Progress Bug description: 1) Press Alt+F1 2) Press right-key 3) Press left-key Expected result: 3) The launcher goes back to keynav mode and unfolds completely. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1246891/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1246891] Re: Going back from quicklist to launcher in key-nav mode doesn't unfold the launcher
** Changed in: unity Assignee: Marco Trevisan (Treviño) (3v1n0) => Brandon Schaefer (brandontschaefer) ** Changed in: unity (Ubuntu) Assignee: Marco Trevisan (Treviño) (3v1n0) => Brandon Schaefer (brandontschaefer) ** Changed in: unity Status: Triaged => In Progress ** Changed in: unity (Ubuntu) Status: Confirmed => In Progress ** Changed in: unity (Ubuntu) Importance: Undecided => Medium -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1246891 Title: Going back from quicklist to launcher in key-nav mode doesn't unfold the launcher Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in unity package in Ubuntu: In Progress Bug description: 1) Press Alt+F1 2) Press right-key 3) Press left-key Expected result: 3) The launcher goes back to keynav mode and unfolds completely. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1246891/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1418255] Re: /usr/share/session-migration/scripts/03_unity_first_run_stamp_move:OSError:/usr/share/session-migration/scripts/03_unity_first_run_stamp_move@35
** Changed in: unity (Ubuntu) Importance: Critical => Medium ** Changed in: unity Importance: Critical => Medium -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1418255 Title: /usr/share/session- migration/scripts/03_unity_first_run_stamp_move:OSError:/usr/share /session-migration/scripts/03_unity_first_run_stamp_move@35 Status in Unity: In Progress Status in unity package in Ubuntu: In Progress Bug description: The Ubuntu Error Tracker has been receiving reports about a problem regarding unity. This problem was most recently seen with version 7.3.1+14.10.20141016-0ubuntu1, the problem page at https://errors.ubuntu.com/problem/57a7a85987b3cae2d64f9afadcc51f008ef62e76 contains more details. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1418255/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1418255] Re: /usr/share/session-migration/scripts/03_unity_first_run_stamp_move:OSError:/usr/share/session-migration/scripts/03_unity_first_run_stamp_move@35
** Changed in: unity (Ubuntu) Status: New => In Progress ** Changed in: unity (Ubuntu) Importance: Undecided => Critical ** Changed in: unity (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Also affects: unity Importance: Undecided Status: New ** Changed in: unity Status: New => In Progress ** Changed in: unity Importance: Undecided => Critical ** Changed in: unity Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Branch linked: lp:~brandontschaefer/unity/fix-migration-script -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1418255 Title: /usr/share/session- migration/scripts/03_unity_first_run_stamp_move:OSError:/usr/share /session-migration/scripts/03_unity_first_run_stamp_move@35 Status in Unity: In Progress Status in unity package in Ubuntu: In Progress Bug description: The Ubuntu Error Tracker has been receiving reports about a problem regarding unity. This problem was most recently seen with version 7.3.1+14.10.20141016-0ubuntu1, the problem page at https://errors.ubuntu.com/problem/57a7a85987b3cae2d64f9afadcc51f008ef62e76 contains more details. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1418255/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1404730] Re: Dash: some icons are scaled incorrectly
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765069 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768256 Looks like a bug it gtk 3.14 ** Bug watch added: Debian Bug tracker #765069 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=765069 ** Bug watch added: Debian Bug tracker #768256 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768256 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1404730 Title: Dash: some icons are scaled incorrectly Status in Unity: In Progress Status in unity package in Ubuntu: In Progress Bug description: Please see the enclosed screenshot - the software updater icon is oversized compared to others displayed in Dash ProblemType: Bug DistroRelease: Ubuntu 15.04 Package: unity 7.3.1+15.04.20141216-0ubuntu1 ProcVersionSignature: Ubuntu 3.16.0-28.38-generic 3.16.7-ckt1 Uname: Linux 3.16.0-28-generic x86_64 ApportVersion: 2.15.1-0ubuntu1 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CurrentDesktop: Unity Date: Sun Dec 21 21:13:29 2014 InstallationDate: Installed on 2014-11-27 (24 days ago) InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Alpha amd64 (20141123) SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1404730/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1380906] Re: Middle-mouse-button paste no longer works in 14.04
Middle paste is working for me :(, though im on 14.10. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1380906 Title: Middle-mouse-button paste no longer works in 14.04 Status in Unity: New Status in “unity” package in Ubuntu: Confirmed Bug description: After the upgrade to 14.04 the paste of the previously highlighted text no longer seems to work. And since it is a rather important feature for me, it makes my job much more difficult. What i do: Highlight some text Press middle button on the mouse What i expect to happen: The highlighted text needs to appear where i click What actually happens: /dev/null ProblemType: Bug DistroRelease: Ubuntu 14.04 Package: unity 7.2.2+14.04.20140714-0ubuntu1.1 ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7 Uname: Linux 3.13.0-37-generic x86_64 ApportVersion: 2.14.1-0ubuntu3.5 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CurrentDesktop: Unity Date: Tue Oct 14 10:12:26 2014 InstallationDate: Installed on 2014-10-02 (11 days ago) InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2) SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1380906/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1382252] [NEW] Unity8 needs to support fullscreen surfaces.
Public bug reported: Right now in unity8 the top panel eats up an some of the pixels for the surface height. So say i request a surface for 540x960, then mir resizes the surface to 540x921. This means any application that depends on a WxH will lose an X amount of H. This hurts games, as they usually depend on a set WxH. If unity8 supported a fullscreen mode where the top panel wouldn't be visable and wouldn't eat pixels from the WxH. ** Affects: unity8 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity8 in Ubuntu. https://bugs.launchpad.net/bugs/1382252 Title: Unity8 needs to support fullscreen surfaces. Status in “unity8” package in Ubuntu: New Bug description: Right now in unity8 the top panel eats up an some of the pixels for the surface height. So say i request a surface for 540x960, then mir resizes the surface to 540x921. This means any application that depends on a WxH will lose an X amount of H. This hurts games, as they usually depend on a set WxH. If unity8 supported a fullscreen mode where the top panel wouldn't be visable and wouldn't eat pixels from the WxH. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1382252/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1328677] Re: unity first-run stamp should not be in XDG_CACHE_HOME
** Branch linked: lp:~brandontschaefer/unity/lp.1328677-fixv2 -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1328677 Title: unity first-run stamp should not be in XDG_CACHE_HOME Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in “unity” package in Ubuntu: In Progress Bug description: The unity first_run.stamp file should not be in XDG_CACHE_HOME. As it is a _cache_, it can be ephemeral. Rather, it should be in XDG_CONFIG_HOME. Once the keyboard shortcut list, for example, has been presented, I don't need to be told about it again, even if I need to purge my ~/.cache directory. This is a problem at our site, where XDG_CACHE_HOME is stored on a temporary filesystem, to cut down on the tremendous amount of useless network traffic between workstations and the user's file server. As a result, users now have to learn about Unity keyboard shortcuts on every single login. Relevant info: unity: Installed: 7.2.1+14.04.20140513-0ubuntu2 Candidate: 7.2.1+14.04.20140513-0ubuntu2 Version table: *** 7.2.1+14.04.20140513-0ubuntu2 0 500 http://mirrors.mit.edu/ubuntu/ trusty-updates/main amd64 Packages 100 /var/lib/dpkg/status 7.2.0+14.04.20140423-0ubuntu1.2 0 500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages 7.2.0+14.04.20140416-0ubuntu1 0 500 http://mirrors.mit.edu/ubuntu/ trusty/main amd64 Packages Distributor ID: Ubuntu Description: Ubuntu 14.04 LTS Release: 14.04 Codename: trusty To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1328677/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1237132] Re: Change "Show Desktop" icon option label when this option is in the state where it will reverse the prior show desktop action.
** Summary changed: - Change "Show Desktop" ALT-TAB option label when this option is in the state where it will reverse the prior show desktop action. + Change "Show Desktop" icon option label when this option is in the state where it will reverse the prior show desktop action. -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1237132 Title: Change "Show Desktop" icon option label when this option is in the state where it will reverse the prior show desktop action. Status in Ayatana Design: Fix Committed Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in “unity” package in Ubuntu: In Progress Bug description: If I were to sit next to you at your computer, put my arm around your shoulder and ask you: "Show me the Desktop" What would you do? Load up a Firefox window? What if I asked you again "Show me the Desktop" Would you do something different than, say, show the desktop? Thusly, when one selects "Show Desktop" with ALT+TAB I propose either: 1) Show the Desktop and only the desktop, no matter the state. Or: 2) Change the state from "Show Desktop" to "Show Open Windows." Thank you for your consideration. -- Desired solution: - First see the description of bug #966030 - When the user is in the 3rd state described in the description of the aforementioned bug (e.g. they have just used the 'Show Desktop' function to minimise all their windows, and have not opened or restored any new windows after doing this), if the user goes to the 'Show Desktop' option in Alt-Tab, the title should be changed to 'Restore Windows'. The action that is performed when this option is selected should not change, the only thing that should change is the label in this state. - If possible, it would also be good to change the tooltip of the Launcher Show Desktop icon when in this state if possible, but if not no worries. To manage notifications about this bug go to: https://bugs.launchpad.net/ayatana-design/+bug/1237132/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1237132] Re: Change "Show Desktop" ALT-TAB option label when this option is in the state where it will reverse the prior show desktop action.
This is simple enough. It would also be nice if we changed the icon, though i've no clue what it should look like. Its just easier to tell the difference between an icon vs small text. ** Changed in: unity Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity (Ubuntu) Status: Triaged => In Progress ** Changed in: unity Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1237132 Title: Change "Show Desktop" icon option label when this option is in the state where it will reverse the prior show desktop action. Status in Ayatana Design: Fix Committed Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in “unity” package in Ubuntu: In Progress Bug description: If I were to sit next to you at your computer, put my arm around your shoulder and ask you: "Show me the Desktop" What would you do? Load up a Firefox window? What if I asked you again "Show me the Desktop" Would you do something different than, say, show the desktop? Thusly, when one selects "Show Desktop" with ALT+TAB I propose either: 1) Show the Desktop and only the desktop, no matter the state. Or: 2) Change the state from "Show Desktop" to "Show Open Windows." Thank you for your consideration. -- Desired solution: - First see the description of bug #966030 - When the user is in the 3rd state described in the description of the aforementioned bug (e.g. they have just used the 'Show Desktop' function to minimise all their windows, and have not opened or restored any new windows after doing this), if the user goes to the 'Show Desktop' option in Alt-Tab, the title should be changed to 'Restore Windows'. The action that is performed when this option is selected should not change, the only thing that should change is the label in this state. - If possible, it would also be good to change the tooltip of the Launcher Show Desktop icon when in this state if possible, but if not no worries. To manage notifications about this bug go to: https://bugs.launchpad.net/ayatana-design/+bug/1237132/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1328677] Re: unity first-run stamp should not be in XDG_CACHE_HOME
** Changed in: unity (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity Status: Triaged => In Progress ** Changed in: unity (Ubuntu) Status: Triaged => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1328677 Title: unity first-run stamp should not be in XDG_CACHE_HOME Status in Unity: In Progress Status in Unity 7.2 series: Triaged Status in “unity” package in Ubuntu: In Progress Bug description: The unity first_run.stamp file should not be in XDG_CACHE_HOME. As it is a _cache_, it can be ephemeral. Rather, it should be in XDG_CONFIG_HOME. Once the keyboard shortcut list, for example, has been presented, I don't need to be told about it again, even if I need to purge my ~/.cache directory. This is a problem at our site, where XDG_CACHE_HOME is stored on a temporary filesystem, to cut down on the tremendous amount of useless network traffic between workstations and the user's file server. As a result, users now have to learn about Unity keyboard shortcuts on every single login. Relevant info: unity: Installed: 7.2.1+14.04.20140513-0ubuntu2 Candidate: 7.2.1+14.04.20140513-0ubuntu2 Version table: *** 7.2.1+14.04.20140513-0ubuntu2 0 500 http://mirrors.mit.edu/ubuntu/ trusty-updates/main amd64 Packages 100 /var/lib/dpkg/status 7.2.0+14.04.20140423-0ubuntu1.2 0 500 http://security.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages 7.2.0+14.04.20140416-0ubuntu1 0 500 http://mirrors.mit.edu/ubuntu/ trusty/main amd64 Packages Distributor ID: Ubuntu Description: Ubuntu 14.04 LTS Release: 14.04 Codename: trusty To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1328677/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1124484] Re: Dash loses keyboard focus during search
I cannot reproduce this issue anymore using 14.04+. This most likely was fixed somewhere else, and the bug does not reflect it. If this is still an issue for you in 14.04 please mark this bug or let us know! ** Changed in: unity Status: Triaged => Fix Released ** Changed in: unity (Ubuntu) Status: Triaged => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1124484 Title: Dash loses keyboard focus during search Status in Unity: Fix Released Status in “unity” package in Ubuntu: Fix Released Bug description: Certain keystrokes can cause the dash to lose keyboard focus. This is 100% reproducible for me, and I believe it's been around since 12.10 (if not earlier). To reproduce: 1) Hit Super to open the dash 2) In the dash, type a string such as 'sound' 3) Press the down arrow once. Notice the "Applications" section is selected 4) Press Escape. The search string is cleared 5) Type another search string in the dash Expected results: When you start typing in step 5, your keystrokes are entered into the dash as a search string Actual results: When you start typing in step 5, nothing happens. Despite the blinking cursor in the dash search box, the search box does not have keyboard focus. The arrow keys have no effect (they do not return focus to the search box). Pressing 'Escape' does not close the dash as it should. You have to close the dash (e.g. via the super key) and reopen it in order to resume your search. This is always reproducible on my system when the search string from step 2 is an application ('sound', 'display', 'firefox', etc). It's also reproducible when the search returns a document. If the search string is random characters that don't return any results, the dash does not lose keyboard focus. ProblemType: Bug DistroRelease: Ubuntu 13.04 Package: unity 6.12.0daily13.02.08-0ubuntu1 ProcVersionSignature: Ubuntu 3.8.0-5.10-generic 3.8.0-rc6 Uname: Linux 3.8.0-5-generic x86_64 NonfreeKernelModules: nvidia ApportVersion: 2.8-0ubuntu4 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' Date: Wed Feb 13 15:15:09 2013 InstallationDate: Installed on 2010-09-17 (880 days ago) InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Beta amd64 (20100901.1) MarkForUpload: True ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: unity UpgradeStatus: Upgraded to raring on 2013-01-25 (19 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1124484/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1036873] Re: HUD/Dash refuses to close
I've not seen this happen for sometime and I cant reproduce the issue. If anyone here still experiences this please mark this accordingly. ** Changed in: unity Status: Confirmed => Incomplete ** Changed in: unity (Ubuntu) Status: Confirmed => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1036873 Title: HUD/Dash refuses to close Status in Unity: Incomplete Status in “unity” package in Ubuntu: Incomplete Bug description: I was running chromium, a VM, IRC and a gnome-terminal. At some point, I hit the 'Alt' key and the HUD popped up, and it didn't go away. Running with quantal. ProblemType: Bug DistroRelease: Ubuntu 12.10 Package: unity 6.0.0-0ubuntu6 ProcVersionSignature: Ubuntu 3.5.0-9.9-generic 3.5.0 Uname: Linux 3.5.0-9-generic x86_64 ApportVersion: 2.4-0ubuntu6 Architecture: amd64 Date: Tue Aug 14 16:53:08 2012 EcryptfsInUse: Yes InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120626.1) ProcEnviron: TERM=xterm PATH=(custom, no user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1036873/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1354180] Re: Regression: Ctrl+Alt+T doesn't open a terminal
Can anyone else reproduce this? Also double check System Settings -> Keyboard -> Shortcut -> Launcher -> Terminal == Ctrl + Alt + t ** Changed in: unity (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1354180 Title: Regression: Ctrl+Alt+T doesn't open a terminal Status in “unity” package in Ubuntu: Incomplete Bug description: Not sure Unity is the package. Ctrl+Alt+T used to be the keyboard shortcut for opening a new terminal window (whether or not one was already open). It doesn't work any more. ProblemType: Bug DistroRelease: Ubuntu 14.04 Package: unity 7.2.2+14.04.20140714-0ubuntu1.1 ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4 Uname: Linux 3.13.0-32-generic x86_64 NonfreeKernelModules: nvidia ApportVersion: 2.14.1-0ubuntu3.2 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CurrentDesktop: Unity Date: Thu Aug 7 23:12:06 2014 InstallationDate: Installed on 2013-10-11 (300 days ago) InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424) SourcePackage: unity UpgradeStatus: Upgraded to trusty on 2014-05-24 (75 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1354180/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1349858] Re: Cannot override certain key combinations involving Super
This is somewhat problematic. As compiz gets the events, checks if it uses that shortcut. If it does then it eats the event and its done. If it doesn't eat the event it gets sent to gnome control center (now unity control center i think?). Which then gets to the right shortcut. So the only way to get this to work correctly, is to go in ccsm (compizconfig setting manager) and change the shortcut in unity plugin to not open photos scope when you press Super+C. ** Changed in: unity Status: New => Confirmed ** Changed in: unity (Ubuntu) Status: New => Confirmed -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1349858 Title: Cannot override certain key combinations involving Super Status in Unity: Confirmed Status in “unity” package in Ubuntu: Confirmed Bug description: When defining keyboard shortcuts in System Settings -> Keyboard -> Shortcuts, several combinations are never honoured. These include setting: - Launchers -> Launch calculator to Super+C (launches search photos instead) - Launchers -> Launch email client to Super+M (launches search music instead) - Launchers -> Launch terminal to Super+T (launches Rubbish bin instead) - Launchers -> Launch web browser to Super+F (launches search files & folders instead) - Launchers -> Search to Super+S (launches Workspace Switcher) - Navigation -> Switch to workspace # to Super+# (launches the corresponding launcher icon instead) It is non-obvious that this shortcut change has not been honoured, and there is no list of keys to which this applies. ProblemType: Bug DistroRelease: Ubuntu 14.04 Package: unity-services 7.2.2+14.04.20140714-0ubuntu1 ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4 Uname: Linux 3.13.0-32-generic x86_64 ApportVersion: 2.14.1-0ubuntu3.2 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' CurrentDesktop: Unity Date: Wed Jul 30 00:01:48 2014 SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1349858/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1152467] Re: Icons Missing In Dash
All unity does is reads the *.desktop file. If the app is not starting then its the *.desktop file that comes with that app. I would check out /usr/share/applications/ and look for those desktop files and ensure the Exec section is correct. Theres nothing we can do about bad desktop files in unity. ** Changed in: unity Status: New => Invalid ** Changed in: unity (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1152467 Title: Icons Missing In Dash Status in Unity: Invalid Status in “unity” package in Ubuntu: Invalid Bug description: I'm running 12.04 x86 with only Unity and I've noticed that in the Dash there are several apps appearing with no icons, KSystemLog, synpatiks, Akonaditray, BlueDevil... Also a few of these don't run, meaning, maybe the shortcuts for these wasn't meant to be placed in Dash? As example synpatiks and Akonaditray don't do anything if you click them, so maybe they shouldn't be in Dash? Please see the attached screen shot showing these in dash with no icons... THANKS ProblemType: Bug DistroRelease: Ubuntu 12.04 Package: dash 0.5.7-2ubuntu2 ProcVersionSignature: Ubuntu 3.2.0-38.61-generic-pae 3.2.37 Uname: Linux 3.2.0-38-generic-pae i686 ApportVersion: 2.0.1-0ubuntu17.1 Architecture: i386 Date: Thu Mar 7 20:32:51 2013 InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423) MarkForUpload: True ProcEnviron: TERM=xterm PATH=(custom, no user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: dash UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1152467/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1154451] Re: Windows Startkey only works when an application is open?
This is most likley caused by a bad nautilus not running the Desktop window. This window needs to be open other wise compiz wont get any keyboarde events since no windows are present/focused. Make sure nautilus is running, and when you are on an empty desktop that the top panel reads "Ubuntu Desktop" and the top panel has drop shadow. If you dont have this then nautilus is not running in desktop mode. ** Changed in: unity Status: New => Invalid ** Changed in: unity (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1154451 Title: Windows Startkey only works when an application is open? Status in Unity: Invalid Status in “unity” package in Ubuntu: Invalid Bug description: Most keyboard have a 'Windows Start Key' button; or similar. When you have an application open and click the "Start button" the "Canonical dash"?; opens up. When you have closed all applications and press the "Start button", "Canonical dash" doesn't open up; namely nothing happens. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1154451/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1154229] Re: New Unity Dash
** Changed in: unity Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to libunity in Ubuntu. https://bugs.launchpad.net/bugs/1154229 Title: New Unity Dash Status in Unity: Fix Released Status in “libunity” package in Ubuntu: Fix Released Status in “unity” package in Ubuntu: Fix Released Status in “unity-lens-applications” package in Ubuntu: Fix Released Status in “unity-lens-files” package in Ubuntu: Fix Released Status in “unity-lens-music” package in Ubuntu: Fix Released Status in “unity-lens-photos” package in Ubuntu: Fix Released Status in “unity-lens-shopping” package in Ubuntu: Invalid Status in “unity-scope-gdrive” package in Ubuntu: Fix Released Status in “libunity” source package in Saucy: Fix Released Status in “unity” source package in Saucy: Fix Released Status in “unity-lens-applications” source package in Saucy: Fix Released Status in “unity-lens-files” source package in Saucy: Fix Released Status in “unity-lens-music” source package in Saucy: Fix Released Status in “unity-lens-photos” source package in Saucy: Fix Released Status in “unity-lens-shopping” source package in Saucy: Invalid Status in “unity-scope-gdrive” source package in Saucy: Fix Released Bug description: A new version of Unity's Dash, libunity APIs, the default and new "100 scopes", with a target date of April 1st for landing in Raring. The rest of Unity (Launcher, Indicators, HUD, etc) will not be affected. For reference, the new "smart scope service" and corresponding Unity changes was discussed here: http://fridge.ubuntu.com/2013/01/30/smart- scopes/ The spec for the "smart scope service" is here: https://wiki.ubuntu.com/SmartScopes1304Spec The goal is to have everything ready by April 1st. Until then, a ppa will be updated everyday for testing the feature by a group of 5 people (the ppa will be: https://launchpad.net/~ubuntu-unity/+archive /experimental-certified). Existing tests will be run as per of the daily release process. That + the manual testing, we'll have a good pick on the quality status before flipping the switch. All packages will be prereviewed for NEWing and MIRing. Code: * Existing packages: Unity: lp:~unity-team/unity/trunk (will be merged in lp:unity) Libunity: lp:~unity-team/libunity/libunity-7.0 (will be merged in lp:libunity) Apps scope: lp:~unity-team/unity-lens-applications/libunity7-compatible Files scope: lp:~unity-team/unity-lens-files/libunity7-compatible Gdrive scope: lp:~submarine/unity-scope-gdrive/libunity-7-compatible Gwibber scope: pending Ken Music scope: lp:~unity-team/unity-lens-music/libunity7-compatible Video scope: lp:~unity-team/unity-lens-video/libunity7-compatible China music scope: lp:~ubuntukylin-members/unity-china-music-scope/unity-china-music-scope * New packages: Home scope: lp:~unity-team/unity-scope-home/trunk (new package, will need a MIR as well as installed by default) "100 Scopes": New packages, will need MIR as well as installed by default: lp:~submarine/ubuntu-scopes/tomboy lp:~submarine/ubuntu-scopes/yahoostock lp:~submarine/ubuntu-scopes/colourlovers lp:~submarine/ubuntu-scopes/googlenews lp:~submarine/ubuntu-scopes/calculator lp:~submarine/ubuntu-scopes/yelp lp:~submarine/ubuntu-scopes/imdb lp:~submarine/ubuntu-scopes/deviantart lp:~submarine/ubuntu-scopes/github lp:~submarine/ubuntu-scopes/virtualbox lp:~submarine/ubuntu-scopes/launchpad lp:~submarine/ubuntu-scopes/soundcloud lp:~submarine/ubuntu-scopes/manpages lp:~submarine/ubuntu-scopes/gallica lp:~submarine/ubuntu-scopes/devhelp lp:~submarine/ubuntu-scopes/audacious lp:~submarine/ubuntu-scopes/chromiumbookmarks lp:~submarine/ubuntu-scopes/clementine lp:~submarine/ubuntu-scopes/firefoxbookmarks lp:~submarine/ubuntu-scopes/gmusicbrowser lp:~submarine/ubuntu-scopes/guayadeque lp:~submarine/ubuntu-scopes/musique lp:~submarine/ubuntu-scopes/texdoc lp:~submarine/ubuntu-scopes/openweathermap lp:~submarine/ubuntu-scopes/gourmet lp:~submarine/ubuntu-scopes/openclipart lp:~submarine/ubuntu-scopes/sshsearch lp:~submarine/ubuntu-scopes/themoviedb lp:~submarine/ubuntu-scopes/zotero lp:~submarine/ubuntu-scopes/evolution lp:~submarine/ubuntu-scopes/sshsearch This is the list I've been communicated as of 13.03.15 * Packages that we have to remove for the transition: - unity-lens-shopping -> in the home scope service - unity-lens-help -> some parts in the unity-scope-yelp and the onlin in the home scope service - unity-lens-radios -> if not ported, nuke it - unity-lens-vm -> in unity-scope-virtualbox - unity-lens-sshsearch - in unity-scope-sshsearch - unity-lens-pypi - has some performance issue, will probably just have to drop it To manage notifications about this bug go to: https://bugs.launchpad.net/unity
[Touch-packages] [Bug 1156118] Re: noticeable resizing of unity launcher
This has been fixed since the bug has been reported. Theres a duplicate somewhere... ** Changed in: unity Status: New => Fix Released ** Changed in: unity Importance: Undecided => Medium ** Changed in: unity (Ubuntu) Importance: Undecided => Medium ** Changed in: unity (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1156118 Title: noticeable resizing of unity launcher Status in Unity: Fix Released Status in “unity” package in Ubuntu: Fix Released Bug description: To reproduce: 1) Adjust the launcher size from default 48 to 32; 2) Logout; 3) Login again. Then you'll notice the launcher firstly appears at its default size then resize to the customed size. This is very noticeable. I didn't see this on Ubuntu 12.04 AMD_64. ProblemType: Bug DistroRelease: Ubuntu 13.04 Package: unity 6.12.0daily13.03.13.1-0ubuntu1 ProcVersionSignature: Ubuntu 3.8.0-13.22-generic 3.8.3 Uname: Linux 3.8.0-13-generic x86_64 ApportVersion: 2.9.1-0ubuntu1 Architecture: amd64 CompizPlugins: No value set for `/apps/compiz-1/general/screen0/options/active_plugins' Date: Sat Mar 16 23:08:00 2013 InstallationDate: Installed on 2013-03-17 (0 days ago) InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130316) MarkForUpload: True ProcEnviron: TERM=xterm PATH=(custom, no user) XDG_RUNTIME_DIR= LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: unity UpgradeStatus: No upgrade log present (probably fresh install) To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1156118/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1153248] Re: when scrolling in unity dash, the rightbottom corner it flashing
I can confirm this. ** Changed in: unity Status: New => Triaged ** Changed in: unity (Ubuntu) Status: New => Triaged ** Changed in: unity Importance: Undecided => Low ** Changed in: unity (Ubuntu) Importance: Undecided => Low -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1153248 Title: when scrolling in unity dash, the rightbottom corner it flashing Status in Unity: Triaged Status in “unity” package in Ubuntu: Triaged Bug description: like the title says To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1153248/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1353167] [NEW] AP test unity.tests.test_quicklist.QuicklistActionTests.test_quicklist_closes_when_hud_opens fails
Public bug reported: AP test unity.tests.test_quicklist.QuicklistActionTests.test_quicklist_closes_when_hud_opens fails, and shows a regression. ** Affects: unity Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Affects: unity (Ubuntu) Importance: Medium Assignee: Brandon Schaefer (brandontschaefer) Status: In Progress ** Also affects: unity (Ubuntu) Importance: Undecided Status: New ** Changed in: unity Status: New => In Progress ** Changed in: unity (Ubuntu) Status: New => In Progress ** Changed in: unity Importance: Undecided => Medium ** Changed in: unity (Ubuntu) Importance: Undecided => Medium ** Changed in: unity Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) ** Changed in: unity (Ubuntu) Assignee: (unassigned) => Brandon Schaefer (brandontschaefer) -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1353167 Title: AP test unity.tests.test_quicklist.QuicklistActionTests.test_quicklist_closes_when_hud_opens fails Status in Unity: In Progress Status in “unity” package in Ubuntu: In Progress Bug description: AP test unity.tests.test_quicklist.QuicklistActionTests.test_quicklist_closes_when_hud_opens fails, and shows a regression. To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1353167/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp
[Touch-packages] [Bug 1350052] Re: Unity FTBFS - gcc 4.9
urrg... hit Wont Fix on accident .. now I get a timeout error anytime I try to change it. Yay launchpad! (Same when attempting to link the branch to fix this...) ** Changed in: unity Status: Won't Fix => In Progress -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to unity in Ubuntu. https://bugs.launchpad.net/bugs/1350052 Title: Unity FTBFS - gcc 4.9 Status in Unity: In Progress Status in “unity” package in Ubuntu: In Progress Bug description: Confirmed gcc/g++ 4.9 causes this FTBFS [ 17%] Building CXX object UnityCore/CMakeFiles/unity-core-6.0.dir/GLibDBusProxy.cpp.o In file included from /home/bschaefer/src/unity/UnityCore/CheckOptionFilter.cpp:22:0: /home/bschaefer/src/unity/UnityCore/CheckOptionFilter.cpp:28:16: error: ‘nux::logging::Logger& unity::dash::{anonymous}::logger()’ defined but not used [-Werror=unused-function] DECLARE_LOGGER(logger, "unity.dash.filter.checkoption"); ^ /usr/include/Nux-4.0/NuxCore/Logger.h:75:27: note: in definition of macro ‘DECLARE_LOGGER’ ::nux::logging::Logger& logger() \ ^ In file included from /home/bschaefer/src/unity/UnityCore/Model-inl.h:23:0, from /home/bschaefer/src/unity/UnityCore/Model.h:107, from /home/bschaefer/src/unity/UnityCore/Filters.h:26, from /home/bschaefer/src/unity/UnityCore/Filter.cpp:21: /home/bschaefer/src/unity/UnityCore/Filter.cpp:35:16: error: ‘nux::logging::Logger& unity::dash::{anonymous}::logger()’ defined but not used [-Werror=unused-function] DECLARE_LOGGER(logger, "unity.dash.filter"); ^ /usr/include/Nux-4.0/NuxCore/Logger.h:75:27: note: in definition of macro ‘DECLARE_LOGGER’ ::nux::logging::Logger& logger() \ ^ cc1plus: all warnings being treated as errors UnityCore/CMakeFiles/unity-core-6.0.dir/build.make:169: recipe for target 'UnityCore/CMakeFiles/unity-core-6.0.dir/CheckOptionFilter.cpp.o' failed make[2]: *** [UnityCore/CMakeFiles/unity-core-6.0.dir/CheckOptionFilter.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs cc1plus: all warnings being treated as errors UnityCore/CMakeFiles/unity-core-6.0.dir/build.make:238: recipe for target 'UnityCore/CMakeFiles/unity-core-6.0.dir/Filter.cpp.o' failed make[2]: *** [UnityCore/CMakeFiles/unity-core-6.0.dir/Filter.cpp.o] Error 1 CMakeFiles/Makefile2:6381: recipe for target 'UnityCore/CMakeFiles/unity-core-6.0.dir/all' failed make[1]: *** [UnityCore/CMakeFiles/unity-core-6.0.dir/all] Error 2 Makefile:113: recipe for target 'all' failed make: *** [all] Error 2 To manage notifications about this bug go to: https://bugs.launchpad.net/unity/+bug/1350052/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp