[Bug 1965123] Re: Active launchers area pixels (corners) missing

2022-09-15 Thread Ivan Wolf
It seems to be something when loading the session, because after locking
and unlocking the screen, it goes back to normal.

** Attachment added: "Captura de tela de 2022-09-14 13-04-59.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1965123/+attachment/5616056/+files/Captura%20de%20tela%20de%202022-09-14%2013-04-59.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1965123

Title:
  Active launchers area pixels (corners) missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1965123/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1965123] Re: Active launchers area pixels (corners) missing

2022-09-13 Thread Ivan Wolf
The problem also occurs for me on laptop with Intel Graphics. I use the
dark theme.


** Attachment added: "BdSZUtI.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1965123/+attachment/5615491/+files/BdSZUtI.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1965123

Title:
  Active launchers area pixels (corners) missing

To manage notifications about this bug go to:
https://bugs.launchpad.net/dash-to-dock/+bug/1965123/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1948881] Re: XSane plugin not available in GIMP File menu

2022-06-18 Thread Thomas Wolf
I'm affected by this bug, too.
I'm on Ubuntu 22.04. Is there anything new?
What can I do as a workaround?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gimp in Ubuntu.
https://bugs.launchpad.net/bugs/1948881

Title:
  XSane plugin not available in GIMP File menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/gimp/+bug/1948881/+subscriptions


-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1855757] Re: [nvidia] Background image corrupted after standby or resume from suspend

2021-01-12 Thread Wolf
Wallpaper background file in monitor resolution helps. Thank you for
this workaround!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1855757

Title:
  [nvidia] Background image corrupted after standby or resume from
  suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1855757/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1855757] Re: [nvidia] Background image corrupted after standby or resume from suspend

2020-10-13 Thread Wolf
nvidia 340 driver, GT218M / 3100NVS card on HP 8440p laptop, 
System: focal

Have still the "corrupted desktop" problem; changing to "proposed" made
that I could no longer resume from hibernate. With "proposed", screen
would power on back light for a few seconds and then remain dark.

Unticking the "proposed" box with update luckily led to a resuming
system again.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1855757

Title:
  [nvidia] Background image corrupted after standby or resume from
  suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1855757/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [Bug 1866625] Re: OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit Integers.

2020-05-08 Thread Wolf Pichler
It should indeed be done like this:

 import gi
 gi.require_version('Gtk', '3.0')
 from gi.repository import Gtk

 from gi.repository import GObject

 mystore = Gtk.ListStore(GObject.TYPE_UINT64)
 mystore.insert_with_valuesv(-1, [1], [GObject.Value(GObject.TYPE_UINT64, 
1330400507426)])

###

I was completely unaware of that possibility because the source of my
GTK knowlege is

https://lazka.github.io/pgi-
docs/#Gtk-3.0/classes/ListStore.html#Gtk.ListStore.set_column_types

When checking out the available types one ends up here:

https://lazka.github.io/pgi-
docs/#GObject-2.0/classes/GType.html#GObject.GType

Which does not ring any bell ...

So I did it like in

https://python-gtk-3-tutorial.readthedocs.io/en/latest/treeview.html
#the-model

where the Python types are used.

###

With the knowlege I gained through this FR it was possible to find this:

GObject Built-in Type Constants
The Built-in Type constants specify the pre-defined types used by gobject.

https://developer.gnome.org/pygobject/stable/gobject-constants.html
#gobject-type-constants

which is quite useful.

###

Thanks!

On 11.03.20 17:56, Christoph Reiter wrote:
>  import gi
>   gi.require_version('Gtk', '3.0')
>   from gi.repository import Gtk
>
>   This works in Python 2:
>
>   mystore = Gtk.ListStore(long)
>   mystore.insert_with_valuesv(-1, [1], [long(1330400507426)])
>
>   This does not work in Python 3:
>
>   mystore = Gtk.ListStore(int)
>   mystore.insert_with_valuesv(-1, [1], [int(1330400507426)])

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to pygobject in Ubuntu.
https://bugs.launchpad.net/bugs/1866625

Title:
  OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit
  Integers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1866625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [Bug 1866625] Re: OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit Integers.

2020-03-09 Thread Wolf Pichler
It works!

On 09.03.20 21:17, Sebastien Bacher wrote:
> COuld you test the upstream workaround and use
> GObject.Value(GObject.TYPE_UINT64, 1330400507426) ?
>

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to pygobject in Ubuntu.
https://bugs.launchpad.net/bugs/1866625

Title:
  OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit
  Integers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1866625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [Bug 1866625] Re: OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit Integers.

2020-03-09 Thread Wolf Pichler
I'm not sure what exactly they are really talking about at
https://gitlab.gnome.org/GNOME/pygobject/issues/198.

My FR concerns 3.26.1-2ubuntu1 and at gitlab it is stated "I think it
used to work in 3.26." which

clearly is not the case.


I took a look into the source and in pygi-value.c I found this:

case G_TYPE_INT:
    {
    glong val = PYGLIB_PyLong_AsLong(obj);
    if (val == -1 && PyErr_Occurred ())
    return -1;
    if (val > G_MAXINT || val < G_MININT) {
    PyErr_SetString(PyExc_OverflowError, "out of range for int
property");
    return -1;
    }
    g_value_set_int(value, (gint)val);
    break;
    }


and a lot of comments like this:


#if PY_VERSION_HEX < 0x0300

[snip]

#endif


To me this means that somebody is/was aware of the fact that some more
work has to be done for

making this stuff compatible to Python 3.


On 09.03.20 14:48, Sebastien Bacher wrote:
> Thank you for your bug report, that seems similar to
> https://gitlab.gnome.org/GNOME/pygobject/issues/198
>
> ** Bug watch added: gitlab.gnome.org/GNOME/pygobject/issues #198
>https://gitlab.gnome.org/GNOME/pygobject/issues/198
>
> ** Changed in: pygobject (Ubuntu)
>Importance: Undecided => Low
>

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to pygobject in Ubuntu.
https://bugs.launchpad.net/bugs/1866625

Title:
  OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit
  Integers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1866625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1866625] [NEW] OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit Integers.

2020-03-09 Thread Wolf Pichler
Public bug reported:

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

This works in Python 2:

mystore = Gtk.ListStore(long)
mystore.insert_with_valuesv(-1, [1], [long(1330400507426)])

This does not work in Python 3:

mystore = Gtk.ListStore(int)
mystore.insert_with_valuesv(-1, [1], [int(1330400507426)])

OverflowError: Item 0: out of range for int property



lsb_release -rd
Description:Ubuntu 18.04.4 LTS
Release:18.04

apt-cache policy python3-gi
python3-gi:
  Installed: 3.26.1-2ubuntu1
  Candidate: 3.26.1-2ubuntu1
  Version table:
 *** 3.26.1-2ubuntu1 500
500 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
 3.26.1-2 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages

python3 -V
Python 3.6.9

** Affects: pygobject (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to pygobject in Ubuntu.
https://bugs.launchpad.net/bugs/1866625

Title:
  OverflowError: With Python 3 Gtk.ListStore only accepts 32 Bit
  Integers.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1866625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [Bug 1841051] Re: gpg password cache is never cleared

2019-11-05 Thread Wolf Pichler
Thanks!

On 05.11.19 21:30, Sebastien Bacher wrote:
> thanks, closing then
>
> ** Changed in: gnome-keyring (Ubuntu)
> Status: Incomplete => Invalid
>

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring in Ubuntu.
https://bugs.launchpad.net/bugs/1841051

Title:
  gpg password cache is never cleared

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/1841051/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [Bug 1841051] Re: gpg password cache is never cleared

2019-11-05 Thread Wolf Pichler
It is no fault.

My original FR concerned gpg-agent because I was unaware of the fact
that

seahorse/gnome-keyring had the password stored.

On 05.11.19 11:26, Sebastien Bacher wrote:
> Thank you for your bug report. Could you give details on what you did
> exactly? If you ticked the box to store the auth in the keyring that's
> what it did, why would you expect it to do instead?
>
> ** Package changed: seahorse (Ubuntu) => gnome-keyring (Ubuntu)
>
> ** Changed in: gnome-keyring (Ubuntu)
> Status: New => Incomplete
>

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring in Ubuntu.
https://bugs.launchpad.net/bugs/1841051

Title:
  gpg password cache is never cleared

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/1841051/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1840634] [NEW] bionic: GNOME needs update to 3.30

2019-08-19 Thread Wolf
Public bug reported:

With time going on, more an more minor flaws are occuring in GNOME:

* mouse movements often are very laggy
* mouse pointer gets under active windows
* system gets stuck for several system
* control for gnome-search is grayed out, so search can no longer be configured.

It does not make much sense to repair each of these petitesses with
outdated GNOME 3.28 - but if you take the idea of LTS serious, it is
necessary to update GNOME. I won't update to 18.10, because that was a
really bad experience last time - so many apps got dysfunctional.

** Affects: gnome-shell (Ubuntu)
 Importance: Wishlist
 Status: Opinion


** Tags: bionic

** Package changed: nvidia-graphics-drivers-384 (Ubuntu) => gnome-shell
(Ubuntu)

** Description changed:

  With time going on, more an more minor flaws are occuring in GNOME:
  
  * mouse movements often are very laggy
  * mouse pointer gets under active windows
  * system gets stuck for several system
  * control for gnome-search is grayed out, so search can no longer be 
configured.
  
- I does not make much sense to repair each of these pettitesses with
+ It does not make much sense to repair each of these petitesses with
  outdated GNOME 3.28 - but if you take the idea of LTS serious, it is
  necessary to update GNOME. I won't update to 18.10, because that was a
  really bad experience last time - so many apps got dysfunctional.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1840634

Title:
  bionic: GNOME needs update to 3.30

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1840634/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1826420] Re: Nautilus disk properties shows black circle

2019-07-03 Thread Wolf Rogner
Hi to all,

I used a MacOS icon theme. The issue did occur with Yaru but not with
Ambience.


I switched to macOS after the ongoing issues that reoccured with 19.04. I could 
not bear with it any longer (12 years are a long time).

Sorry to be of no assistance to this and any other issues any longer.

cheers

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1826420

Title:
  Nautilus disk properties shows black circle

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1826420/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1801382] Re: printing complex documents does not reproduce screen image on paper

2019-07-02 Thread Wolf Rogner
Hi to all,


I switched to macOS after the ongoing issues that reoccured with 19.04
(including this one). I could not bear with it any longer (12 years are
a long time).

Sorry to be of no assistance to this and any other issues any longer.

cheers

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1801382

Title:
  printing complex documents does not reproduce screen image on paper

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1801382/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1767564] Re: Ubuntu 18.04 Workspaces only change on primary monitor

2019-06-11 Thread Steven Wolf
@ruediger.kupper
It is still definitely present on 18.04.  All apps open in the secondary 
monitor of all workspaces collapse onto the secondary monitor when the super 
key is pushed for the activity overview (but go back to their original 
workspaces when you push it again.)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1767564

Title:
  Ubuntu 18.04 Workspaces only change on primary monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1767564/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1826420] [NEW] Nautilus disk properties shows black circle

2019-04-25 Thread Wolf Rogner
Public bug reported:

Ubuntu 19.04 / Nautilus 3.32.0 stable (?)

Mounting a disk (which does not show on the desktop may I add here as
well) and asking for disk properties gives a black circle.

Expected behaviour: different colours for used and unused parts, maybe
gray for the unusable meta data.

Current behaviour: a black disk telling me nothing.

(I have no idea as to why a perfectly working file manager had to get
crippled further, but someone managed).

I do have a custom theme but it happens with the default theme as well.

(Sorry my tone gets harsher every time but I really get tired being an
alpha tester).

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: nautilus 1:3.32.0-0ubuntu2
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Thu Apr 25 16:48:33 2019
InstallationDate: Installed on 2018-04-30 (360 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: nautilus
UpgradeStatus: Upgraded to disco on 2019-04-19 (5 days ago)
usr_lib_nautilus:

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug disco

** Attachment added: "So much information"
   
https://bugs.launchpad.net/bugs/1826420/+attachment/5259049/+files/Screenshot%20from%202019-04-25%2016-48-58.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1826420

Title:
  Nautilus disk properties shows black circle

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1826420/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1826140] [NEW] Gimp fails to start after upgrade to 19.04

2019-04-24 Thread Wolf Rogner
Public bug reported:

After upgrade to 19.04 gimp fails to launch

~$ gimp
gimp: symbol lookup error: /usr/lib/libgimpcolor-2.0.so.0: undefined symbol: 
gegl_buffer_iterator2_new

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: gimp 2.10.8-2
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Wed Apr 24 10:45:57 2019
InstallationDate: Installed on 2018-04-30 (358 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: gimp
UpgradeStatus: Upgraded to disco on 2019-04-19 (4 days ago)

** Affects: gimp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug disco third-party-packages

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gimp in Ubuntu.
https://bugs.launchpad.net/bugs/1826140

Title:
  Gimp fails to start after upgrade to 19.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gimp/+bug/1826140/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] Re: Some apps appear blurry with framebuffer scaling

2019-04-24 Thread Wolf Rogner
Re #7: 90% of the applications experience this and that should be normal? Huhh.
Re #8: Fix released? So it could be fixed? What was the issue? How do we get 
the fix?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  Some apps appear blurry with framebuffer scaling

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825893] Re: Mounted disks not shown on desktop after enabling ubuntu-dock in Tweaks

2019-04-23 Thread Wolf Rogner
I think triaging to gnome-shell-extensions might be the wrong approach
in this case.

The icons did appear before and do appear in other installations. It is
just on this machine that after enabling ubuntu-dock they do not appear
any more (I do not want to verify this behaviour on any other machines
as the missing icon leads to dirty unmounts)

There must be a setting somewhere to enable disks again. There used to
be a setting in gnome-tweak-tools (but was left out in gnome-tweaks).
Also there was a setting in gsettings / dconf which is gone as well.

So the question is: Where does UBUNTU (and not Gnome) store its setting
about how to deal with mounted devices?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell-extension-desktop-icons
in Ubuntu.
https://bugs.launchpad.net/bugs/1825893

Title:
  Mounted disks not shown on desktop after enabling ubuntu-dock in
  Tweaks

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell-extension-desktop-icons/+bug/1825893/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] Re: mutter framebuffer scaling blurs display

2019-04-23 Thread Wolf Rogner
** Attachment added: "With framebuffer scaling"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+attachment/5258145/+files/Screenshot%20from%202019-04-23%2009-32-15.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  mutter framebuffer scaling blurs display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] Re: mutter framebuffer scaling blurs display

2019-04-23 Thread Wolf Rogner
** Attachment added: "Black frame around windows"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+attachment/5258146/+files/Screenshot%20from%202019-04-23%2009-34-08.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  mutter framebuffer scaling blurs display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] Re: mutter framebuffer scaling blurs display

2019-04-23 Thread Wolf Rogner
With framebuffer scaling some applications (e.g. the settings app) do
work fine. Others don't (e.g. Firefox, but also LibreOffice)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  mutter framebuffer scaling blurs display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] Re: mutter framebuffer scaling blurs display

2019-04-23 Thread Wolf Rogner
** Attachment added: "Without framebuffer scaling"
   
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+attachment/5258144/+files/Screenshot%20from%202019-04-23%2009-33-17.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  mutter framebuffer scaling blurs display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825893] [NEW] Mounted disks not shown on desktop after enabling ubuntu-dock in Tweaks

2019-04-22 Thread Wolf Rogner
Public bug reported:

After enabling ubuntu-dock in Tweaks, disks get mounted, are shown in
Nautilus side bar but the desktop icon is missing.

This leads to the risk of disconnecting a disk that is mounted or write
operations are in progress.

How can I enable the feature again that disks that get mounted are shown
on the desktop?

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: gnome-shell-extension-ubuntu-dock 64ubuntu7
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Mon Apr 22 23:25:53 2019
InstallationDate: Installed on 2018-04-30 (357 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
PackageArchitecture: all
SourcePackage: gnome-shell-extension-ubuntu-dock
UpgradeStatus: Upgraded to disco on 2019-04-19 (3 days ago)

** Affects: gnome-shell-extension-ubuntu-dock (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug disco

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell-extension-ubuntu-dock
in Ubuntu.
https://bugs.launchpad.net/bugs/1825893

Title:
  Mounted disks not shown on desktop after enabling ubuntu-dock in
  Tweaks

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1825893/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825625] [NEW] mutter framebuffer scaling blurs display

2019-04-20 Thread Wolf Rogner
Public bug reported:

Setting the framebuffer scaling (with gsettings set org.gnome.mutter
experimental-features "['scale-monitor-framebuffer']") allows the
display on HiDPi to be scaled to something different than
100%/200%/300%.

Which would be fine.

However, the display is rendered such that most applications provide
blurred display of text and graphics.

This is not always the case (e.g. system settings are displayed
correctly, Thunderbird and Firefox are blurred).

Also the screen flickers when selection menus or resizing the windows.
A black border appears around the windows where the shadow should appear. It 
gets removed a few seconds later but still is irritating.

This issue is not urgent, just annoying. It can be worked around by
removing the settings in gsetting / dconf.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: mutter 3.32.0+git20190410-1ubuntu1
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Apr 20 11:11:55 2019
InstallationDate: Installed on 2018-04-30 (355 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: mutter
UpgradeStatus: Upgraded to disco on 2019-04-19 (0 days ago)

** Affects: mutter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug disco wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1825625

Title:
  mutter framebuffer scaling blurs display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1825625/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1825623] [NEW] AppIndicatorSupport in Gnome-shell crashes

2019-04-20 Thread Wolf Rogner
Public bug reported:

After startup or login, An error occurs that just states cancel or
report... but does not open a detail dialog

Error messages in the syslog:

...
Apr 20 10:47:19 mbpr13b gnome-shell[3595]: [AppIndicatorSupport-DEBUG] 
Registering 
StatusNotifierItem:1.95/org/ayatana/NotificationItem/software_update_available
Apr 20 10:47:19 mbpr13b gnome-shell[3595]: [AppIndicatorSupport-FATAL] unable 
to update overlay icon
Apr 20 10:47:19 mbpr13b gnome-shell[3595]: [AppIndicatorSupport-FATAL] unable 
to update overlay icon
...

It seems that the update notifier cannot register its icon in the top
bar.

ProblemType: Bug
DistroRelease: Ubuntu 19.04
Package: gnome-shell 3.32.0+git20190410-1ubuntu1
ProcVersionSignature: Ubuntu 5.0.0-13.14-generic 5.0.6
Uname: Linux 5.0.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu27
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Apr 20 10:49:27 2019
DisplayManager: gdm3
InstallationDate: Installed on 2018-04-30 (354 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: gnome-shell
UpgradeStatus: Upgraded to disco on 2019-04-19 (0 days ago)

** Affects: gnome-shell (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug disco

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1825623

Title:
  AppIndicatorSupport in Gnome-shell crashes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1825623/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1824874] Re: undismissable, unclickable authentication dialog left on screen after policykit authentication [pushModal: invocation of begin_modal failed]

2019-04-19 Thread Wolf Rogner
I saw the authentication window only once after resume from suspend to
RAM.

But I do get the error messages and my syslog is filled up

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1824874

Title:
  undismissable, unclickable authentication dialog left on screen after
  policykit authentication [pushModal: invocation of begin_modal failed]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1824874/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1694145] Re: nautilus does not automount USB hard disks on plug-in

2019-02-06 Thread Wolf Rogner
Hi Sebastien,
I have upgraded to Ubuntu 18.04 and 18.10.
Did not experience this issue there.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1694145

Title:
  nautilus does not automount USB hard disks on plug-in

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1694145/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1769383] Re: Ubuntu dock/launcher is shown on the lock screen

2018-12-28 Thread Wolf Rogner
I long have given up on this.

However here are two more observations.

Confirming Simon P.'s (simpre) observation that applications are not
docked.

Another issue: when clicking on the activities button once, it does not
show the app overview. It requires a second click.

This is also true with any activation (like Meta-L to lock the machine).


Another anecdote:
Yesterday I did some programming. I locked the machine and put it to sleep 
(another function that used to work reliably and now is completely broken) but 
when I came back, it was up and running. The IDE was visible. I could position 
the cursor and enter text.

The text was not echoed on the screen but after unlocking the text was
there. If this was crucial code anyone could render it unusable or add
to it.

@Andrea Azzarone: This is a severe security issue to me and many others.
I hope the proposed fix (as noted above) is really fixing this issue and
comes out soon. It's a shame that something like this passes rollout
(although I have some understanding for that) but even more so the
initial ignorance and reluctance to trust hundreds of users that there
is an issue that needs quick fixing (which I have no understanding for
whatsoever).

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1769383

Title:
  Ubuntu dock/launcher is shown on the lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1769383/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1208121] Re: Nautilus saves files under wrong name

2018-12-20 Thread Wolf Rogner
My dear,
I use 18.10 and the above stated issue is long but resolved.

But thanks for getting back to me.

Merry Christmas
Wolf Rogner

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1208121

Title:
  Nautilus saves files under wrong name

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1208121/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2018-12-19 Thread Wolf Rogner
@Sebastian:

I wish you a very merry Christmas and a happy new year.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2018-12-19 Thread Wolf Rogner
I want to connect to an IMAP and SMTP service.
I have to enter the email address (which is something other than the login 
name).
Do I give the login name, I cannot forward, do I give the email address, I can 
forward but the login into the server fails.
"Error connecting to IMAP server
Invalid certificate."
Ignoring brings me to SMTP
"Error connecting to SMTP server
Could not connect to :
Connection refused"

I can use Encryption: None, STARTTLS after connecting or SSL on a dedicated 
port (where I cannot specify the port)
Here I can press Try Again as long as I want.

No config file is generated, I can Cancel the process and have no way to
access CAL or CARDs

There are some providers (mostly cloud services) hard coded but a
general connection option is not available (as is in Thunderbird).

If this does not work, Gnome Calendar, Addressbook, Geary and related
applications are extremly limited in the usefulness.

I first filed this with Ubuntu 17.10, then tested with Budgy 17.10, then
18.04 and now with 18.10.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1769383] Re: Ubuntu dock/launcher is shown on the lock screen

2018-12-18 Thread Wolf Rogner
It is not fixed.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1769383

Title:
  Ubuntu dock/launcher is shown on the lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1769383/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1808775] [NEW] evolution does not reliably connect at system boot or resume

2018-12-17 Thread Wolf
Public bug reported:

ubuntu 18.04
evolution 3.28.5-0ubuntu0.18.04.1 

After system boot, evolution does not connect to the network, allthough
it already is present. The same often happens after resume from suspend.
After resume from suspend, evo sometimes is set to "offline" mode, but
does not reconnect when switched to "online" manually.

That problem has been existing occasionally ever since I'm using
evolution - that's something like 4 years. But now it's worse that ever.

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1808775

Title:
  evolution does not reliably connect at system boot or resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1808775/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2018-12-13 Thread Wolf Rogner
There is no error message it just does not work or allow the creation of
calendars.

Try to install SOGo and connect to a user calendar. You will see that
you cannot even enter the parameters.

I found a workaround and currently use Thunderbird.

A solution would be to install Evolution, create the calendar entries
and then delete Evolution again. This works as well (and creates the
config file mentioned above).

I cannot add any more information to this. Sorry

However, have a merry Christmas

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1740792] Re: Automatic login still requires user password after suspend/hibernate

2018-12-10 Thread Wolf
Being a more or less "normal" user, I find this behaviour highly
unexpected.

When I decide for auto-login, I do decide that access control to my
computer is carried out by my house door and its locks, I do not want to
be bothered with password prompts after every resume.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1740792

Title:
  Automatic login still requires user password after suspend/hibernate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1740792/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687864] Re: auto-login and "privacy -> auto screen lock -> disable" do not work

2018-12-10 Thread Wolf
*** This bug is a duplicate of bug 1740792 ***
https://bugs.launchpad.net/bugs/1740792

Agreed!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687864] Re: auto-login and "privacy -> auto screen lock -> disable" do not work

2018-12-07 Thread Wolf
When booting my system, it does auto-login without typing in my password. 
That's fine.
When I resume the system from suspend, I always have to type in my password, 
but there is no need for that, I want auto-login after suspend&resume as well.

As I understood @seb128, this is correct behaviour. True?
In that case I'd like to state that this does not make much sense for me, IMHO 
there should be an option to enable "auto-login after suspend&resume" as well.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687864] Re: auto-login and "privacy -> auto screen lock -> disable" do not work

2018-12-06 Thread Wolf
It's really annoying that this silly bug still persists!

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1799430] Re: Icon dock visible on lock screen

2018-11-15 Thread Wolf Rogner
Just to let others know:
@Plurto 's suggestion to set the dock transparency to FIXED (which makes the 
dock assume a static color) does not remedy the situation on my machines.

I tried with different transparency settings as well.

The issue still exists

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1799430

Title:
  Icon dock visible on lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-dashtodock/+bug/1799430/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1799430] Re: Icon dock visible on lock screen

2018-11-15 Thread Wolf Rogner
It gets better all the while.

Now the desktop shows completely (with open application windows).
Interaction is not possible in the windows but the content can be seen.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1799430

Title:
  Icon dock visible on lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-dashtodock/+bug/1799430/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1801382] Re: printing complex documents does not reproduce screen image on paper

2018-11-13 Thread Wolf Rogner
Todays update of evince (3.30.1-1ubuntu1.2) did not change anything.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1801382

Title:
  printing complex documents does not reproduce screen image on paper

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1801382/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1799430] Re: Icon dock visible on lock screen

2018-10-27 Thread Wolf Rogner
The activity menu remains operational. This leads to the situation that
applications can be started, stopped and system tools be launched.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1799430

Title:
  Icon dock visible on lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-dashtodock/+bug/1799430/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1785174] Re: [solved] nvidia driver - does not resume from suspend

2018-10-23 Thread Wolf
Problem occurs again with 4.15.0-38-generic,
with all of them:
nouveau, nvidia 390, 396 and 410

** Changed in: gnome-control-center (Ubuntu)
   Status: Fix Released => New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1785174

Title:
  [solved] nvidia driver - does not resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1785174/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1799430] [NEW] Icon dock visible on lock screen

2018-10-23 Thread Wolf Rogner
Public bug reported:

When locking the machine with alt-L the icon dock is still visible.

After Login, the dock does not get adjusted to the top menu.

In rare cases, the dock does not respond any more. This requires a
reboot of the machine

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: mutter 3.30.1-1
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
Uname: Linux 4.18.0-10-generic x86_64
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Oct 23 12:59:27 2018
InstallationDate: Installed on 2018-04-30 (176 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: mutter
UpgradeStatus: Upgraded to cosmic on 2018-10-20 (2 days ago)

** Affects: mutter (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug cosmic

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1799430

Title:
  Icon dock visible on lock screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mutter/+bug/1799430/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1785174] Re: [solved] nvidia driver - does not resume from suspend

2018-09-13 Thread Wolf
Seems to be resolved with 4.15.0-34-generic.

Great!

** Summary changed:

- nvidia driver - does not resume from suspend
+ [solved] nvidia driver - does not resume from suspend

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1785174

Title:
  [solved] nvidia driver - does not resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1785174/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1791054] Re: Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

2018-09-10 Thread Wolf Pichler
Done.

cat /var/lib/whoopsie/whoopsie-id
9308e09d7878d0c0d8ead53939cd5e88e7c149ecd35cb08a25e4baa94126f02dc10b574f67e99c30cfae4f2ee05852ce672611907b1c0d49afa3bf0a48bd

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1791054

Title:
  Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1791054/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1791054] Re: Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

2018-09-07 Thread Wolf Pichler
For a while Logout/Resume/Switch User worked fine with Wayland (as well
as with Xorg when I cross-checked it).

But finally, when I tried "Switch User" again with Wayland, I got stuck
on the Login-Page of the current user - it was not possible to get the
page displaying all available users.

To be sure I made no mistake I checked:
echo $XDG_SESSION_TYPE
wayland

The first line in the attached syslog should be the moment when I clicked 
"Switch User".
The last line seems to be the moment when I logged in as original user again.
Both lines contain the same error message.


** Attachment added: "syslog_Wayland_UserSwitch"
   
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1791054/+attachment/5186149/+files/syslog_Wayland_UserSwitch

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1791054

Title:
  Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1791054/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1791054] [NEW] Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

2018-09-06 Thread Wolf Pichler
Public bug reported:

After Logout or Resume one ultimately ends up at a black screen on a
completely unresponsive system.

Only the power button helps in this case - I guess the "Emergency Sync"
in the attached syslog marks the point in time when the power button was
pressed.

###

apt-cache policy gdm3:
gdm3:
  Installed: 3.28.2-0ubuntu1.4
  Candidate: 3.28.2-0ubuntu1.4
  Version table:
 *** 3.28.2-0ubuntu1.4 500
500 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
500 http://archive.ubuntu.com/ubuntu bionic-security/main amd64 Packages
100 /var/lib/dpkg/status
 3.28.0-0ubuntu1 500
500 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages

lsb_release -rd:
Description: Ubuntu 18.04.1 LTS
Release: 18.04

** Affects: gdm3 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: bionic

** Attachment added: "syslog_unresponsive"
   
https://bugs.launchpad.net/bugs/1791054/+attachment/5185549/+files/syslog_unresponsive

** Package changed: system-config-printer (Ubuntu) => gdm3 (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1791054

Title:
  Ubuntu 18.04.1 becomes unresponsive after Logout or Resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1791054/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1785174] Re: nvidia driver - does not resume from suspend

2018-08-08 Thread Wolf
** Description changed:

- The same as always:
  System gets to sleep (systemctl suspend), when pressing a key to resume from 
sleep, the system will power up (fans and hard disk can be heard), but screens 
remain dark. Not even terminals can be accessed (ctrl-alt-F2...6).
- No problem with nouveau driver this time...
+ This only happens with TWO MONITORS ATTACHED. One monitor: no problem. 
+ With nouveau driver, two monitors are working as well.
  
  ubuntu GNOME 18.04, clean install
+ kernel 4.15.0-29-generic #31-Ubuntu
  Fujitsu-Siemens Celsius WT-380
  nvidia GT 630
- two monitors - MY GUESS IS THAT THIS IS IS AN IMPORTANT ASPECT
  
  Tried nvidia340, 390 and 396 - all the same result.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1785174

Title:
  nvidia driver - does not resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1785174/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1785174] Re: nvidia driver - does not resume from suspend

2018-08-08 Thread Wolf
After the last update (4.15.0-30-generic), suspend only works with one
monitor and the nouveau driver.

NOT with nvidia drivers (one or two monitors), not with nouveau driver
and two monitors.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1785174

Title:
  nvidia driver - does not resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1785174/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1785174] [NEW] nvidia driver - does not resume from suspend

2018-08-02 Thread Wolf
Public bug reported:

The same as always:
System gets to sleep (systemctl suspend), when pressing a key to resume from 
sleep, the system will power up (fans and hard disk can be heard), but screens 
remain dark. Not even terminals can be accessed (ctrl-alt-F2...6).
No problem with nouveau driver this time...

ubuntu GNOME 18.04, clean install
Fujitsu-Siemens Celsius WT-380
nvidia GT 630
two monitors - MY GUESS IS THAT THIS IS IS AN IMPORTANT ASPECT

Tried nvidia340, 390 and 396 - all the same result.

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  The same as always:
  System gets to sleep (hibernate), when pressing a key to resume from sleep, 
the system will power up (fans and hard disk can be heard), but screens remain 
dark. Not even terminals can be accessed (ctrl-alt-F2...6).
  No problem with nouveau driver this time...
  
  ubuntu GNOME 18.04, clean install
  Fujitsu-Siemens Celsius WT-380
  nvidia GT 630
+ two monitors - MY GUESS IS THAT THIS IS IS AN IMPORTANT ASPECT
  
  Tried nvidia340, 390 and 396 - all the same result.

** Summary changed:

- nvidia driver - does not resume from hibernate
+ nvidia driver - does not resume from suspend

** Description changed:

  The same as always:
- System gets to sleep (hibernate), when pressing a key to resume from sleep, 
the system will power up (fans and hard disk can be heard), but screens remain 
dark. Not even terminals can be accessed (ctrl-alt-F2...6).
+ System gets to sleep (systemctl suspend), when pressing a key to resume from 
sleep, the system will power up (fans and hard disk can be heard), but screens 
remain dark. Not even terminals can be accessed (ctrl-alt-F2...6).
  No problem with nouveau driver this time...
  
  ubuntu GNOME 18.04, clean install
  Fujitsu-Siemens Celsius WT-380
  nvidia GT 630
  two monitors - MY GUESS IS THAT THIS IS IS AN IMPORTANT ASPECT
  
  Tried nvidia340, 390 and 396 - all the same result.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1785174

Title:
  nvidia driver - does not resume from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1785174/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687864] Re: auto-login and "privacy -> auto screen lock -> disable" do not work

2018-08-02 Thread Wolf
After a clean install of bionic, the system behaved as expected for some days.
Now, I get autologin after system boot, but have to type my password after 
resume from sleep again. It happens with nvidia and nouveau driver.

** Changed in: gnome-control-center (Ubuntu)
   Status: Expired => New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1767817] Re: Full text search does not work

2018-05-08 Thread Wolf Walter
I have the same problem. Does also not work with the nautilus version
from flathub.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1767817

Title:
  Full text search does not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1767817/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687864] Re: auto-login and "privacy -> auto screen lock -> disable" do not work

2018-05-02 Thread Wolf
The problem persists on "bionic" as well. Keep trying... (-;

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1736820] Re: Laptop doesn't suspend on lid close

2018-04-30 Thread Wolf Rogner
I could narrow this issue to the NVIDIA graphics card.
If Intel is enabled (prime-select) the issue disappears and the machine sleeps 
sound and quiet.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1736820

Title:
  Laptop doesn't suspend on lid close

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1736820/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1767715] Re: suspend to RAM not working in 18.04

2018-04-30 Thread Wolf Rogner
*** This bug is a duplicate of bug 1736820 ***
https://bugs.launchpad.net/bugs/1736820

I could narrow this issue down to the NVIDIA driver.
Setting the graphics card to Intel eliminates the issue.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1767715

Title:
  suspend to RAM not working in 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1767715/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1767715] [NEW] suspend to RAM not working in 18.04

2018-04-28 Thread Wolf Rogner
Public bug reported:

System: Ubuntu 18.04 fresh install
HW: Macbook Pro Retina 15"

Settings in Tweak: Suspend on Lid closed

The machine does not suspend after lid is closed

syslog: ---
Apr 28 21:42:18 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:18 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:19 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:19 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:22 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:22 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:26 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:26 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:26 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:26 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:27 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:34 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:34 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:34 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: (EE) event7  - 
bcm5974: kernel bug: Touch jump detected and discarded.
Apr 28 21:42:34 mbpr15a /usr/lib/gdm3/gdm-x-session[2063]: See 
https://wayland.freedesktop.org/libinput/doc/1.10.4/touchpad_jumping_cursor.html
 for details
Apr 28 21:42:35 mbpr15a gnome-shell[1460]: _st_paint_shadow_with_opacity: 
assertion 'shadow_pipeline != NULL' failed

...
-

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gdm3 3.28.0-0ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
Uname: Linux 4.15.0-20-generic x86_64
NonfreeKernelModules: wl nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat Apr 28 21:46:37 2018
InstallationDate: Installed on 2018-04-28 (0 days ago)
InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: gdm3
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gdm3 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm3 in Ubuntu.
https://bugs.launchpad.net/bugs/1767715

Title:
  suspend to RAM not working in 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1767715/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1731718] Re: screencast freezes

2018-01-17 Thread Wolf Rogner
In my case, the machine hangs up completely

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1731718

Title:
  screencast freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1731718/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2017-12-10 Thread Wolf Rogner
How do you add a calendar in GNOME calendar?

I tried:
Calendar Settings -> Add from Web -> entered my CalDAV calendar URL -> The Add 
button remains disabled

It should be enabled and a control file should be created in
~/.config/evolution/sources.

This does not happen.

Without Evolution or text fiddling, it is not possible to attach to a
calendar other than the predefined (Google, Yahoo, etc.).

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2017-12-10 Thread Wolf Rogner
As a workaround:

in ~/.config/evolution/sources create a file calendar.source

$ touch calendar.source

edit it:

[Data Source]
DisplayName=
Enabled=true
Parent=webcal-stub

[WebDAV Backend]
AvoidIfmatch=false
CalendarAutoSchedule=false
DisplayName=
EmailAddress=
ResourcePath=
ResourceQuery=
SslTrust=

[Offline]
StaySynchronized=true

[Calendar]
BackendName=caldav
Color=#CC
Selected=true

[Authentication]
Host=
Method=plain/password
Port=80
ProxyUid=system-proxy
RememberPassword=true
User=
CredentialName=

[Security]
Method=none

[Refresh]
Enabled=true
IntervalMinutes=1



-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] Re: Creation of mail/contact/calendar accounts impossible

2017-12-10 Thread Wolf Rogner
** Changed in: gnome-control-center (Ubuntu)
   Status: Expired => New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1722455] [NEW] Creation of mail/contact/calendar accounts impossible

2017-10-09 Thread Wolf Rogner
Public bug reported:

If one wants to use Gnome Calendar or Gnome Contacts one has to create
accounts to access the server. Gnome control centre provides prepared
account templates for common public providers.

There is an IMAP template that is broken (does not allow to connect to inhouse 
mail servers).
Also adding Calendar or Contact connection is not possible.

In Gnome Calendar adding new calendars is impossible (there is a
workaround by temporarily installing California but that is very
unstable).

There needs to be a way to install DAV connectors to CALDav and CARDDav
as is possible in Thunderbird.

Possible workaround (which is not stable):

Under ~/.config/evolution one can add a text file containing the
configuration to the required service.

As there is no refresh function in Calendar or Contacts, this is a
fragile solution though (requires constant session creation aka
logout/login)

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-control-center 1:3.26.1-0ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-15.16-generic 4.13.4
Uname: Linux 4.13.0-15-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Oct 10 08:11:26 2017
InstallationDate: Installed on 2017-09-05 (34 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170902)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1722455

Title:
  Creation of mail/contact/calendar accounts impossible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1722455/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1718890] [NEW] name resolution stops working

2017-09-22 Thread Wolf Rogner
Public bug reported:

System: Ubuntu 17.10 beta
DNS server hosts an internal and an external domain (the internal is used for 
internal purposes).

Name resolution works for a while. Every now and then, the name resolution 
stops working.
This issue was reported in 17.04 but no suggestion for resolv has worked.

In 17.10 the symptoms are the same, the duration till it happens are
longer (about 1.5 days).

restarting systemd-resolved solves the issue temporarily. However, this
should not be required at all.

Happens on a fresh install

Setup:

DNS serves rsb.at and rsb.intern
Server www.rsb.at can be reached even when internal resolution fails.
Seems that the internal DNS server (the first in the line) is not queried first.
If so, an rsb.intern address will not be found.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: systemd 234-2ubuntu10
ProcVersionSignature: Ubuntu 4.13.0-11.12-generic 4.13.1
Uname: Linux 4.13.0-11-generic x86_64
ApportVersion: 2.20.7-0ubuntu1
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep 22 11:05:57 2017
InstallationDate: Installed on 2017-09-05 (16 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170902)
Lsusb:
 Bus 002 Device 002: ID 05ac:8406 Apple, Inc. 
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 003: ID 05ac:0273 Apple, Inc. 
 Bus 001 Device 002: ID 05ac:8290 Apple, Inc. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Apple Inc. MacBookPro12,1
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.13.0-11-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: systemd
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/18/2017
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MBP121.88Z.0167.B33.1706181928
dmi.board.name: Mac-E43C1C25D4880AD6
dmi.board.vendor: Apple Inc.
dmi.board.version: MacBookPro12,1
dmi.chassis.type: 9
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-E43C1C25D4880AD6
dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP121.88Z.0167.B33.1706181928:bd06/18/2017:svnAppleInc.:pnMacBookPro12,1:pvr1.0:rvnAppleInc.:rnMac-E43C1C25D4880AD6:rvrMacBookPro12,1:cvnAppleInc.:ct9:cvrMac-E43C1C25D4880AD6:
dmi.product.family: MacBook Pro
dmi.product.name: MacBookPro12,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.
mtime.conffile..etc.systemd.resolved.conf: 2017-09-06T23:14:52.682864

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1718890

Title:
  name resolution stops working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1718890/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687863] Re: evolution PIM does not reliably reconnect after suspend

2017-09-19 Thread Wolf
Somehow related:
When booting the system, if I do not log in immediately, I get a 
"Failed to lookup credentials: Failed to get password from GOA: timeout" 
message.

I'd like a auto-reconnect feature at evolution. It could be configurable, in 
the case of timeout it could - according to user's settings
- either keep trying 
- or prompt to the user "what shall I do" 
- or just throw an error message

There are some somehow related bug reports, eg
https://bugs.archlinux.org/task/46626
https://bugzilla.redhat.com/show_bug.cgi?id=1259434

but I guess, a cheap, but effective hack would be to make evolution just
a little more tolerant against net connection loss by trying to
autoconnect more patiently.


** Bug watch added: Red Hat Bugzilla #1259434
   https://bugzilla.redhat.com/show_bug.cgi?id=1259434

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687863

Title:
  evolution PIM does not reliably reconnect after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687863/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1717486] Re: gnome visual issues

2017-09-17 Thread Wolf Rogner
Figured out how to reproduce this:

Appended screenshot 1 demonstrates how my favorites bar looks like
normally.

When scrolling down with two fingers with the mouse over the bar, the
icons are gone (see screenshot 2).

Icons cannot be called back by reverse scrolling with the mouse cursor
in the favorites bar.

Workaround: Screen-lock and unlock will bring up the fav-bar correctly.


** Attachment added: "Screenshot with fav icons in place"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1717486/+attachment/4951676/+files/Screenshot%20from%202017-09-17%2013-12-30.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in Ubuntu.
https://bugs.launchpad.net/bugs/1717486

Title:
  gnome visual issues

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1717486/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1717486] Re: gnome visual issues

2017-09-17 Thread Wolf Rogner
** Attachment added: "Screenshot without fav icons"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1717486/+attachment/4951677/+files/Screenshot%20from%202017-09-17%2013-14-04.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in Ubuntu.
https://bugs.launchpad.net/bugs/1717486

Title:
  gnome visual issues

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1717486/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1717486] [NEW] gnome visual issues

2017-09-15 Thread Wolf Rogner
Public bug reported:

since the upgrade of gnome-session from 3.25.90 to 3.26.0 I observe
weird visual phenomena.

1. Icons in the task bar disappear (and only appear after logout/login)
2. Windows get drawn with black margins and sometimes with black canvas (gets 
away after a second or so)

Issue can be related to upgrade of libmutter (libmutter-1-0:amd64
3.25.91+20170902~ce515c5-1ubuntu1 -> 3.26.0-1)

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-session (not installed)
ProcVersionSignature: Ubuntu 4.13.0-11.12-generic 4.13.1
Uname: Linux 4.13.0-11-generic x86_64
ApportVersion: 2.20.7-0ubuntu1
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep 15 12:33:43 2017
InstallationDate: Installed on 2017-09-05 (9 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170902)
SourcePackage: gnome-session
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-session (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful wayland-session

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in Ubuntu.
https://bugs.launchpad.net/bugs/1717486

Title:
  gnome visual issues

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1717486/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687863] Re: evolution PIM does not reliably reconnect after suspend

2017-09-14 Thread Wolf
Still the case with zesty.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687863

Title:
  evolution PIM does not reliably reconnect after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687863/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1715854] [NEW] Adding local mail server not possible

2017-09-08 Thread Wolf Rogner
Public bug reported:

In Settings / Online Accounts
trying to connect a local SMTP/IMAP account fails.

Trying to add the IMAP works (one has to ignore the warning about self signed 
certificate).
SMTP does not get added

(gnome-control-center-alt:6192): GoaBackend-WARNING **:
g_socket_client_connect_to_host() failed: Could not connect to
smtp.rsb.intern: Connection refused (g-io-error-quark, 39)

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gnome-control-center 1:3.25.92.1-0ubuntu1
ProcVersionSignature: Ubuntu 4.12.0-13.14-generic 4.12.10
Uname: Linux 4.12.0-13-generic x86_64
ApportVersion: 2.20.7-0ubuntu1
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Sep  8 12:57:37 2017
InstallationDate: Installed on 2017-09-05 (2 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170902)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug artful

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1715854

Title:
  Adding local mail server not possible

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1715854/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1714933] [NEW] Xenial: Please roll SRU with upstream fix for networkd to "accept colons in network interface names"

2017-09-04 Thread Tobias Wolf
Public bug reported:

PR: https://github.com/systemd/systemd/pull/5117

issue: https://github.com/systemd/systemd/issues/4057

Before the networkd from 231 was backported, it was possible to use
interface alias names that contained a colon, e.g. eth0:1. This is
commonly used to make legacy tools like "ifconfig" work, because they
*expect* a colon in the interface name.

Martin told me to file a bug for this.

Merging networkd from 231 lead to a regression where valid configs were
not accepted anymore after the backport. Please merge that fix for the
regression.

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1714933

Title:
  Xenial: Please roll SRU with upstream fix for networkd to "accept
  colons in network interface names"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1714933/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 1687863] Re: evolution PIM does not reliably reconnect after suspend

2017-06-07 Thread Wolf
** Description changed:

- After suspend, evolution PIM will get "offline" on my desktop (My
- system: ubuntu 16.10, gnome desktop) in about half of the occurencies.
- Switching it "online" manually works, the machine reconnects to the web
- without any trouble.
+ After resume from suspend, evolution PIM will remain "offline" on my
+ desktop (My system: ubuntu 16.10, gnome desktop) in about half of the
+ occurencies. Switching it "online" manually works. The machine itself
+ reconnects to the web without any trouble.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687863

Title:
  evolution PIM does not reliably reconnect after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687863/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1694145] [NEW] nautilus does not automount USB hard disks on plug-in

2017-05-28 Thread Wolf Rogner
Public bug reported:

Ubuntu Budgie 17.04 (fresh install)

Inserting a USB hard disk does not automount like in Ubuntu Unity.
dconf settings are similar.

Device is connected and can be mounted in Nautilus manually.

ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: nautilus 1:3.20.4-0ubuntu2
ProcVersionSignature: Ubuntu 4.10.0-21.23-generic 4.10.11
Uname: Linux 4.10.0-21-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Sun May 28 20:09:16 2017
InstallationDate: Installed on 2017-05-25 (2 days ago)
InstallationMedia: Ubuntu-Budgie 17.04 "Zesty Zapus" - Release amd64 (20170412)
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug zesty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1694145

Title:
  nautilus does not automount USB hard disks on plug-in

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1694145/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1694006] [NEW] Tracker error slows down system and breaks suspend to RAM

2017-05-27 Thread Wolf Rogner
Public bug reported:

By default Budgie installs tracker.

$ tracker status

(tracker status:11680): Tracker-WARNING **: tracker-backend.vala:211: Falling 
back to bus backend, the direct backend failed to initialize: unable to open 
database file
Could not get basic status for Tracker, 
GDBus.Error:org.freedesktop.Tracker1.SparqlError.Internal: no such table: 
nfo:FileDataObject

in syslog:

May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: g_object_unref: assertion 
'G_IS_OBJECT (object)' failed
May 27 13:02:32 mbpr15 tracker-extract[11366]: char* 
poppler_page_get_text(PopplerPage*): assertion 'POPPLER_IS_PAGE (page)' failed


May 27 13:06:23 mbpr15 tracker-extract[11638]: Could not insert metadata for 
item "file:///home/wolf/Documents/books/it-vertrage-kurz-und-praktisch.pdf": 
42.33: invalid UTF-8 character
May 27 13:06:23 mbpr15 tracker-extract[11638]: If the error above is recurrent 
for the same item/ID, consider running "tracker-extract" in the terminal with 
the TRACKER_VERBOSITY=3 environment variable, and filing a bug with the 
additional information



This slows down the system tremendously. As a side effect, the system
can't go into suspend to RAM mode (wakes up every second)

ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: tracker 1.12.0-0ubuntu1
ProcVersionSignature: Ubuntu 4.10.0-21.23-generic 4.10.11
Uname: Linux 4.10.0-21-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Sat May 27 13:04:43 2017
InstallationDate: Installed on 2017-05-25 (1 days ago)
InstallationMedia: Ubuntu-Budgie 17.04 "Zesty Zapus" - Release amd64 (20170412)
SourcePackage: tracker
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: tracker (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug zesty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to tracker in Ubuntu.
https://bugs.launchpad.net/bugs/1694006

Title:
  Tracker error slows down system and breaks suspend to RAM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker/+bug/1694006/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1693895] [NEW] ubuntu budgie suspend to ram fails on Macbook Pro Ret

2017-05-26 Thread Wolf Rogner
Public bug reported:

A default installation of Ubuntu Budgie fails to suspend to RAM.

Workaround:
sudo apt-get install pm-utils

=> Suspend works

ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: systemd 232-21ubuntu3
ProcVersionSignature: Ubuntu 4.10.0-21.23-generic 4.10.11
Uname: Linux 4.10.0-21-generic x86_64
NonfreeKernelModules: wl nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.4-0ubuntu4.1
Architecture: amd64
CurrentDesktop: Budgie:GNOME
Date: Fri May 26 20:13:16 2017
InstallationDate: Installed on 2017-05-25 (0 days ago)
InstallationMedia: Ubuntu-Budgie 17.04 "Zesty Zapus" - Release amd64 (20170412)
MachineType: Apple Inc. MacBookPro10,1
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.10.0-21-generic.efi.signed 
root=UUID=873566f9-4c01-4dae-8ca9-99c95dfbe269 ro quiet splash vt.handoff=7
SourcePackage: systemd
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/21/2012
dmi.bios.vendor: Apple Inc.
dmi.bios.version: MBP101.88Z.00EE.B03.1212211437
dmi.board.asset.tag: Base Board Asset Tag#
dmi.board.name: Mac-C3EC7CD22292981F
dmi.board.vendor: Apple Inc.
dmi.board.version: MacBookPro10,1
dmi.chassis.type: 10
dmi.chassis.vendor: Apple Inc.
dmi.chassis.version: Mac-C3EC7CD22292981F
dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP101.88Z.00EE.B03.1212211437:bd12/21/2012:svnAppleInc.:pnMacBookPro10,1:pvr1.0:rvnAppleInc.:rnMac-C3EC7CD22292981F:rvrMacBookPro10,1:cvnAppleInc.:ct10:cvrMac-C3EC7CD22292981F:
dmi.product.name: MacBookPro10,1
dmi.product.version: 1.0
dmi.sys.vendor: Apple Inc.

** Affects: systemd (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug zesty

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1693895

Title:
  ubuntu budgie suspend to ram fails on Macbook Pro Ret

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1693895/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1687864] [NEW] auto-login and "privacy -> auto screen lock -> disable" do not work

2017-05-03 Thread Wolf
Public bug reported:

On my machine, after booting I always have to type in my password,
allthough I set "settings -> users -> auto login".

The same happens after resume from suspend, allthough I set "privacy ->
auto screen lock" to "disabled". In both cases the screen attached
appears.

My system:
ubuntu 16.10
gnome desktop
lightdm

Cheers,
Wolf

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "IMG_20170503_085124.jpg"
   
https://bugs.launchpad.net/bugs/1687864/+attachment/4871271/+files/IMG_20170503_085124.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687864

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687864/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1687865] [NEW] auto-login and "privacy -> auto screen lock -> disable" do not work

2017-05-03 Thread Wolf
Public bug reported:

On my machine, after booting I always have to type in my password,
allthough I set "settings -> users -> auto login".

The same happens after resume from suspend, allthough I set "privacy ->
auto screen lock" to "disabled". In both cases the screen attached
appears.

My system:
ubuntu 16.10
gnome desktop
lightdm

Cheers,
Wolf

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "IMG_20170503_085124.jpg"
   
https://bugs.launchpad.net/bugs/1687865/+attachment/4871272/+files/IMG_20170503_085124.jpg

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687865

Title:
  auto-login and "privacy -> auto screen lock -> disable" do not work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687865/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1687863] [NEW] evolution PIM does not reliably reconnect after suspend

2017-05-02 Thread Wolf
Public bug reported:

After suspend, evolution PIM will get "offline" on my desktop (My
system: ubuntu 16.10, gnome desktop) in about half of the occurencies.
Switching it "online" manually works, the machine reconnects to the web
without any trouble.

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/1687863

Title:
  evolution PIM does not reliably reconnect after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1687863/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1660130] [NEW] photo cannot be added to seahorse GPG keys

2017-01-29 Thread Wolf Rogner
Public bug reported:

In Ubuntu 16.10 (fresh install) I cannot add a photo to my GPG keys.

Trying to add a jpg -> Resize / Don't resize -> General error, cannot add photo
With png the general error appears without offering resizing.

Used to work in 16.04

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: seahorse 3.20.0-2ubuntu1
ProcVersionSignature: Ubuntu 4.8.0-34.36-generic 4.8.11
Uname: Linux 4.8.0-34-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.3-0ubuntu8.2
Architecture: amd64
CurrentDesktop: Unity
Date: Sun Jan 29 14:02:35 2017
InstallationDate: Installed on 2017-01-27 (2 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
SourcePackage: seahorse
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: seahorse (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to seahorse in Ubuntu.
https://bugs.launchpad.net/bugs/1660130

Title:
  photo cannot be added to seahorse GPG keys

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/seahorse/+bug/1660130/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1639421] [NEW] Software centre (gnome-software) crashes after reboot and login

2016-11-05 Thread Wolf Rogner
Public bug reported:

Regularly after reboot and login gnome-software crashes.
A bug report seems to be submitted afterwards (not quite sure).

gnome-software also seems to crash regularly during operation.

I have not figured out any correlation to other events.

This is new in 16.10 (fresh install) and happens on a Live image as
well.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: gnome-software 3.20.1+git20161003.0.7ac7d1b-0ubuntu1
ProcVersionSignature: Ubuntu 4.8.0-26.28-generic 4.8.0
Uname: Linux 4.8.0-26-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Nov  5 10:09:33 2016
InstallationDate: Installed on 2016-10-22 (13 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
SourcePackage: gnome-software
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-software (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-software in Ubuntu.
https://bugs.launchpad.net/bugs/1639421

Title:
  Software centre (gnome-software) crashes after reboot and login

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-software/+bug/1639421/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1633824] Re: nautilus ignores trash on external drives

2016-10-30 Thread Wolf Rogner
I'm not as lucky as clel.

On 4 machines running 16.10 this can be reproduced (no logout/login helps).
3 are Macs, 1 HP.
Different drives (USB-Sticks, HDs, SSDs) used to test.

I could not reproduce this with internal disks though.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1633824

Title:
  nautilus ignores trash on external drives

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1633824/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1635375] Re: First letter doubled in Facebook posts.

2016-10-20 Thread wolf
Does this only occur in Epiphany or in other browsers too?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to epiphany-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1635375

Title:
  First letter doubled in Facebook posts.

To manage notifications about this bug go to:
https://bugs.launchpad.net/elementaryos/+bug/1635375/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1634009] [NEW] Trash on external HDs inoperative

2016-10-17 Thread Wolf Rogner
Public bug reported:

Deleting files on the internal drive moves file into Trash can.
The Trash icon changes (buldge) indicating files to be expunged.

On external HDs this is not the case.
Files get moved to the Trash folder but the icon does not change and the menu 
item to empty trash is inactive.
Thus, deleted files on external drives cannot be deleted via the GUI.
Deleting from command file (in the .Trash folder) is possible and currently the 
only way to delete files on external HDs

This refers to Nautilus 3.20.3

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: nautilus 1:3.20.3-1ubuntu3
ProcVersionSignature: Ubuntu 4.8.0-22.24-generic 4.8.0
Uname: Linux 4.8.0-22-generic x86_64
NonfreeKernelModules: nvidia_uvm wl nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.3-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Oct 17 09:10:27 2016
InstallationDate: Installed on 2013-05-17 (1248 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64+mac (20130424)
SourcePackage: nautilus
UpgradeStatus: Upgraded to yakkety on 2016-10-15 (1 days ago)
usr_lib_nautilus: gnome-terminal 3.20.2-1ubuntu5

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug yakkety

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1634009

Title:
  Trash on external HDs inoperative

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1634009/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1314556] Re: Unable to mount Android MTP device

2016-04-27 Thread Nordic Wolf
I can't connect my Android phone in 16.04, even worse my Auquaris E4.5
isn't able to connect either. Kinda painful that an Ubuntu phone can't
connect to a computer running Ubuntu. ;P

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gvfs in Ubuntu.
https://bugs.launchpad.net/bugs/1314556

Title:
  Unable to mount Android MTP device

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1314556/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-07-13 Thread Wolf Rogner
well then ... excellent work :-)

what is "dnd"?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-07-13 Thread Wolf Rogner
Just installed 0.6.9 and sorry, no.

It does not fix the huge icons at all.

The shrunken folder icons are, as far as I can see, gone.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-30 Thread Wolf Rogner
I tried the following:

added Humanity to the inheritance list: same effect (even though there are more 
sizes available)
replaced Humanity-Dark with Humanity: same effect.

Made a symbolic link to the Humanity mimes: same effect.
Some icons get increased to 200% while others only grow to 150%.

Either the icon themes are broken or it is something we oversee.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-30 Thread Wolf Rogner
My display has a resolution of 2880x1800. I need to zoom the display
otherwise I cannot read anything. That's why I zoom 1,62 (on the Macbook
13", 1,5 achieves the same result).

Also, I like the icons to be at 150% but in List-View I am more
interested in the text, thus 66%

As I found out, this has nothing to do with the penomenon. Zomming to
150% in Nautilus gives the same result irrespectively of the display or
its zoom factor.

Next: Missing Icons. If this is the case, it must have happened during upgrade. 
But here comes another interesting part:
I made a backup of the icons before upgrading. The folders are identical.

So, I doubt this is an issue of missing icons. I can cross check if I would 
know, what the normal size of icons would be (I presumed 48x48 for default 
100%). Then the next size would be 64x64. There, the icons are missing.
In 128x128 there is a link to the svgs again.

In my ubuntu-mono-dark, the inheritance adds Humanity-Dark which has less icons 
than Humanity.
I have added Humanity to the inheritance list and will test this now. Be back 
right then

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
OK, now we come closer to the icons.
(the gvfs-mime was just an excursion to more precisely understand whats going 
on under the hood).

So the question now is, which icon set does Nautilus choose?

The Theme is Ambiance.
The icon theme in the index.theme is ubuntu-mono-dark

But there are no icons for applications or documents in this theme.
I observed that Nautilus takes the folder icons from Humanity. Some icons are 
taken even from the pixmaps directory.

So, there must be some other mechanism to extract icons.

Another interesting observation: The phenomenon can be observed on a LiveCD (or 
LiveUSB)
I have tried it on all my other machines (most Apple hardware, some HP and 
other machines).

With a Nautilus setting of 150% for icon view, this can be observed on
all machines.

try:

Nautilus preferences:
Icon View Defaults: Default zoom level: 150%
List View Defaults: Default zoom level: 66%

Make an LO document, change the zoom with CTRL-+/-.

Thanks for the excursion into how Unity works in conjunction with GNOME.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
Interesting but not further fruitful.

gvfs-info 20060627\ One\ Codes.ods (just one sample)

gives these attributes:
...
display name: 20060627 One Codes.ods
...
type: regular
...
attributes:
  standard::type: 1
  standard::name: 20060627 One Codes.ods
...
  standard::icon: application-vnd.oasis.opendocument.spreadsheet, 
x-office-spreadsheet
  standard::content-type: application/vnd.oasis.opendocument.spreadsheet
  standard::fast-content-type: application/vnd.oasis.opendocument.spreadsheet
...
  standard::symbolic-icon: 
application-vnd.oasis.opendocument.spreadsheet-symbolic, 
x-office-spreadsheet-symbolic, application-vnd.oasis.opendocument.spreadsheet, 
x-office-spreadsheet
...


gvfs-mime --query 20060627\ One\ Codes.ods 
No default applications for '20060627 One Codes.ods' (Hey? right clicking 
provides open with LibreOffice Calc!!!)

Searched a bit more, found a reference to ~/.config/mimeapps.list and
~/.local/share/applications/mimeapps.list. They differ in content but
provide overlapping sections and mime types.

Strange that the application/vnd.oasis.opendocument.spreadsheet is
missing from both files.

I compared these files to the ones I had with 14.10 (where the icons
were displayed correctly): No differences here.

Any suggestions?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
Correction: the mimeapps.list only overlap in section name ([Added
Associations]) but the items are different.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
I tried a few things:

reinstalled libreoffice-common (which contains the icons).

Nothing changed

I changed an icon manually and it worked (changed to hicolor icons,
48x48).

Nothing changed

dconf-editor: claims desktop icon set is ubuntu-mono-dark (which has no
libreoffice icons).

No entry for nautilus.

Thus the question: How does Unity get its icons?

The desktop file states (e.g. 
/usr/share/applications/libreoffice-writer.desktop): 
...
Icon=libreoffice-writer
...

and on the machine I can find:

./app-install/icons/libreoffice-writer.svg
./icons/gnome/16x16/apps/libreoffice-writer.png
./icons/gnome/32x32/apps/libreoffice-writer.png
./icons/gnome/48x48/apps/libreoffice-writer.png
./icons/gnome/128x128/apps/libreoffice-writer.png
./icons/gnome/scalable/apps/libreoffice-writer.svg
./icons/gnome/256x256/apps/libreoffice-writer.png
./icons/hicolor/16x16/apps/libreoffice-writer.png
./icons/hicolor/32x32/apps/libreoffice-writer.xpm
./icons/hicolor/32x32/apps/libreoffice-writer.png
./icons/hicolor/48x48/apps/libreoffice-writer.png
./icons/hicolor/128x128/apps/libreoffice-writer.png
./icons/hicolor/scalable/apps/libreoffice-writer.svg
./icons/hicolor/256x256/apps/libreoffice-writer.png
./icons/HighContrast/16x16/apps/libreoffice-writer.png
./icons/HighContrast/32x32/apps/libreoffice-writer.png
./icons/HighContrast/48x48/apps/libreoffice-writer.png
./icons/HighContrast/22x22/apps/libreoffice-writer.png
./icons/HighContrast/256x256/apps/libreoffice-writer.png
./icons/HighContrast/24x24/apps/libreoffice-writer.png
./icons/locolor/16x16/apps/libreoffice-writer.png
./icons/locolor/32x32/apps/libreoffice-writer.png

Presuming Nautilus being a Gnome application, Nautilus searches for the
icons in the gnome part first (maybe someone can answer this quickly
before I have to dig into the sources).

So, as I am completely confused now, how can I help sort this out?

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
I have set display magnification to 1.62 in System Settings / Displays
I have set default icon magnification to 150% and list to 66% in Nautilus

I agree, it is strange.

The phenomenon is not constrained to LibreOffice icons. I found that
HTML files are the same icon size.

Here is a strange observation: the scalable icons of LibreOffice are
corrupt (see screenshot)

** Attachment added: "Screenshot from 2015-04-29 15:32:26.png"
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+attachment/4387526/+files/Screenshot%20from%202015-04-29%2015%3A32%3A26.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] Re: icons size issues in Nautilus

2015-04-29 Thread Wolf Rogner
Well, its the default (Humanity and Gnome for LibreOffice).
Screenshot attached.

I checked with Gnome, there are suitable icon sizes available.


** Attachment added: "Screenshot from 2015-04-29 13:55:23.png"
   
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+attachment/4387488/+files/Screenshot%20from%202015-04-29%2013%3A55%3A23.png

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448459] Re: nautilus context menu for devices

2015-04-29 Thread Wolf Rogner
You've never had to deal with my users ;-) (hope they don't read this,
one of them being my spouse)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448459

Title:
  nautilus context menu for devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448459/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448459] Re: nautilus context menu for devices

2015-04-27 Thread Wolf Rogner
Well if loosing data coincidentally is not a security issue, I can live
with it. It should be changed urgently though.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448459

Title:
  nautilus context menu for devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448459/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448754] Re: gnome-terminal menu items disappeared

2015-04-27 Thread Wolf Rogner
Thank you for this information. I have found that myself.

Have no Gnome desktop so didn't know if this was an error or a "feature".
Having played a bit with 15.04 I found several changes in the way applications 
work. Most of them are not beneficial.

I can live with this but I have users that might nag me about such a
change.

But thanks for the answer.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1448754

Title:
  gnome-terminal menu items disappeared

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/1448754/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448754] Re: xterm menu items disappeared

2015-04-26 Thread Wolf Rogner
of course gnome-terminal.

It's late here, sorry

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-terminal in Ubuntu.
https://bugs.launchpad.net/bugs/1448754

Title:
  xterm menu items disappeared

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/1448754/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1448407] [NEW] icons size issues in Nautilus

2015-04-25 Thread Wolf Rogner
Public bug reported:

Ubuntu 15.04 (right after upgrade)
Macbook Pro Retina 15 (menu scaling to 1,62)

Nautilus scaling 150% for icons and 66% for lists

Icons in Nautilus are displayed properly except for LibreOffice icons which are 
displayed 200-250%.
Previews are displayed same size as LibreOffice icons.
MS document files are displayed properly (150%)

Dragging a file over a folder previously (14.10) made the folder darker
(sometimes changing icon to opened) and the file could be dropped.

In 15.04 (Nautilus 3.14.2) the folder icon SHRINKS (to 100%) and cannot
be seen under the dragged icon.

Would be nice if the old behaviour would be restored.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: nautilus 1:3.14.2-0ubuntu9
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
NonfreeKernelModules: nvidia wl
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Apr 25 11:26:58 2015
GsettingsChanges:
 b'org.gnome.nautilus.list-view' b'use-tree-view' b'true'
 b'org.gnome.nautilus.list-view' b'default-column-order' b"['name', 'size', 
'type', 'date_modified', 'owner', 'group', 'permissions', 'mime_type', 'where', 
'date_accessed']"
InstallationDate: Installed on 2013-05-17 (707 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64+mac (20130424)
SourcePackage: nautilus
UpgradeStatus: Upgraded to vivid on 2015-04-25 (0 days ago)

** Affects: nautilus (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug third-party-packages vivid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1448407

Title:
  icons size issues in Nautilus

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1448407/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1427854] Re: evince does not print mixed layout documents

2015-03-04 Thread Wolf Rogner
Testfile again

** Attachment added: "Testfile resubmitted"
   
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1427854/+attachment/4334313/+files/Testfile_for_printing_problems.pdf

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1427854

Title:
  evince does not print mixed layout documents

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/1427854/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


  1   2   3   4   >