[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-28 Thread Kai-Heng Feng
** Patch added: "cario-device-scale-api.patch"
   
https://bugs.launchpad.net/ubuntu/+source/vala-0.20/+bug/1557893/+attachment/4614418/+files/cario-device-scale-api.patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  Fix Released
Status in vala-0.20 package in Ubuntu:
  Fix Released
Status in unity-greeter source package in Trusty:
  Triaged
Status in vala-0.20 source package in Trusty:
  New

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-25 Thread Kai-Heng Feng
** Also affects: vala-0.20 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: vala-0.20 (Ubuntu)
   Status: New => Fix Committed

** Changed in: vala-0.20 (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  Fix Released
Status in vala-0.20 package in Ubuntu:
  Fix Released
Status in unity-greeter source package in Trusty:
  Triaged
Status in vala-0.20 source package in Trusty:
  New

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-22 Thread Kai-Heng Feng
In order to make the change build-able on Trusty, we need to add new
interface into cairo.vapi:

--- vala-0.22-0.22.1.orig/vapi/cairo.vapi
+++ vala-0.22-0.22.1/vapi/cairo.vapi
@@ -645,6 +645,8 @@ namespace Cairo {
public void mark_dirty_rectangle (int x, int y, int width, int 
height);
public void set_device_offset (double x_offset, double 
y_offset);
public void get_device_offset (out double x_offset, out double 
y_offset);
+   public void set_device_scale (double x_scale, double y_scale);
+   public void get_device_scale (out double x_scale, out double 
y_scale);
public void set_fallback_resolution (double x_pixels_per_inch, 
double y_pixels_per_inch);
public void show_page ();
public Status status ();

Those two functions are indeed in Trusty's cairo, so I think it's safe
to expose these interface for Vala.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  Fix Released
Status in unity-greeter source package in Trusty:
  Triaged

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-19 Thread Kai-Heng Feng
Hi Sebastien,

When we enabled OEM products with HiDPI display, the "let's wait before
xsettings settle down" hack was applied [1], so the unity-greeter is
actually scaled to the right resolution, hence this issue.

So it would be great if this fix can be put into Trusty.

[1] https://bazaar.launchpad.net/~fourdollars/unity-greeter/add-hidpi-
support/revision/1497

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  In Progress
Status in unity-greeter source package in Trusty:
  Triaged

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-19 Thread Sebastien Bacher
Great work Kai, thanks for looking to that bug, the fix seems to work
nicely!

@Artur, why did you nominate for trusty? I don't think we have hidpi
working in that Ubuntu serie at the moment so the bug shouldn't impact
it

** Changed in: unity-greeter (Ubuntu)
   Importance: Undecided => High

** Changed in: unity-greeter (Ubuntu)
   Status: New => In Progress

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  In Progress

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-19 Thread Shih-Yuan Lee
@Sebastien, thanks.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  In Progress
Status in unity-greeter source package in Trusty:
  Triaged

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-19 Thread Sebastien Bacher
Ok, after talking to Shih-Yuan there are still plans to backport some of
the hidpi work to trusty so it might become relevant for that serie,
accepting the nomination

** Also affects: unity-greeter (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: unity-greeter (Ubuntu Trusty)
   Importance: Undecided => High

** Changed in: unity-greeter (Ubuntu Trusty)
   Status: New => Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  In Progress
Status in unity-greeter source package in Trusty:
  Triaged

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-18 Thread Launchpad Bug Tracker
This bug was fixed in the package unity-greeter - 16.04.1-0ubuntu1

---
unity-greeter (16.04.1-0ubuntu1) xenial; urgency=medium

  * New upstream release:
- Fix background after login being scaled incorrectly (LP: #1557893)

 -- Robert Ancell   Fri, 18 Mar 2016
09:46:32 +1300

** Changed in: unity-greeter (Ubuntu)
   Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  Fix Released
Status in unity-greeter source package in Trusty:
  Triaged

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1557893] Re: The transition wallpaper does not have right scale on HiDPI monitor.

2016-03-16 Thread Kai-Heng Feng
** Branch linked: lp:~kaihengfeng/unity-greeter/fix-hidpi-trasition-
wallpaper

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity-greeter in Ubuntu.
https://bugs.launchpad.net/bugs/1557893

Title:
  The transition wallpaper does not have right scale on HiDPI monitor.

Status in unity-greeter package in Ubuntu:
  New

Bug description:
  Ubuntu Release: 16.04
  Package Version: 16.04.0-0ubuntu1

  What you expected to happen:
  The wallpaper scales to whole HiDPI monitor.

   What happened instead:
  The wallpaper only shows on upper left corner.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-greeter/+bug/1557893/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp