[Bug 2023572] Re: SRU gjs 1.72.4 to jammy

2024-09-20 Thread Robert Malz
Sorry for lack of update,
https://wiki.ubuntu.com/DesktopTeam/TestPlans/gjs was not executed.
For a test I wrote a script to spam random windows
let win = new Gtk.Window({
title: "Hello, GJS",
default_width: 200,
default_height: 100,
});
and left it over a week checking if any crashes happened.
tests were performed on 1.72.4-0ubuntu0.22.04.3~really.is.1.72.2.0ubuntu2

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

Title:
  SRU gjs 1.72.4 to jammy

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


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

[Bug 2080361] Re: Ubuntu 24.04.1 LTS Wayland crashes

2024-09-13 Thread Robert R. McDonald
** Package changed: gnome-shell (Ubuntu) => xwayland (Ubuntu)

** Changed in: xwayland (Ubuntu)
   Status: Incomplete => New

-- 
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/2080361

Title:
  Ubuntu 24.04.1 LTS Wayland crashes

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


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

[Bug 2080361] Re: Ubuntu 24.04.1 LTS Wayland crashes

2024-09-13 Thread Robert R. McDonald
Here are my file Journal.txt

** Attachment added: "journal.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2080361/+attachment/5816797/+files/journal.txt

-- 
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/2080361

Title:
  Ubuntu 24.04.1 LTS Wayland crashes

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


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

[Bug 2080361] Re: Ubuntu 24.04.1 LTS Wayland crashes

2024-09-13 Thread Robert R. McDonald
Here's my Prevjournal.txt

** Attachment added: "prevjournal.txt"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2080361/+attachment/5816798/+files/prevjournal.txt

-- 
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/2080361

Title:
  Ubuntu 24.04.1 LTS Wayland crashes

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


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

[Bug 2080361] Re: Ubuntu 24.04.1 LTS Wayland crashes

2024-09-12 Thread Robert R. McDonald
** Package changed: ubuntu => gnome-shell (Ubuntu)

-- 
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/2080361

Title:
  Ubuntu 24.04.1 LTS Wayland crashes

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


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

[Bug 2065432] Re: Unable to authenticate with smartcard: gnome-shell throws on unhandled promise rejection

2024-08-30 Thread Robert Malz
Adding debdiff with 2 patches required for noble package.
d/p/lp2065432-fix-login-with-smartcards.patch: fixes upstream bug
d/p/lp2065432-fix-auth-service-discovery.patch: fixes service discovery (not 
applicable to upstream)

** Description changed:

- Upstream report: https://gitlab.gnome.org/GNOME/gnome-
- shell/-/issues/7526
+ [ Impact ]
+ 
+  * Starting from gnome-shell version 46.0, which is available in noble, 
logging in to the 
+Ubuntu system with smart card does not work.
+
+  * Only workaround is to downgrade gnome-shell to a version 45.0
+ 
+  * Login problem is caused by two seperate issues, one caused by the bug in 
the upstream [1],
+second is related to ubuntu specific code added as part of patch:
+gdm-util-Figure-out-default-service-from-service-definiti.patch
+
+  * Upstream issue has been alraedy fixed with [2], issue was caused by feature
+which was checking conflicting sessions during login.
+  
+  * To fix login problem, upstream patch needs to be backported as well as
+ubuntu specific code fixed
+ 
+ [ Test Plan ]
+ 
+  * To reproduce an issue, smart card (with at least self signed certificate) 
is required.
+  
+  * The simplest steps to reproduce the problem:
+1. Create user "test"
+2. Configure sssd.conf:
+  root@rmalz:/etc/sssd# cat sssd.conf
+  [sssd]
+  services = pam
+  enable_files_domain = True
+  certificate_verification = no_verification
+ 
+  [certmap/implicit_files/test]
+  matchrule = .*
+ 
+  [pam]
+  pam_cert_auth = True
+3. Enable smart card login:
+pam-auth-update --disable sss-smart-card-required --enable 
sss-smart-card-optional
+ 
+  * With these settings, login "test" user. Two problems will occurr.
+First, gnome-shell will not prompt for a smart card PIN and will continue 
to ask for password.
+This is caused by incorrect detection of default auth service, issue 
introduced with:
+gdm-util-Figure-out-default-service-from-service-definiti.patch
+
+Second, if first problem is fixed, login screen will freeze. This issue is 
caused by upstream
+bug [1].
+ 
+ [ Where problems could occur ]
+ 
+  * Upstream patch is changing behavior of finding conflicting sessions,
+ possible risk of regression for non smart card cases
+ 
+  * There is additional patch [3], introduced as part of fix for [1]. It seems 
that this patch is fixing presentation issue
+which is different from initial login problem and no part of this SRU.
+ 
+  * Patches for both [2] and 
gdm-util-Figure-out-default-service-from-service-definiti.patch have been 
tested locally, allowing
+to login without issues.
+ 
+ [ Other Info ]
+ 
+  * Links:
+[1] - https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7526
+[2] - 
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448/diffs?commit_id=e5d9a0fec869adbe610c46114afaede04f8c89e2
+[3] - 
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3448/diffs?commit_id=647747fbd6afef2f9f939682ab6527f3877ffbfb
+ 
+  * Original case description:
+ Upstream report: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7526
  
  Opening as part of response to support ticket.
  
  After boot, GDM does not prompt for smartcard authentication correctly.
  It is possible to strike Esc and get GDM to prompt for a username and a
  smartcard PIN from the initial locked-out state, but this does not start
  a new desktop session and instead hangs. Striking Esc allows for the
  login to be attempted again, but with the same results.
  
  Syslog entries include unhandled promise rejections from the
  onSessionOpened event in loginDialog, and perhaps more importantly also
  from the user verification stack that is used to create the initial
  authentication options prompt (stack traces of the syslog entries
  attached).
  
  Affects GDM 46.0-2ubuntu1 in Noble.
  
  To reproduce, configure smartcard auth for a network user on a new Noble
  install and try to sign in.

** Patch added: "noble.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/2065432/+attachment/5810879/+files/noble.debdiff

** Also affects: gnome-shell (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: gnome-shell (Ubuntu Noble)
 Assignee: (unassigned) => Robert Malz (rmalz)

** Changed in: gnome-shell (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: gnome-shell (Ubuntu Noble)
   Status: New => In Progress

-- 
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/2065432

Title:
  Unable to authenticate with smartcard: gnome-shell throws on unhandled
  promise rejection

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


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

[Bug 2077670] Re: Keyboard latency on Ubuntu 24.10

2024-08-27 Thread Robert R. McDonald
** Changed in: mutter (Ubuntu)
   Status: Incomplete => New

-- 
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/2077670

Title:
  Keyboard latency on Ubuntu 24.10

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


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

[Bug 2077970] [NEW] Ubuntu 24.10 nautilus crashed with SIGABRT in g_assertion_message_expr()

2024-08-27 Thread Robert R. McDonald
Public bug reported:

# System Details Report
---

## Report details
- **Date generated:**  2024-08-27 06:52:11

## Hardware Information:
- **Hardware Model:**  GPD WIN2
- **Memory:**  8.0 GiB
- **Processor:**   Intel® Core™ m3-8100Y × 4
- **Graphics:**Intel® UHD Graphics 615 
(AML-KBL)
- **Disk Capacity:**   256.1 GB

## Software Information:
- **Firmware Version:**2.13
- **OS Name:** Ubuntu Oracular Oriole 
(development branch)
- **OS Build:**(null)
- **OS Type:** 64-bit
- **GNOME Version:**   47
- **Windowing System:**Wayland
- **Kernel Version:**  Linux 6.8.0-36-generic


nautilus:
  Installed: 1:47~beta.1-1ubuntu1
  Candidate: 1:47~beta.1-1ubuntu1
  Version table:
 *** 1:47~beta.1-1ubuntu1 500
500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
100 /var/lib/dpkg/status

When I was trying to add non-steam games on Steam snap, file manager
(Nautilus) crashes when it was trying to pop-up, it used to be fine and
now ever since a partial upgrade for Ubuntu 24.10.

It just happen when Ubuntu 24.10 had a partial upgrade.

ProblemType: Crash
DistroRelease: Ubuntu 24.10
Package: nautilus 1:47~beta.1-1ubuntu1
ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
Uname: Linux 6.8.0-36-generic x86_64
ApportVersion: 2.30.0-0ubuntu1
Architecture: amd64
CasperMD5CheckResult: pass
CrashCounter: 1
CurrentDesktop: ubuntu:GNOME
Date: Tue Aug 27 06:47:44 2024
ExecutablePath: /usr/bin/nautilus
GsettingsChanges:
 b'org.gnome.nautilus.preferences' b'migrated-gtk-settings' b'true'
 b'org.gnome.nautilus.preferences' b'search-filter-time-type' b"'created'"
 b'org.gnome.nautilus.preferences' b'show-create-link' b'true'
 b'org.gnome.nautilus.window-state' b'initial-size' b'(947, 548)'
InstallationDate: Installed on 2024-06-07 (81 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
JournalErrors:
 Aug 27 06:47:35 hostname geoclue[2458]: Failed to query location: Query 
location SOUP error: Not Found
 Aug 27 06:47:44 hostname org.gnome.Nautilus[246229]: **
 Aug 27 06:47:44 hostname org.gnome.Nautilus[246229]: 
nautilus-file:ERROR:../src/nautilus-file.c:618:nautilus_file_new_from_filename: 
assertion failed: (filename[0] != '\0')
ProcAttrCurrent: nautilus (unconfined)
ProcCmdline: /usr/bin/nautilus --gapplication-service
Signal: 6
SignalName: SIGABRT
SourcePackage: nautilus
StacktraceTop:
 ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
 ?? ()
 ?? ()
 ?? ()
Title: nautilus crashed with SIGABRT in g_assertion_message_expr()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sudo users
separator:
 
usr_lib_nautilus:
 file-roller   44.3-1
 nautilus-extension-gnome-terminal 3.52.2-1ubuntu1

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


** Tags: amd64 apport-crash need-amd64-retrace oracular wayland-session

** Information type changed from Private to Public

-- 
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/2077970

Title:
  Ubuntu 24.10 nautilus crashed with SIGABRT in
  g_assertion_message_expr()

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


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

[Bug 2077726] Re: Cannot updte FBReader to version 2.1.1

2024-08-23 Thread Robert Bellehumeur
Acutlly the original message is for FBReader 2.0.5
The download is 2.1.1

** Attachment added: "Screenshot from 2024-08-23 08-07-21.png"
   
https://bugs.launchpad.net/ubuntu/+source/evince/+bug/2077726/+attachment/5808599/+files/Screenshot%20from%202024-08-23%2008-07-21.png

-- 
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/2077726

Title:
  Cannot updte FBReader to version 2.1.1

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


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

[Bug 2077726] [NEW] Cannot updte FBReader to version 2.1.1

2024-08-23 Thread Robert Bellehumeur
Public bug reported:

When I open a file .mobi or .epub I receive a message to update RBReaderto 
version 2.1.1
I downloaded the package "FBReader_Book_Reader-x86_64-2.1.1" and use terminal 
with the following results:

robert@Rob1:~/Desktop$ chmod +x FBReader_Book_Reader-x86_64-2.1.1.AppImage
chmod: cannot access 'FBReader_Book_Reader-x86_64-2.1.1.AppImage': No such file 
or directory

Can you help me completing this update? Or alternatively, should I use
another reader?

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

-- 
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/2077726

Title:
  Cannot updte FBReader to version 2.1.1

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


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

[Bug 2077670] [NEW] Keyboard latency on Ubuntu 24.10

2024-08-22 Thread Robert R. McDonald
Public bug reported:

# System Details Report
---

## Report details
- **Date generated:**  2024-08-22 13:46:44

## Hardware Information:
- **Hardware Model:**  GPD WIN2
- **Memory:**  8.0 GiB
- **Processor:**   Intel® Core™ m3-8100Y × 4
- **Graphics:**Intel® UHD Graphics 615 
(AML-KBL)
- **Disk Capacity:**   256.1 GB

## Software Information:
- **Firmware Version:**2.13
- **OS Name:** Ubuntu Oracular Oriole 
(development branch)
- **OS Build:**(null)
- **OS Type:** 64-bit
- **GNOME Version:**   47
- **Windowing System:**Wayland
- **Kernel Version:**  Linux 6.8.0-36-generic


gnome-shell:
  Installed: 47~beta-1ubuntu2
  Candidate: 47~beta-1ubuntu2
  Version table:
 *** 47~beta-1ubuntu2 500
500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
100 /var/lib/dpkg/status

I'm having a keyboard latency on Ubuntu 24.10 daily build, back in the
day 24.10 used to have no keyboard latency while some games on Steam
proton ran smooth.

So whether the game run smooth or not, any of my keyboards even with
controller using keyboard input are having latency for no reason at all
but it's just a weird bug that is bothering me.

If I'm using Ubuntu 24.04 LTS, I get no keyboard latency on any games
thankfully but when I installed Ubuntu 24.10 or upgrade to 24.10 while
on daily build, now some games through Steam proton will have keyboard
latency again whether it runs smooth or not, keyboard are still having
latency which it's bothering me.

It just happen every time I'd installed or upgrade to Ubuntu 24.10.

ProblemType: Bug
DistroRelease: Ubuntu 24.10
Package: gnome-shell 47~beta-1ubuntu2
ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
Uname: Linux 6.8.0-36-generic x86_64
ApportVersion: 2.30.0-0ubuntu1
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Thu Aug 22 13:39:56 2024
DisplayManager: gdm3
InstallationDate: Installed on 2024-06-07 (76 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
RelatedPackageVersions: mutter-common 47~beta-3ubuntu1
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

-- 
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/2077670

Title:
  Keyboard latency on Ubuntu 24.10

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


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

[Bug 2077395] Re: Ubuntu 24.10 Settings (gnome-control-center) no apps available error on Apps settings

2024-08-20 Thread Robert R. McDonald
** Description changed:

  Description:  Ubuntu Oracular Oriole (development branch)
  Release:  24.10
  
  gnome-control-center:
-   Installed: 1:47~beta-2ubuntu2
-   Candidate: 1:47~beta-2ubuntu2
-   Version table:
-  *** 1:47~beta-2ubuntu2 500
- 500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 1:47~beta-2ubuntu2
+   Candidate: 1:47~beta-2ubuntu2
+   Version table:
+  *** 1:47~beta-2ubuntu2 500
+ 500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
- When I was looking for snap apps to change permission, unfortunately I
- see no apps for me to change permission.
- 
- According to terminal on reason why no apps available as an error.
- 
- robuntu@GPD-WIN2:~$ gnome-control-center applications
- 23:59:13.5032 cc-applications-panel[12060]: WARNING: Error retrieving app 
filter: App filtering is globally disabled
- 
- It just happened when I either installed or upgrade to Ubuntu 24.10
- Oracular Oriole (development branch)
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.10
  Package: gnome-control-center 1:47~beta-2ubuntu2
  ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
  Uname: Linux 6.8.0-36-generic x86_64
  ApportVersion: 2.30.0-0ubuntu1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 19 23:54:53 2024
  InstallationDate: Installed on 2024-06-07 (73 days ago)
  InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)
+ 
+ When I was looking for snap apps to change permission, unfortunately I
+ see no apps for me to change permission.
+ 
+ According to terminal on reason why no apps available as an error.
+ 
+ robuntu@GPD-WIN2:~$ gnome-control-center applications
+ 23:59:13.5032 cc-applications-panel[12060]: WARNING: Error retrieving app 
filter: App filtering is globally disabled
+ 
+ It just happened when I either installed or upgrade to Ubuntu 24.10
+ Oracular Oriole (development branch)

** Description changed:

  Description:  Ubuntu Oracular Oriole (development branch)
  Release:  24.10
  
  gnome-control-center:
    Installed: 1:47~beta-2ubuntu2
    Candidate: 1:47~beta-2ubuntu2
    Version table:
   *** 1:47~beta-2ubuntu2 500
  500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
  100 /var/lib/dpkg/status
- 
  
  ProblemType: Bug
  DistroRelease: Ubuntu 24.10
  Package: gnome-control-center 1:47~beta-2ubuntu2
  ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
  Uname: Linux 6.8.0-36-generic x86_64
  ApportVersion: 2.30.0-0ubuntu1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Aug 19 23:54:53 2024
  InstallationDate: Installed on 2024-06-07 (73 days ago)
  InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)
  
  When I was looking for snap apps to change permission, unfortunately I
  see no apps for me to change permission.
  
  According to terminal on reason why no apps available as an error.
  
  robuntu@GPD-WIN2:~$ gnome-control-center applications
  23:59:13.5032 cc-applications-panel[12060]: WARNING: Error retrieving app 
filter: App filtering is globally disabled
  
  It just happened when I either installed or upgrade to Ubuntu 24.10
- Oracular Oriole (development branch)
+ Oracular Oriole (development branch).

-- 
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/2077395

Title:
  Ubuntu 24.10 Settings (gnome-control-center) no apps available error
  on Apps settings

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


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

[Bug 2077395] [NEW] Ubuntu 24.10 Settings (gnome-control-center) no apps available error on Apps settings

2024-08-20 Thread Robert R. McDonald
Public bug reported:

Description:Ubuntu Oracular Oriole (development branch)
Release:24.10

gnome-control-center:
  Installed: 1:47~beta-2ubuntu2
  Candidate: 1:47~beta-2ubuntu2
  Version table:
 *** 1:47~beta-2ubuntu2 500
500 http://archive.ubuntu.com/ubuntu oracular/main amd64 Packages
100 /var/lib/dpkg/status

When I was looking for snap apps to change permission, unfortunately I
see no apps for me to change permission.

According to terminal on reason why no apps available as an error.

robuntu@GPD-WIN2:~$ gnome-control-center applications
23:59:13.5032 cc-applications-panel[12060]: WARNING: Error retrieving app 
filter: App filtering is globally disabled

It just happened when I either installed or upgrade to Ubuntu 24.10
Oracular Oriole (development branch)

ProblemType: Bug
DistroRelease: Ubuntu 24.10
Package: gnome-control-center 1:47~beta-2ubuntu2
ProcVersionSignature: Ubuntu 6.8.0-36.36-generic 6.8.4
Uname: Linux 6.8.0-36-generic x86_64
ApportVersion: 2.30.0-0ubuntu1
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Aug 19 23:54:53 2024
InstallationDate: Installed on 2024-06-07 (73 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
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 oracular 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/2077395

Title:
  Ubuntu 24.10 Settings (gnome-control-center) no apps available error
  on Apps settings

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


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

[Bug 2077290] [NEW] GLArea transparency broken

2024-08-18 Thread Robert Ancell
Public bug reported:

In Noble a GtkGlArea widget with transparency doesn't show the GTK
widgets beneath it correctly. This was a regression fixed in
https://gitlab.gnome.org/GNOME/gtk/-/commit/6754765a5a849ecbdd5c5fa60b5a6f80a968133e
(released in 3.24.42).

Test Case:

Run gdkgears:
$ apt source gtk+3.0
$ cd src/gtk+3.0-3.24.41
$ meson _build
$ ninja -C _build
$ ./_build/tests/gdkgears
Click "Alpha" checkbox.

Expected results:
Gears are shown with Gtk window background behind them.

Observed results:
Uninitialized buffer is shown behind gears (commonly looks like repeated 
contents of old window frames).

** Affects: gtk+3.0 (Ubuntu)
 Importance: High
 Status: Fix Released

** Affects: gtk+3.0 (Ubuntu Noble)
 Importance: High
 Status: Triaged


** Tags: noble

** Also affects: gtk+3.0 (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Changed in: gtk+3.0 (Ubuntu)
   Status: New => Fix Released

** Changed in: gtk+3.0 (Ubuntu Noble)
   Status: New => Triaged

** Changed in: gtk+3.0 (Ubuntu Noble)
   Importance: Undecided => High

** Changed in: gtk+3.0 (Ubuntu)
   Importance: Undecided => High

** Description changed:

  In Noble a GtkGlArea widget with transparency doesn't show the GTK
  widgets beneath it correctly. This was a regression fixed in
- 
https://gitlab.gnome.org/GNOME/gtk/-/commit/6754765a5a849ecbdd5c5fa60b5a6f80a968133e.
+ 
https://gitlab.gnome.org/GNOME/gtk/-/commit/6754765a5a849ecbdd5c5fa60b5a6f80a968133e
+ (released in 3.24.42).
  
  Test Case:
  
  Run gdkgears:
  $ apt source gtk+3.0
  $ cd src/gtk+3.0-3.24.41
  $ meson _build
  $ ninja -C _build
  $ ./_build/tests/gdkgears
  Click "Alpha" checkbox.
  
  Expected results:
  Gears are shown with Gtk window background behind them.
  
  Observed results:
  Uninitialized buffer is shown behind gears (commonly looks like repeated 
contents of old window frames).

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

Title:
  GLArea transparency broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/2077290/+subscriptions


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

[Bug 2023572] Re: SRU gjs 1.72.4 to jammy

2024-07-22 Thread Robert Malz
Tested package on jammy VMs for around week, no gjs crashes detected.


** Tags removed: verification-needed-jammy
** Tags added: verification-done-jammy

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

Title:
  SRU gjs 1.72.4 to jammy

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


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

[Bug 2064177] Re: Window borders and shadows missing from GTK3 dialogs (if autologin is enabled and Xorg is used)

2024-07-03 Thread robert
It seems like Regional Formats or language problem to me. 
I installed new Ubuntu 24.04 in English (US) and the windows worked fine.
When I changed Regional Formats to Korean and reboot the system, the window 
problem started and remains.

I think the password/login process in Ubuntu has a problem with cjk language.
In Ubuntu 22.04, I installed 4 languages (English, Russian, Japanese, Korean), 
and whenever the login prompt appears, there were only English and Russian 
available.

In addition, I had to change the input language because the default
language was set to Russian in the prompt no matter what the language
order.

-- 
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/2064177

Title:
  Window borders and shadows missing from GTK3 dialogs (if autologin is
  enabled and Xorg is used)

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


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

[Bug 2066315] Re: Users who upgraded to rejected SRU 1.72.4-0ubuntu0.22.04.1 aren't restored

2024-05-24 Thread Robert Malz
Verified on Jammy in AWS workspaces.
Test plan:
1. Upgrade from 1.72.4-0ubuntu0.22.04.1 to 
1.72.4-0ubuntu0.22.04.3~really.is.1.72.2.0ubuntu2
2. Monitor system for couple of days

Done in 3 VMs, no issues detected. I'll keep VMs running for couple of
days doing random GUI operations and update this case if anything will
be detected.

** Tags removed: verification-needed-jammy
** Tags added: verification-done-jammy

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

Title:
  Users who upgraded to rejected SRU 1.72.4-0ubuntu0.22.04.1 aren't
  restored

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


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

[Bug 117514] Re: seahorse does not synchronize keys with keyserver

2024-05-12 Thread Robert Schlackman
In 24.04 desktop if you choose two keys to sync, the program will crash.
Also, does not look like the sync even works.  I had to use the below
command to get my key to sync.

gpg --send-keys --keyserver keyserver.ubuntu.com 

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.
https://bugs.launchpad.net/bugs/117514

Title:
  seahorse does not synchronize keys with keyserver

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


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

Re: [Bug 2023322]

2024-02-26 Thread Robert Polak
Bug driver 470, Nvidia GTX 650

W dniu 26.02.2024 o 04:06, Craig pisze:
> (In reply to Michael Catanzaro from comment #62)
>> Hi Craig and Thomas (and Emil if you're still around): if you're still
>> encountering problems with NVIDIA graphics, please report new a bug and
>> leave a comment here linking to the new bug.
> My problem was on legacy nvidia driver, and newer versions wouldn't even 
> start.  But I now know a workaround (GSK_RENDERER=cairo) and don't expect 
> there will be a fix for my old driver anyway.
> https://gitlab.gnome.org/GNOME/gtk/-/issues/5858
>

** Attachment added: "Zrzut ekranu z 2024-02-26
 14-51-55.png"
   
https://bugs.launchpad.net/bugs/2023322/+attachment/5749476/+files/Zrzut%20ekranu%20z%202024-02-26%0A%2014-51-55.png

** Attachment added: "Zrzut ekranu z 2024-02-26
 14-52-37.png"
   
https://bugs.launchpad.net/bugs/2023322/+attachment/5749477/+files/Zrzut%20ekranu%20z%202024-02-26%0A%2014-52-37.png

-- 
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/2023322

Title:
  GTK internal browser does not render with Nvidia drivers

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


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

[Bug 2037907] Re: No package 'nss' found

2024-01-23 Thread Robert
I tested version 23.12.0: same problem.
Thanks in advance for analyzing the problem.

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

Title:
  No package 'nss' found

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


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

[Bug 2037907] Re: No package 'nss' found

2024-01-22 Thread Robert
same problem when trying to compile version 24.01.0.

 No package 'nss' found
 Could NOT find NSS3 (missing: NSS3_LIBRARIES NSS3_CFLAGS) (Required is at 
least version "3.68")

But

sudo apt-get install libnss3
-> libnss3 is already the newest version (2:3.68.2-0ubuntu1.2).

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

Title:
  No package 'nss' found

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


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

[Bug 2026726] Re: Updating to Ubuntu 23.10 (mantic) fails, GIMP broken

2023-11-13 Thread Robert L Brush III
Fixed by upgrading the kernel?

Linux T2 Kernel Upgrade

uname -a

Linux {hostname} 6.3.3-t2-lunar #1 SMP PREEMPT_DYNAMIC Wed May 17
18:33:53 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

sudo apt install t2-kernel-script

sudo update_t2_kernel

reboot

Linux {hostname} 6.6.1-t2-mantic #1 SMP PREEMPT_DYNAMIC Wed Nov 8
17:27:58 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

-- 
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/2026726

Title:
  Updating to Ubuntu 23.10 (mantic) fails, GIMP broken

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


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

[Bug 2026726] Re: Updating to Ubuntu 23.10 (mantic) fails, GIMP broken

2023-11-13 Thread Robert L Brush III
Gtk-Message: 16:29:55.095: Failed to load module "appmenu-gtk-module"
Gtk-Message: 16:29:55.107: Failed to load module "canberra-gtk-module"
gimp: fatal error: Segmentation fault
26  ../sysdeps/unix/sysv/linux/read.c: No such file or directory.

-- 
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/2026726

Title:
  Updating to Ubuntu 23.10 (mantic) fails, GIMP broken

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


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

[Bug 2026726] Re: gimp crash report

2023-11-13 Thread Robert L Brush III


```
GNU Image Manipulation Program version 2.10.34
git-describe: GIMP_2_10_34
Build: unknown rev 0 for linux
# C compiler #
 Using built-in specs.
 COLLECT_GCC=gcc
 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
 OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
 OFFLOAD_TARGET_DEFAULT=1
 Target: x86_64-linux-gnu
 Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
12.2.0-16ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs 
--enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-12 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin 
--enable-default-pie --with-system-zlib --enable-libphobos-checking=release 
--with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch 
--disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-12-TwSidC/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-TwSidC/gcc-12-12.2.0/debian/tmp-gcn/usr
 --enable-offload-defaulted --without-cuda-driver --enable-checking=release 
--build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
 Thread model: posix
 Supported LTO compression algorithms: zlib zstd
 gcc version 12.2.0 (Ubuntu 12.2.0-16ubuntu1)

# Libraries #
using babl version 0.1.106 (compiled against version 0.1.98)
using GEGL version 0.4.44 (compiled against version 0.4.42)
using GLib version 2.78.0 (compiled against version 2.75.3)
using GdkPixbuf version 2.42.10 (compiled against version 2.42.10)
using GTK+ version 2.24.33 (compiled against version 2.24.33)
using Pango version 1.51.0 (compiled against version 1.50.12)
using Fontconfig version 2.14.2 (compiled against version 2.14.1)
using Cairo version 1.18.0 (compiled against version 1.16.0)

```
> fatal error: Segmentation fault

Stack trace:
```

# Stack traces obtained from PID 103885 - Thread 103885 #

This GDB supports auto-downloading debuginfo from the following URLs:
  
Enable debuginfod for this session? (y or [n]) [answered N; input not from 
terminal]
Debuginfod has been disabled.
To make this setting permanent, add 'set debuginfod enabled off' to .gdbinit.
[New LWP 103887]
[New LWP 103888]
[New LWP 103889]
[New LWP 103893]
[New LWP 103894]
[New LWP 103895]
[New LWP 103900]
[New LWP 103901]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7facf831a75c in __GI___libc_read (nbytes=256, buf=0x7ffd9d4cac80, fd=14) 
at ../sysdeps/unix/sysv/linux/read.c:26
  Id Target Id Frame
* 1 Thread 0x7facf797d2c0 (LWP 103885) "gimp-2.10" 0x7facf831a75c in 
__GI___libc_read (nbytes=256, buf=0x7ffd9d4cac80, fd=14) at 
../sysdeps/unix/sysv/linux/read.c:26
  2 Thread 0x7facf70fc6c0 (LWP 103887) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3 Thread 0x7facf68fb6c0 (LWP 103888) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4 Thread 0x7face6c0 (LWP 103889) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5 Thread 0x7faced5276c0 (LWP 103893) "pool-spawner" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  6 Thread 0x7facf49fe6c0 (LWP 103894) "gmain" 0x7facf831a18f in 
__GI___poll (fds=0x555c48a437e0, nfds=1, timeout=7449) at 
../sysdeps/unix/sysv/linux/poll.c:29
  7 Thread 0x7facf51ff6c0 (LWP 103895) "gdbus" 0x7facf831a18f in 
__GI___poll (fds=0x7facdc000b90, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  8 Thread 0x7facbaf256c0 (LWP 103900) "async" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  9 Thread 0x7facba7246c0 (LWP 103901) "pool-gimp-2.10" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38

Thread 9 (Thread 0x7facba7246c0 (LWP 103901) "pool-gimp-2.10"):
#0 syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1 0x7facf868d140 in g_cond_wait_until () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2 0x7facf8601c83 in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3 0x7facf8601dc5 in g_async_queue_timeout_pop () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4 0x7facf86688cd in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5 0x7facf8666331 in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#6 0x7facf8297ada in start_thread (arg=) at 
./nptl/pthread_create.c:444
ret = 
pd = 
out = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140380874569712, 
-2805514451981673658, -1144, 0, 140380692702432, 140379830763520, 
2758942526280325958, 27588056992

[Bug 2043246] Re: Opening file crashes program

2023-11-13 Thread Robert L Brush III
*** This bug is a duplicate of bug 2026726 ***
https://bugs.launchpad.net/bugs/2026726

** This bug has been marked a duplicate of bug 2026726
   gimp crash report

-- 
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/2043246

Title:
  Opening file crashes program

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


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

[Bug 2043246] [NEW] Opening file crashes program

2023-11-10 Thread Robert L Brush III
Public bug reported:




```
GNU Image Manipulation Program version 2.10.34
git-describe: GIMP_2_10_34
Build: unknown rev 0 for linux
# C compiler #
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
12.2.0-16ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs 
--enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-12 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin 
--enable-default-pie --with-system-zlib --enable-libphobos-checking=release 
--with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch 
--disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-12-TwSidC/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-TwSidC/gcc-12-12.2.0/debian/tmp-gcn/usr
 --enable-offload-defaulted --without-cuda-driver --enable-checking=release 
--build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 12.2.0 (Ubuntu 12.2.0-16ubuntu1) 

# Libraries #
using babl version 0.1.106 (compiled against version 0.1.98)
using GEGL version 0.4.44 (compiled against version 0.4.42)
using GLib version 2.78.0 (compiled against version 2.75.3)
using GdkPixbuf version 2.42.10 (compiled against version 2.42.10)
using GTK+ version 2.24.33 (compiled against version 2.24.33)
using Pango version 1.51.0 (compiled against version 1.50.12)
using Fontconfig version 2.14.2 (compiled against version 2.14.1)
using Cairo version 1.18.0 (compiled against version 1.16.0)

```
> fatal error: Segmentation fault

Stack trace:
```

# Stack traces obtained from PID 103885 - Thread 103885 #


This GDB supports auto-downloading debuginfo from the following URLs:
  
Enable debuginfod for this session? (y or [n]) [answered N; input not from 
terminal]
Debuginfod has been disabled.
To make this setting permanent, add 'set debuginfod enabled off' to .gdbinit.
[New LWP 103887]
[New LWP 103888]
[New LWP 103889]
[New LWP 103893]
[New LWP 103894]
[New LWP 103895]
[New LWP 103900]
[New LWP 103901]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7facf831a75c in __GI___libc_read (nbytes=256, buf=0x7ffd9d4cac80, fd=14) 
at ../sysdeps/unix/sysv/linux/read.c:26
  Id   Target Id   Frame 
* 1Thread 0x7facf797d2c0 (LWP 103885) "gimp-2.10"  0x7facf831a75c 
in __GI___libc_read (nbytes=256, buf=0x7ffd9d4cac80, fd=14) at 
../sysdeps/unix/sysv/linux/read.c:26
  2Thread 0x7facf70fc6c0 (LWP 103887) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3Thread 0x7facf68fb6c0 (LWP 103888) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4Thread 0x7face6c0 (LWP 103889) "worker" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5Thread 0x7faced5276c0 (LWP 103893) "pool-spawner"   syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  6Thread 0x7facf49fe6c0 (LWP 103894) "gmain"  0x7facf831a18f 
in __GI___poll (fds=0x555c48a437e0, nfds=1, timeout=7449) at 
../sysdeps/unix/sysv/linux/poll.c:29
  7Thread 0x7facf51ff6c0 (LWP 103895) "gdbus"  0x7facf831a18f 
in __GI___poll (fds=0x7facdc000b90, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  8Thread 0x7facbaf256c0 (LWP 103900) "async"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  9Thread 0x7facba7246c0 (LWP 103901) "pool-gimp-2.10" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38

Thread 9 (Thread 0x7facba7246c0 (LWP 103901) "pool-gimp-2.10"):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7facf868d140 in g_cond_wait_until () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7facf8601c83 in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7facf8601dc5 in g_async_queue_timeout_pop () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7facf86688cd in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7facf8666331 in ??? () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7facf8297ada in start_thread (arg=) at 
./nptl/pt

[Bug 2041730] [NEW] Error sleep mode

2023-10-28 Thread Robert Polak
Public bug reported:

With the Nvidia 470 driver, sleep mode turns on but wakes up without an image
Sleep mode does not work with the Nvidia 390 and Nouveau drivers.
Many users on forums have been reporting this provlrm for a long time.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gjs 1.72.4-0ubuntu0.22.04.1
ProcVersionSignature: Ubuntu 6.2.0-35.35~22.04.1-generic 6.2.16
Uname: Linux 6.2.0-35-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Sat Oct 28 20:29:39 2023
ExecutablePath: /usr/bin/gjs-console
InstallationDate: Installed on 2023-10-18 (10 days ago)
InstallationMedia: Ubuntu 22.04.3 LTS "Jammy Jellyfish" - Release amd64 
(20230807.2)
SourcePackage: gjs
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug jammy

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

Title:
  Error sleep mode

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


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

[Bug 2028886] [NEW] gnome-control-center wifi , crashes selecting wifi adapters for hidden networks

2023-07-27 Thread Robert Hubbard
Public bug reported:

Have two wifi adapters, PCI and USB. When selecting the 2nd adapter from
the  hidden networks options this causes a crash. I can use other tools
like nmtui and wifi works fine, so this is an issue with the parser of
this particular service?

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: gnome-control-center 1:41.7-0ubuntu0.22.04.7
ProcVersionSignature: Ubuntu 5.15.0-57.63-generic 5.15.74
Uname: Linux 5.15.0-57-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu82.5
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Thu Jul 27 13:19:23 2023
InstallationDate: Installed on 2021-12-14 (590 days ago)
InstallationMedia: Ubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 (20210819)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
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 jammy

** Attachment added: "scipt/log of events"
   
https://bugs.launchpad.net/bugs/2028886/+attachment/5688901/+files/gnome-control-center-wifi-crash

-- 
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/2028886

Title:
  gnome-control-center wifi , crashes selecting  wifi adapters for
  hidden networks

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


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

[Bug 496603] Re: gthumb creates / .comments folders and xml files for IPTC

2023-07-10 Thread Robert Ernster
Apparently the .comments subfolder is is back again.
@romano-gianetti's workaround works in Ubuntu 20.04 too.
For newbees like me, you will find:
"store metadata inside files if possible": is in: gThumb > ≡ > Preferences > 
General
"comments and tags" is in: gThumb > ≡ > Preferences > Extensions
Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.
https://bugs.launchpad.net/bugs/496603

Title:
  gthumb creates / .comments folders and xml files for IPTC

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


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

[Bug 2013216] Re: Single click on title bar does not transfer focus to target window (server side decorations in Xorg sessions)

2023-05-24 Thread Robert Phair
I have noted since 2 postings ago that the 44.1 package in lunar-
proposed *does not* fix the mouse cursor problem 100% (I've seen it
still happens since, though maybe less often).

However I would leave my posted tag of verification-done-lunar because
it's a 100% fix for the "single click on title bar" problem as
originally posted.

-- 
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/2013216

Title:
  Single click on title bar does not transfer focus to target window
  (server side decorations in Xorg sessions)

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


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

[Bug 2013216] Re: Single click on title bar does not transfer focus to target window (server side decorations in Xorg sessions)

2023-05-24 Thread Robert Phair
> I did not receive an update for gnome-shell or gnome-shell-common, as
rphair did. Not sure why.

I added lunar-proposed and disabled updates from it by default, as
described in the Ubuntu wiki, and then ran "aptitude" and selected the
available updates in the "gnome" category.  There were 4 of these
available and selecting gnome-shell selects them all, plus some other
dependencies outside that category, all with version 44.1.

> putting verification-failed would prevent it from landing for all
users

I agree with this comment and would think from other comments above that
we're in a 7-day trial period to see if no testing failures reported.  I
don't use the "snap" packages but I can say it will help a lot of people
if the functionality of the non-snap packages is made generally
available.

-- 
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/2013216

Title:
  Single click on title bar does not transfer focus to target window
  (server side decorations in Xorg sessions)

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


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

[Bug 2013216] Re: Single click on title bar does not transfer focus to target window (server side decorations in Xorg sessions)

2023-05-24 Thread Robert Phair
I installed version 44.1 from `lunar-proposed` (plus all dependencies):

gnome-shell/lunar-proposed,now 44.1-0ubuntu1 amd64 [installed]
gnome-shell-common/lunar-proposed,lunar-proposed,now 44.1-0ubuntu1 all 
[installed,automatic]

and I can confirm that click-to-raise for the GNOME default titlebars is
working again, and the resize mouse cursor doesn't erroneously display
inside windows anymore.

** Tags removed: verification-needed-lunar
** Tags added: verification-done-lunar

-- 
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/2013216

Title:
  Single click on title bar does not transfer focus to target window
  (server side decorations in Xorg sessions)

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


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-04-27 Thread Robert Ancell
Correct, this fix is valuable for core22, so kinetic was skipped. There
should be no issues for anyone updating from jammy to kinetic. Though
this will affect core20, we expect most snaps to be using core22 so no
plan to backport it to focal.

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-04-27 Thread Robert Ancell
Yes, these specific steps performed in a core desktop VM.

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-04-19 Thread Robert Ancell
I tested a standard jammy desktop in a VM by running various apps
including calculator to confirm they were still working (i.e. looking
for regressions).

I tested the core desktop behaviour by building the core22-desktop snap
from https://github.com/canonical/core-base-desktop/ (locally modified
to use updates) and then installing that into a core desktop.

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-04-17 Thread Robert Ancell
I've looked at the autopkgtests and the failures don't seem to be
related to this change.

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-04-17 Thread Robert Ancell
Tested glib2.0 2.72.4-0ubuntu2 in a jammy VM and working.

** Tags removed: verification-needed verification-needed-jammy
** Tags added: verification-done-jammy

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 2012994] Re: Automatic Date & Time switch shows as insensitive when enabled

2023-03-28 Thread Robert Ancell
It's upstream https://gitlab.gnome.org/GNOME/gnome-control-
center/-/merge_requests/1749

-- 
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/2012994

Title:
  Automatic Date & Time switch shows as insensitive when enabled

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


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

[Bug 1987976]

2023-03-28 Thread Robert Mader
Oh wow, I think I just managed to reproduce this on my Iris laptop - in
a fresh session with Xwayland on demand. That and comment 45 points to a
race condition in the FF code regarding switching between composited and
non-composited X11.

-- 
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/1987976

Title:
  firefox black window

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


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

[Bug 1987976]

2023-03-28 Thread Robert Mader
Since this was reported for a device running the Crocus Mesa driver in
situations where implicit drm modifiers are most likely used (Xwayland,
X11 compositor), there's certain chance that it will be fixed by
https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21209

Michelet/Alan, any chance you could test that commit?

-- 
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/1987976

Title:
  firefox black window

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


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

[Bug 1961508] Re: Dock displaying over window after resuming from blank screen

2023-03-27 Thread Robert Ancell
** Tags added: rls-ll-incoming

-- 
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/1961508

Title:
  Dock displaying over window after resuming from blank screen

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


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

[Bug 2012996] [NEW] Editing device name doesn't cancel when pressing escape

2023-03-27 Thread Robert Ancell
Public bug reported:

The device name in the Sharing or About panels can be changed by
clicking the icon to the right of the name (see screenshot). Pressing
escape doesn't cancel the edit and re-show this icon.

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


** Tags: rls-ll-incoming

** Attachment added: "Screenshot of device name widget"
   
https://bugs.launchpad.net/bugs/2012996/+attachment/5658049/+files/Screenshot%20from%202023-03-28%2014-46-06.png

-- 
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/2012996

Title:
  Editing device name doesn't cancel when pressing escape

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


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

[Bug 2012994] [NEW] Automatic Date & Time switch shows as insensitive when enabled

2023-03-27 Thread Robert Ancell
Public bug reported:

Go to Settings > Date & Time and toggle the "Automatic Date & Time"
switch. When enabled it shows as insensitive (i.e. grey instead of
orange). The "Automatic Time Zone" switch below behaves as expected.

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


** Tags: rls-ll-incoming

** Attachment added: "Screenshot showing automatic date & time enabled with 
insensitive switch"
   
https://bugs.launchpad.net/bugs/2012994/+attachment/5658048/+files/Screenshot%20from%202023-03-28%2014-41-08.png

-- 
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/2012994

Title:
  Automatic Date & Time switch shows as insensitive when enabled

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


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

[Bug 2012991] Re: Insensitive items in system tray menus not visible

2023-03-27 Thread Robert Ancell
Changing the theme to dark makes the text visible.

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

Title:
  Insensitive items in system tray menus not visible

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


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

[Bug 2012991] [NEW] Insensitive items in system tray menus not visible

2023-03-27 Thread Robert Ancell
Public bug reported:

If you use the multicast system tray menu the text on the items that are
insensitive aren't visible. It appears they have the same colour as the
background.

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


** Tags: rls-ll-incoming

** Attachment added: "Screenshot of multipass system tray menu"
   
https://bugs.launchpad.net/bugs/2012991/+attachment/5658046/+files/Screenshot%20from%202023-03-28%2014-11-35.png

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

Title:
  Insensitive items in system tray menus not visible

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


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-03-22 Thread Robert Ancell
** Changed in: glib2.0 (Ubuntu Kinetic)
   Status: New => Won't Fix

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2023-03-22 Thread Robert Ancell
** Description changed:

  [ Impact]
  
  glib is not aware of snap confinement and this causes the internal logic
  to decide when to use portals to not work as designed. One important
  case is the gsettings backend, which should use a keyfile when confined
  rather than using dconf. When using a fully confined desktop this is
  required, as dconf is not suitable for sharing between snaps.
  
  This has been fixed in glib main:
  https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3020
  
  [ Test Plan ]
+ 
+ (requires a core snap running the updated glib).
  
  1. Install gnome-calculator snap:
  $ snap install gnome-calculator
  2. Disconnect gsettings interface:
  $ snap disconnect gnome-calculator:gsettings
  3. Run gnome-calculator
  4. Change mode from basic to advanced
  5. Close and re-open gnome-calculator
  
  Expected result:
  Mode change remembered on second run. gnome-calculator settings written to 
~/snap/gnome-calculator/current/.config/glib-2.0/settings/keyfile
  
  Observed result:
  Mode change not remembered on second run, errors shown in console about 
accessing dconf:
  (gnome-calculator:1031938): dconf-CRITICAL **: 14:08:56.034: unable to create 
file '/run/user/1000/snap.gnome-calculator/dconf/user': Permission denied.  
dconf will not work properly.
  
  [ Where problems could occur ]
  
  - New bug introduced in glib causing a crash.
  - Security issue introduced in glib due to accessing snapctl.
  - Unexpected behaviour change when running snaps with updated glib.

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 2002212] [NEW] Outdated version of libglib2.0-dev in Ubuntu Jammy

2023-01-07 Thread Bajcsi Elias-Robert
Public bug reported:

The version of libglib2.0-dev that is currently included in the
repositories for Ubuntu is 2.72.1-1, which is outdated and missing
important features and bug fixes. In particular, the
G_APPLICATION_DEFAULT_FLAGS macro, which was added in GTK+ 3.22, is not
available in this version of libglib2.0-dev. This is causing issues with
my application, which requires the use of this macro.

I request that the package be updated to the latest version (currently
2.74) in order to resolve this issue.

Steps to reproduce:
  1. Install libglib2.0-dev version 2.72.1-1 on an Ubuntu system
  2. Attempt to compile an application that uses the 
G_APPLICATION_DEFAULT_FLAGS macro
  3. Observe the compilation error due to the missing macro

Expected result:
The application compiles successfully and can be run.

Actual result:
The application fails to compile due to the missing G_APPLICATION_DEFAULT_FLAGS 
macro.

Release:
  Description:  Ubuntu 22.04.1 LTS
  Release:  22.04

Using version:
2.72.1-1

Requested version:
2.74(+)

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Outdated version of libglib2.0-dev in Ubuntu Jammy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/2002212/+subscriptions


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

[Bug 1998267] Re: glib not aware of snap confinement

2022-11-29 Thread Robert Ancell
Targeting 22.04 so this can become part of the core22 snap fixing the
issue for most modern snaps.

** Changed in: glib2.0 (Ubuntu Jammy)
   Importance: Undecided => High

** Changed in: glib2.0 (Ubuntu Kinetic)
   Importance: Undecided => High

** Changed in: glib2.0 (Ubuntu Lunar)
   Importance: Undecided => High

** Changed in: glib2.0 (Ubuntu Jammy)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: glib2.0 (Ubuntu Kinetic)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: glib2.0 (Ubuntu Lunar)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1998267] [NEW] glib not aware of snap confinement

2022-11-29 Thread Robert Ancell
Public bug reported:

[ Impact]

glib is not aware of snap confinement and this causes the internal logic
to decide when to use portals to not work as designed. One important
case is the gsettings backend, which should use a keyfile when confined
rather than using dconf. When using a fully confined desktop this is
required, as dconf is not suitable for sharing between snaps.

This has been fixed in glib main:
https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3020

[ Test Plan ]

1. Install gnome-calculator snap:
$ snap install gnome-calculator
2. Disconnect gsettings interface:
$ snap disconnect gnome-calculator:gsettings
3. Run gnome-calculator
4. Change mode from basic to advanced
5. Close and re-open gnome-calculator

Expected result:
Mode change remembered on second run. gnome-calculator settings written to 
~/snap/gnome-calculator/current/.config/glib-2.0/settings/keyfile

Observed result:
Mode change not remembered on second run, errors shown in console about 
accessing dconf:
(gnome-calculator:1031938): dconf-CRITICAL **: 14:08:56.034: unable to create 
file '/run/user/1000/snap.gnome-calculator/dconf/user': Permission denied.  
dconf will not work properly.

[ Where problems could occur ]

- New bug introduced in glib causing a crash.
- Security issue introduced in glib due to accessing snapctl.
- Unexpected behaviour change when running snaps with updated glib.

** Affects: glib2.0 (Ubuntu)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: New

** Affects: glib2.0 (Ubuntu Jammy)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: New

** Affects: glib2.0 (Ubuntu Kinetic)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: New

** Affects: glib2.0 (Ubuntu Lunar)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: New

** Also affects: glib2.0 (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

** Also affects: glib2.0 (Ubuntu Lunar)
   Importance: Undecided
   Status: New

** Also affects: glib2.0 (Ubuntu Jammy)
   Importance: Undecided
   Status: New

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

Title:
  glib not aware of snap confinement

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1998267/+subscriptions


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

[Bug 1993284] [NEW] Dash-to-dock shows blank black screen after computer locked for some time (Ubuntu 22.04)

2022-10-18 Thread Robert Bartko
Public bug reported:

Happening in Ubuntu 22.04

How to reproduce:

Left computer idle and locked for quite some time
Unlock the computer
Only Show Applications icon is shown in dash-to-dock
When clicked, blank black screen with no application is shown. And can't 
return to desktop or do any other navigations.

Log out / restart menu still works so I usually restart my computer to
fix this.

Affected application: micheleg-dash-to-dock

~$ lsb_release -rd
Description:Ubuntu 22.04.1 LTS
Release:22.04

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

-- 
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/1993284

Title:
Dash-to-dock shows blank black screen after computer locked for some
  time (Ubuntu 22.04)

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


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

[Bug 1985869] [NEW] Unable to wake up screen when it sleeps. Failed to post KMS update: CRTC property (GAMMA_LUT) not found and Page flip discarded: CRTC property (GAMMA_LUT) not found

2022-08-11 Thread Robert Tam
Public bug reported:

== ApportVersion =
2.20.11-0ubuntu82.1

== Architecture =
amd64

== CasperMD5CheckResult =
pass

== Date =
Fri Aug 12 16:01:31 2022

== Dependencies =
accountsservice 22.07.5-2ubuntu1.3
acl 2.3.1-1
adduser 3.118ubuntu5
adwaita-icon-theme 41.0-1ubuntu1
alsa-topology-conf 1.2.5.1-2
alsa-ucm-conf 1.2.6.3-1ubuntu1
apg 2.2.3.dfsg.1-5build2
apport 2.20.11-0ubuntu82.1
apport-symptoms 0.24
apt 2.4.6
apt-utils 2.4.6
aptdaemon 1.1.1+bzr982-0ubuntu39
aptdaemon-data 1.1.1+bzr982-0ubuntu39
aspell 0.60.8-4build1
aspell-en 2018.04.16-0-1
at-spi2-core 2.44.0-3
avahi-daemon 0.8-5ubuntu5
avahi-utils 0.8-5ubuntu5
base-files 12ubuntu4.2
bash 5.1-6ubuntu1
bash-completion 1:2.11-5ubuntu1
bind9-host 1:9.18.1-1ubuntu1.1
bind9-libs 1:9.18.1-1ubuntu1.1
bluez 5.64-0ubuntu1
bolt 0.9.2-1
bsdextrautils 2.37.2-4ubuntu3
bubblewrap 0.6.1-1
ca-certificates 20211016
cheese-common 41.1-1build1
colord 1.4.6-1
colord-data 1.4.6-1
coreutils 8.32-4.1ubuntu1
cpp 4:11.2.0-1ubuntu1
cpp-11 11.2.0-19ubuntu1
cracklib-runtime 2.9.6-3.4build4
cups-pk-helper 0.2.6-1ubuntu5

[ 6902.723370] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7123.822417] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7123.823384] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7124.335913] ubuntu1 gnome-shell[2773]: JS ERROR: Failed to initialize 
fprintd service: Gio.DBusError: 
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name 
net.reactivated.Fprint was not provided by any .service files
  
asyncCallback@resource:///org/gnome/gjs/modules/core/overrides/Gio.js:114:23
[ 7180.309459] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7180.311605] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7218.558479] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7218.559502] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7244.319195] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7244.320182] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7295.446436] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7295.447812] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7573.588299] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7573.590411] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7574.868039] ubuntu1 gnome-shell[2773]: JS ERROR: Failed to initialize 
fprintd service: Gio.DBusError: 
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name 
net.reactivated.Fprint was not provided by any .service files
  
asyncCallback@resource:///org/gnome/gjs/modules/core/overrides/Gio.js:114:23
[ 7654.509594] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7654.510955] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7751.955703] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7751.957582] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 7965.552231] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 7965.553842] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 8073.130242] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 8073.131334] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 8816.510259] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 8816.511259] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 8818.963154] ubuntu1 gnome-shell[2773]: JS ERROR: Failed to initialize 
fprintd service: Gio.DBusError: 
GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name 
net.reactivated.Fprint was not provided by any .service files
  
asyncCallback@resource:///org/gnome/gjs/modules/core/overrides/Gio.js:114:23
[ 8824.646014] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 8824.646947] ubuntu1 gnome-shell[2773]: Page flip discarded: CRTC property 
(GAMMA_LUT) not found
[ 8840.258280] ubuntu1 gnome-shell[2773]: Failed to post KMS update: CRTC 
property (GAMMA_LUT) not found
[ 8840.259556] ubuntu1 gnome-shell[

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-07-22 Thread Robert Spencer
My apologies, @fossfreedom. I forgot to upgrade/downgrade the snap-
plugin package and didn't notice it being removed.

I've repeated the test in the above comment, including package `gnome-
software-plugin-snap` and all tests now passed. Unfortunately I don't
have access to a clean install to test, but it works on the dirty
install so I won't open a new issue.

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-07-21 Thread Robert Spencer
Test run:

 * With old version (41.5), under "install" tab attempted to uninstall package 
"0ad"
 * Error message "no package to remove" given
 * Ran `which 0ad` which exited with return code 0

 * Installed proposed package (41.5-2ubuntu2)
 * Rebooted machine

 * Under "install" tab attempted to uninstall package "0ad"
 * Prompted for confirmation and password
 * Application removed from list of installed packages
 * `which 0ad` exits with error code 1 (command non-existent or not executable)
 * `apt list 0ad` not showing `[installed]` or `[auto]` or `[manual]`.

 * Install application "2048" (source deb)
 * Removed application "2048"

 * Attempt to locate a package with a snap source **failed**
 * Attempt to remove package with a snap source **failed** (no packages listed 
with snap sources, including some I know I installed previously).

 * Downgraded gnome-software and gnome-software-common to 41.5-2

 * Attempt to locate a package with a snap source **failed**
 * Attempt to remove package with a snap source **failed** (no packages listed 
with snap sources, including some I know I installed previously).

Unfortunately, I did not check if I could uninstall snaps before doing
the upgrade. However, there are snaps installed that I must have done
through gnome-software, that I can now no longer see or remove.

As such, I cannot in good faith tag this verification-done-jammy.
However, the bug mentioned is passed so I'm not sure if I should label
it verification-failed-jammy.

I'd suggest future testers check explicitly that they can see, install
and remove snap packages before and after the upgrade, and wouldn't mind
if someone verifies this for me.

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1980272] [NEW] I cannot change language to french (default). Thanks

2022-06-29 Thread Robert
Public bug reported:

Gimp 2.10.18
Kubuntu 20.04

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

-- 
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/1980272

Title:
  I cannot change language to french (default). Thanks

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


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

[Bug 1876632] Re: [nvidia] Corrupted/missing shell textures when switching users or resuming from suspend

2022-06-25 Thread Robert Carroll
@mhalano

I actually just found that too!

Its amazing.  I've since put it here:

https://github.com/robswc/ubuntu-22-nvidia-suspend-fix-
script/blob/main/README.md

To quickly run through the steps for my other PCs.

-- 
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/1876632

Title:
  [nvidia] Corrupted/missing shell textures when switching users or
  resuming from suspend

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


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

[Bug 1876632] Re: [nvidia] Corrupted/missing shell textures when switching users or resuming from suspend

2022-06-25 Thread Robert Carroll
>adding both the kernel parameter and the two lines in the nvidia module
conf file works for "systemctl suspend" - the machine can now resume OK
when on wayland.

I've tried this solution.  There's a chance I've done it wrong though.

cat /etc/modprobe.d/nvidia-power-management.conf
options nvidia NVreg_TemporaryFilePath=/run
options nvidia NVreg_PreserveVideoMemoryAllocations=1

AND:

cat /etc/default/grub | grep "CMD"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash 
nvidia.NVreg_EnableS0ixPowerManagement=1"
GRUB_CMDLINE_LINUX=""

Upon systemctl suspend the monitor loses connection then gets its back
after about 30 seconds and shows the login screen.

-- 
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/1876632

Title:
  [nvidia] Corrupted/missing shell textures when switching users or
  resuming from suspend

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


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

[Bug 1969896] Re: Evince Document Viewer(42.0) does not remember last page in 22.04 and opens in a tiny window when launched

2022-06-10 Thread Robert Piosik
If the problem doesn't occur on 22.04 fresh install, I can confirm it
happens during upgrade from 21.10. Thanks for raising and
responsiveness.

-- 
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/1969896

Title:
  Evince Document Viewer(42.0) does not remember last page in 22.04 and
  opens in a tiny window when launched

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


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

[Bug 1969896] Re: Evince Document Viewer(42.0) does not remember last page in 22.04 and opens in a tiny window when launched

2022-06-10 Thread Robert Piosik
It is really cumbersome to work with Ubuntu now :( Please raise the
importance.

-- 
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/1969896

Title:
  Evince Document Viewer(42.0) does not remember last page in 22.04 and
  opens in a tiny window when launched

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


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

Re: [Bug 1975557] Re: blank screen does not turn off display backlight

2022-05-25 Thread Robert Blair
** Reply to message from Daniel van Vugt <1975...@bugs.launchpad.net> on Wed,
25 May 2022 06:15:35 -

I get an error running apport-collect.  I am beginning to think that the last
update to this system went wrong.  There are other problems comming up which I
did not have before.

I have now tried the display with another 22.04 install and that works
OK.

So I think this problem report should be closed.

bob1@Juptier:~$ apport-collect 1975557
ERROR: connecting to Launchpad failed: Unable to find the server at
launchpad.net
You can reset the credentials by removing the file
"/home/bob1/.cache/apport/launchpad.credentials"
bob1@Juptier:~$ 


> The difference between 21.10 and 22.04 might just be that we now default
> to Wayland instead of Xorg. So the display subsystems are different.
> 
> Please run this command to gather more information:
> 
>   apport-collect 1975557
> 
> And to save time in future please use the 'ubuntu-bug' command to report
> new bugs.
> 
> ** Tags added: jammy
> 
> ** Package changed: xorg (Ubuntu) => gnome-shell (Ubuntu)
> 
> ** Changed in: gnome-shell (Ubuntu)
>Status: New => Incomplete
> 
> -- 
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1975557
> 
> Title:
>   blank screen does not turn off display backlight
> 
> Status in gnome-shell package in Ubuntu:
>   Incomplete
> 
> Bug description:
>   I updated a system from 21.10 to 22.04 and noticed that when the
>   screen is blanked by no keyboard or mouse activity that the backlight
>   in the VGA monitor is still on.  The "settings->Displays" has "Unknown
>   Display" which I assume means the system does not know what commands
>   to send to the monitor to shut it off.  I booted a live DVD of 21.10
>   and the settings has the VGA display as 'AOC 22" ' which is correct
>   and the screen blanking works correctly.  So it seems that the
>   definition for the AOC displays have been removed from 22.04.
> 
>   This behavior is different on Ubuntu 21.10, the VGA display is blank and the
> backlight is off.  A minor nit is on 21.10 the "settings->Displays" shows the
> VGA display manufacture name, on 22.04 the
>   VGA display manufacture name is "Unknown Display".
> 
>   I have discovered that the settings have the following options
> 
>   "settings->Power->Screen Blank" with a time value to be selected and the
>   following text on the next line "Turns the screen off after a period of
>   inactivity"
> 
>   "settings->Privacy->Screen->Blank Screen Display" with a time value to be
>   selected and the following text on the next line "Period of inactivity after
>   which the screen will go blank"
> 
>   The two options have different actions but seem to be connected because
>   changing the time on one changes the time on the other.
> 
>   My guess is that the update changed the action for Ubuntu 22.04.  I
>   would like the 21.10 behavior, that is to turn off the VGA display not
>   just blank the display when selecting the "settings->Power->Screen
>   Blank" for 22.04.
> 
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1975557/+subscriptions

-- 
Robert Blair


Tell me and I forget. Teach me and I remember. Involve me and I learn.  -- Xun 
Kuang (Confucian philosopher)

-- 
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/1975557

Title:
  blank screen does not turn off display backlight

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


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

[Bug 1970111] Re: snap-store has "Install" button on its details page although it is already installed, clicking it installs incorrect version

2022-05-11 Thread Robert Ancell
I followed the step after installing the edge version of snap-store
(41.3-60-gfe4703a) and it didn't show the problem - are you still
getting it?

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

Title:
  snap-store has "Install" button on its details page although it is
  already installed, clicking it installs incorrect version

To manage notifications about this bug go to:
https://bugs.launchpad.net/snap-store-desktop/+bug/1970111/+subscriptions


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-04-28 Thread Robert Ancell
The snap-store beta channel currently contains the change and that will
roll out to the stable channel soon (assuming no issues found).

The fix will go into Debian for gnome-software (we are in sync with
Debian for this), and that will be copied over to Ubuntu 22.04.

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-04-27 Thread Robert Ancell
Pushed this change into the snap-store and snap-store-41 branches.

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-04-27 Thread Robert Ancell
** Changed in: snap-store-desktop
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: snap-store-desktop
   Status: Triaged => Fix Committed

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-04-27 Thread Robert Ancell
Fix is in https://gitlab.gnome.org/GNOME/gnome-
software/-/merge_requests/1333

** Changed in: gnome-software (Ubuntu)
   Importance: Undecided => Critical

** Changed in: gnome-software (Ubuntu)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: gnome-software (Ubuntu)
 Assignee: Robert Ancell (robert-ancell) => (unassigned)

** Changed in: gnome-software (Ubuntu)
 Assignee: (unassigned) => Jeremy Bicha (jbicha)

** Changed in: snap-store-desktop
   Importance: Undecided => Critical

** Changed in: gnome-software (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: snap-store-desktop
   Status: Confirmed => Triaged

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1969303] Re: "No package to remove" error when attempting to uninstall

2022-04-26 Thread Robert Ancell
** Changed in: snap-store-desktop
   Status: Fix Released => Confirmed

-- 
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/1969303

Title:
  "No package to remove" error when attempting to uninstall

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


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

[Bug 1968518] Re: FFe: Backport new RDP settings

2022-04-12 Thread Robert Ancell
Uploaded as 1:41.4-1ubuntu11

** Changed in: gnome-control-center (Ubuntu)
   Status: Triaged => Fix Committed

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: FFe: Backport new RDP settings

2022-04-11 Thread Robert Ancell
Łukasz - PPA here https://launchpad.net/~robert-
ancell/+archive/ubuntu/gnome-control-center

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
Freeze exception emails:
https://lists.ubuntu.com/archives/ubuntu-doc/2022-April/020825.html
https://lists.ubuntu.com/archives/ubuntu-translators/2022-April/007830.html

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
Proposed changes are in https://salsa.debian.org/gnome-team/gnome-
control-center/-/tree/ubuntu/sharing-rdp

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
** Attachment added: "Backported sharing dialog"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1968518/+attachment/5579135/+files/Screenshot%20from%202022-04-11%2016-06-56.png

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
** Attachment added: "Backported sharing panel"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1968518/+attachment/5579134/+files/Screenshot%20from%202022-04-11%2016-06-52.png

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
** Attachment added: "Current sharing dialog in jammy"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1968518/+attachment/5579133/+files/Screenshot%20from%202022-04-11%2016-01-10.png

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] Re: Backport new RDP settings

2022-04-10 Thread Robert Ancell
** Attachment added: "Current sharing panel in jammy"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1968518/+attachment/5579132/+files/Screenshot%20from%202022-04-11%2016-01-00.png

-- 
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/1968518

Title:
  FFe: Backport new RDP settings

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


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

[Bug 1968518] [NEW] Backport new RDP settings

2022-04-10 Thread Robert Ancell
Public bug reported:

We are shipping some GNOME 41 and some GNOME 42 components in jammy. In
GNOME 42 the remote desktop support moved from VNC to RDP. We have the
updated gnome-remote-desktop in jammy, but not the settings changes in
gnome-control-center 41. The proposal is to backport these settings.

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: 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/1968518

Title:
  Backport new RDP settings

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


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

[Bug 1951220] ProcEnviron.txt

2022-03-25 Thread Robert Pearson
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1951220/+attachment/5573101/+files/ProcEnviron.txt

-- 
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/1951220

Title:
  Caja and Nautilus umacceptably slow for more than 50 files

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


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

[Bug 1951220] ProcCpuinfoMinimal.txt

2022-03-25 Thread Robert Pearson
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1951220/+attachment/5573100/+files/ProcCpuinfoMinimal.txt

-- 
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/1951220

Title:
  Caja and Nautilus umacceptably slow for more than 50 files

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


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

[Bug 1951220] Re: Caja and Nautilus umacceptably slow for more than 50 files

2022-03-25 Thread Robert Pearson
apport information

** Tags added: apport-collected

** Description changed:

  The latest update of Caja seems to have replaced the existing algorithms
  with ones that do not scale. Right clicking takes >3 minutes to open the
  menu if there are more than 300 files in the current folder. Opening a
  directory with 12,000 files takes so long that I get to catch up on my
  reading.
  
  Also Caja frequently crashes (even more often than Chrome).
  
- This was not a problem in earlier versions of Ubuntu MATE (18.04 through
- 20.04.3 without the last 3 updates).
+ This was not a problem in earlier versions of Ubuntu MATE (18.04 through 
20.04.3 without the last 3 updates).
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.21
+ Architecture: amd64
+ CasperMD5CheckResult: skip
+ CurrentDesktop: MATE
+ DistroRelease: Ubuntu 20.04
+ InstallationDate: Installed on 2022-03-05 (21 days ago)
+ InstallationMedia: Ubuntu-MATE 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
+ Package: nautilus
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 5.13.0-35.40~20.04.1-generic 5.13.19
+ Tags:  focal
+ Uname: Linux 5.13.0-35-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1951220/+attachment/5573099/+files/Dependencies.txt

-- 
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/1951220

Title:
  Caja and Nautilus umacceptably slow for more than 50 files

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


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

[Bug 1869086] Re: Firmware upgrade always notifies to reboot the device even on immediate failure

2022-02-23 Thread Robert Ancell
Marco - is this still occurring in recent versions of snap-store? Does
it also occur in gnome-software?

-- 
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/1869086

Title:
  Firmware upgrade always notifies to reboot the device even on
  immediate failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/snap-store-desktop/+bug/1869086/+subscriptions


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

[Bug 1958684] Re: gnome-shell crashed with SIGFPE in meta_wayland_xdg_toplevel_send_configure() from meta_window_wayland_configure()

2022-01-25 Thread Robert Löhning
I would like to have it fixed in 20.04, indeed. I added the tag.

Thank you for your advice and comments. For now, this should be
sufficient for us to proceed.

** Tags added: rls-ff-incoming

-- 
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/1958684

Title:
  gnome-shell crashed with SIGFPE in
  meta_wayland_xdg_toplevel_send_configure() from
  meta_window_wayland_configure()

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


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

[Bug 1958684] Re: gnome-shell crashed with SIGFPE in meta_wayland_xdg_toplevel_send_configure() from meta_window_wayland_configure()

2022-01-24 Thread Robert Löhning
Can you tell already which versions of Ubuntu will receive 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/1958684

Title:
  gnome-shell crashed with SIGFPE in
  meta_wayland_xdg_toplevel_send_configure() from
  meta_window_wayland_configure()

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


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

[Bug 1943849] Re: [FFe] improve the appearance-page in gnome-control-center

2022-01-20 Thread Robert Ancell
I've made a branch that just contains the "ubuntu" (appearance) panel -
https://gitlab.gnome.org/Community/Ubuntu/gnome-control-
center/-/tree/ubuntu-panel

I think that will make more sense than maintaining the whole ubuntu-41
branch as this feature is sufficiently self contained that it works
without the other Ubuntu changes and we can build the patch from this
branch.

Let me know if you have any issues building this!

-- 
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/1943849

Title:
  [FFe] improve the appearance-page in gnome-control-center

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


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

[Bug 1958317] Re: Show on about panel if using Ubuntu Advantage

2022-01-18 Thread Robert Ancell
Currently available for testing in https://launchpad.net/~robert-
ancell/+archive/ubuntu/ubuntu-pro

-- 
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/1958317

Title:
  Show on about panel if using Ubuntu Advantage

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


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

[Bug 1958317] Re: Show on about panel if using Ubuntu Advantage

2022-01-18 Thread Robert Ancell
Blocked on ubuntu-advantage-desktop-daemon MIR (LP: #1954909)

-- 
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/1958317

Title:
  Show on about panel if using Ubuntu Advantage

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


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

[Bug 1958317] Re: Show on about panel if using Ubuntu Advantage

2022-01-18 Thread Robert Ancell
-- 
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/1958317

Title:
  Show on about panel if using Ubuntu Advantage

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


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

[Bug 1958317] [NEW] Show on about panel if using Ubuntu Advantage

2022-01-18 Thread Robert Ancell
Public bug reported:

Show on the "About" panel if this machine is using Ubuntu Advantage by
changing the logo.

[Test Plan]
1. Open gnome-control-center
2. Go to "About" panel.
3. Check the logo is updated if connected to Ubuntu Advantage.

[Where problems could occur]
Bugs in this feature could cause gnome-control-center to crash on the about 
page.

** Affects: gnome-control-center (Ubuntu)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: In Progress

** Affects: gnome-control-center (Ubuntu Bionic)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: In Progress

** Affects: gnome-control-center (Ubuntu Focal)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: In Progress

** Affects: gnome-control-center (Ubuntu Jammy)
 Importance: High
 Assignee: Robert Ancell (robert-ancell)
 Status: In Progress

** Also affects: gnome-control-center (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: gnome-control-center (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: gnome-control-center (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Changed in: gnome-control-center (Ubuntu Bionic)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: gnome-control-center (Ubuntu Focal)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: gnome-control-center (Ubuntu Jammy)
 Assignee: (unassigned) => Robert Ancell (robert-ancell)

** Changed in: gnome-control-center (Ubuntu Bionic)
   Importance: Undecided => High

** Changed in: gnome-control-center (Ubuntu Focal)
   Importance: Undecided => High

** Changed in: gnome-control-center (Ubuntu Jammy)
   Importance: Undecided => High

** Changed in: gnome-control-center (Ubuntu Bionic)
   Status: New => In Progress

** Changed in: gnome-control-center (Ubuntu Focal)
   Status: New => In Progress

** Changed in: gnome-control-center (Ubuntu Jammy)
   Status: New => In Progress

-- 
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/1958317

Title:
  Show on about panel if using Ubuntu Advantage

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


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

[Bug 1886948] Re: Can't calibrate monitor

2022-01-01 Thread Robert Luckett
This occurs on every 20.04 install I've done. Installing argyll fixes
issue.

-- 
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/1886948

Title:
  Can't calibrate monitor

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


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

Re: [Bug 1949618] Re: system locks up when selection one of top 2 items in dash

2021-11-15 Thread Robert E. Novak
Sorry I missed the name change.  I was having trouble finding references 
that described the changes in names for screen elements.  I am referring 
to the top icons in the left hand toolbar/launcher, not the top task 
bar.  The attached picture should help.

On 11/13/21 12:43 PM, Paul White wrote:
> Robert, you raised this issue agaist "dash" which is a shell similar to
> bash, zsh etc. 'Dash' was a term used when the default Ubuntu desktop
> was Unity which has of course now been superceded by GNOME Shell.
>
> Please advise on which "top two icons" you are referring to. Icons in
> the top bar (which might vary depnding on the hardware being used) or
> icons which are displayed when clicking on the nine dots in the botton
> left hand corner of the screen (Show Applications).
>
> I'm moving this bug report to the gnome-shell package.
>
>
> ** Package changed: dash (Ubuntu) => gnome-shell (Ubuntu)
>
> ** Changed in: gnome-shell (Ubuntu)
> Status: New => Incomplete
>


** Attachment added: "Modified Screenshot from 2021-11-15 11-14-55.png"
   
https://bugs.launchpad.net/bugs/1949618/+attachment/5541057/+files/Modified%20Screenshot%20from%202021-11-15%2011-14-55.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/1949618

Title:
  system locks up when selection one of top 2 items in dash

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


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

[Bug 1948704] Re: segfault with gnome-shell & gdm-session-worker

2021-10-28 Thread Robert Kudyba
It ran for 47 hours and yes all tests passed

** Attachment added: "Screenshot of Memtest completed"
   
https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1948704/+attachment/5536844/+files/IMG_0332.jpg

-- 
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/1948704

Title:
  segfault with gnome-shell & gdm-session-worker

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


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

[Bug 1948704] Re: segfault with gnome-shell & gdm-session-worker

2021-10-28 Thread Robert Kudyba
memtest showing now errors I uploaded the results of ubuntu-bug:
cat /var/crash/_usr_lib_gdm3_gdm-session-worker.0.uploaded
0d1b7258-3816-11ec-ae83-fa163e102db1

Perhaps the stacktrace will help or perhaps warnings can be added if memory is 
suspected?
Thread 3 (Thread 0x7f9f50e77700 (LWP 1292)):
#0  0x7f9f518eaaff in __GI___poll (fds=0x5565cc27c700, nfds=1, timeout=-1) 
at ../sysdeps/unix/sysv/linux/poll.c:29
resultvar = 18446744073709551100
sc_cancel_oldtype = 0
#1  0x7f9f51bab36e in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f9f51bab4a3 in g_main_context_iteration () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f9f51bab4f1 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f9f51bd4ad1 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7f9f519d0609 in start_thread (arg=) at 
pthread_create.c:477
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140322233874176, 
1304645551131517484, 140731730720206, 140731730720207, 140731730720352, 140
322233871936, -1358492822650691028, -1358491638588054996}, mask_was_saved = 
0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup
 = 0x0, canceltype = 0}}}
not_first_call = 0
#6  0x7f9f518f7293 in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:95
.
Thread 2 (Thread 0x7f9f4bfff700 (LWP 1293)):
#0  0x7f9f518eaaff in __GI___poll (fds=0x5565cc294470, nfds=3, timeout=-1) 
at ../sysdeps/unix/sysv/linux/poll.c:29
resultvar = 18446744073709551100
sc_cancel_oldtype = 0
#1  0x7f9f51bab36e in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0

#2  0x7f9f51bab6f3 in g_main_loop_run () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f9f51e00f8a in  () at /lib/x86_64-linux-gnu/libgio-2.0.so.0
#4  0x7f9f51bd4ad1 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7f9f519d0609 in start_thread (arg=) at 
pthread_create.c:477
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140322151593728, 
1304645551131517484, 140731730720638, 140731730720639, 140731730720784, 
140322151591488, -1358504028220366292, -1358491638588054996}, mask_was_saved = 
0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, 
canceltype = 0}}}
not_first_call = 0
#6  0x7f9f518f7293 in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:95
.
Thread 1 (Thread 0x7f9f513e9040 (LWP 1291)):
#0  0x7f9f506256e7 in  () at /lib/x86_64-linux-gnu/security/pam_systemd.so
#1  0x7f9f5062c02a in  () at /lib/x86_64-linux-gnu/security/pam_systemd.so
#2  0x7f9f5061e279 in  () at /lib/x86_64-linux-gnu/security/pam_systemd.so
#3  0x7f9f50623b6a in  () at /lib/x86_64-linux-gnu/security/pam_systemd.so
#4  0x7f9f5063478a in  () at /lib/x86_64-linux-gnu/security/pam_systemd.so
#5  0x7f9f506378be in pam_sm_close_session () at 
/lib/x86_64-linux-gnu/security/pam_systemd.so
#6  0x7f9f51a1a056 in  () at /lib/x86_64-linux-gnu/libpam.so.0
#7  0x5565cbf9b8e7 in  ()
#8  0x5565cbf9b9a6 in  ()
#9  0x7f9f51ba7338 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#10 0x7f9f51bab04e in g_main_context_dispatch () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#11 0x7f9f51bab400 in  () at /lib/x86_64-linux-gnu/libglib-2.0.so.0
#12 0x7f9f51bab6f3 in g_main_loop_run () at 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#13 0x5565cbf92413 in  ()
#14 0x7f9f517fc0b3 in __libc_start_main (main=0x5565cbf92290, argc=1, 
argv=0x7ffea8d18798, init=, fini=, 
rtld_fini=, stack_end=0x7ffea8d18788) at ../csu/libc-start.c:308
result = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {93895702292016, 
1304645551131517484, 93895702160560, 140731730724752, 0, 0, 
-1304256548182367700, -1358491932716506580}, mask_was_saved = 0}}, priv = {pad 
= {0x0, 0x0, 0x1, 0x7ffea8d18798}, data = {prev = 0x0, cleanup = 0x0, 
canceltype = 1}}}
not_first_call = 
#15 0x5565cbf924de in  ()

== Title =
gdm-session-worker crashed with SIGSEGV


** Attachment added: "pic of memtest no errors"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1948704/+attachment/5536832/+files/IMG_0334.jpg

-- 
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/1948704

Title:
  segfault with gnome-shell & gdm-session-worker

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


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

[Bug 1948704] [NEW] segfault with gnome-shell & gdm-session-worker

2021-10-25 Thread Robert Kudyba
Public bug reported:

Using Ubuntu 20.04.3 LTS with 5.11.0-38-generic #42~20.04.1-Ubuntu,
gnome-shell/focal-updates,now 3.36.9-0ubuntu0.20.04.2 amd64 
[installed,automatic]
gnome-shell/focal-security 3.36.4-1ubuntu1~20.04.2 amd64
gnome-shell/focal 3.36.1-5ubuntu1 amd64
gnome-session/focal,focal 3.36.0-2ubuntu1 all

Oct 22 19:41:09 ourserver kernel: [15260.574496] show_signal_msg: 29 callbacks 
suppressed
Oct 22 19:41:09 ourserver kernel: [15260.574503] gnome-shell[1475]: segfault at 
11390db8 ip 7f3fd36f716c sp 7ffe50e6d788 error 4 in 
libmozjs-68.so.68.6.0[7f3fd3234000+843000]
Oct 22 19:41:09 ourserver kernel: [15260.574525] Code: 50 10 85 d2 75 d0 0f b6 
40 14 83 e8 01 3c 01 41 0f 96 c0 44 89 c0 c3 0f 1f 80 00 00 00 00 48 89 f0 45 
31 c0 48 25 00 00 f0 ff <48> 8b 90 f8 ff 0f 00 48 39 17 74 08 44 89 c0 c3 0f 1f 
40 00 48 85
Oct 22 19:41:09 ourserver kernel: [15260.619146] apport[2636]: segfault at 3 ip 
0003 sp 7fffe172cb48 error 14 in python3.8[40+23000]
Oct 22 19:41:09 ourserver kernel: [15260.619165] Code: Unable to access opcode 
bytes at RIP 0xffd9.
Oct 22 19:41:09 ourserver kernel: [15260.619186] Process 2636(apport) has 
RLIMIT_CORE set to 1
Oct 22 19:41:09 ourserver kernel: [15260.619189] Aborting core
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e761320' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: message repeated 3 times: [ 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e761320' of type 'GCancellable']
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e7d7860' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e80f8e0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e811b20' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e80e0a0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x7fd938006460' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e82c1e0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e7fc320' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x7fd934004a60' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e80ff60' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e8317a0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e8145e0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x7fd934005020' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e82c420' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e80fea0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e7c05e0' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e7dfc20' of type 'GCancellable'
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e761320' of type 'GCancellable'
Oct 22 19:41:09 ourserver gnome-session[1446]: gnome-session-binary[1446]: 
WARNING: Application 'org.gnome.Shell.desktop' killed by signal 11
Oct 22 19:41:09 ourserver gnome-session-binary[1446]: WARNING: Application 
'org.gnome.Shell.desktop' killed by signal 11
Oct 22 19:41:09 ourserver NetworkManager[1049]: 
../../../gobject/gsignal.c:2595: signal 'cancelled' is invalid for instance 
'0x562e9e761320' of type 'GCancellable'
Oct 22 19:41:09 ourserver kernel: [15260.661119] general protection fault, 
probably for non-canonical address

[Bug 1930810] Re: ubuntu-software is recommending unmaintained software snaps

2021-06-15 Thread Robert Ancell
Thanks for this Chris - this is being recommended by the snap store
(https://snapcraft.io/search?category=photo-and-video), but it does seem
like it should be removed from that list.

-- 
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/1930810

Title:
  ubuntu-software is recommending unmaintained software snaps

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

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

[Bug 1922353] Re: Overview sometimes fails to appear or disappear in gnome-shell 3.38

2021-06-14 Thread Robert
Is 21.04.1 available through the Software Updater?

-- 
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/1922353

Title:
  Overview sometimes fails to appear or disappear in gnome-shell 3.38

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

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

[Bug 1922353] Re: Overview sometimes fails to appear or disappear in gnome-shell 3.38

2021-06-04 Thread Robert
How do I install Ubuntu 21.04.1 to test the fix?

-- 
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/1922353

Title:
  Overview sometimes fails to appear or disappear in gnome-shell 3.38

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

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

[Bug 1922353] Re: Overview sometimes fails to appear or disappear in gnome-shell 3.38

2021-05-29 Thread Robert
Having the exact problem. Whenever I press the Super button it gets stuck and I 
am forced to restart making it difficult to use.

CPU: Intel Core i5-10400
GPU: Nvidia GTX 1650
OS: 21.04


** Attachment added: "Logs"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1922353/+attachment/5501049/+files/prevboot.txt

-- 
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/1922353

Title:
  Overview sometimes fails to appear or disappear in gnome-shell 3.38

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

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

[Bug 1871262] Re: gnome-shell freezes with meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed

2021-05-27 Thread Robert
Having the exact problem. Whenever I press the Super button it gets
stuck and I am forced to restart making it difficult to use.

CPU: Intel Core i5-10400
GPU: Nvidia GTX 1650
OS: 21.04

-- 
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/1871262

Title:
  gnome-shell freezes with meta_window_set_stack_position_no_sync:
  assertion 'window->stack_position >= 0' failed

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

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

[Bug 1920121] Re: Unable to do anything after pressing the Super key

2021-05-27 Thread Robert
*** This bug is a duplicate of bug 1871262 ***
https://bugs.launchpad.net/bugs/1871262

Having the exact problem. Whenever I press the Super button it gets
stuck and I am forced to restart making it difficult to use.

CPU: Intel Core i5-10400
GPU: Nvidia GTX 1650
OS: 21.04

-- 
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/1920121

Title:
  Unable to do anything after pressing the Super key

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

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

[Bug 36812] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts

2021-04-06 Thread Andrew Robert
https://cdraustralia.org/ provided hassle-free professional CDR Writing
Services. I got my CDR professionally prepared on time. They offered me
a detailed questionnaire relevant to my projects and prepared the Career
Episodes Report and summary statements based on the information. Thanks
to your team member. Well-done!

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

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts

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

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

[Bug 1921583] Re: Can't run System Monitor in Ubuntu Unity 21.04

2021-03-29 Thread Robert Roth
@seb128, the crash in my opinion is not related to the theme, but rather
the same as reported upstream https://gitlab.gnome.org/GNOME/gnome-
system-monitor/-/issues/182, coming from the migration to LibHandy, on
non-GNOME environments. The issue was fixed upstream with commit
https://gitlab.gnome.org/GNOME/gnome-system-
monitor/-/commit/69224a7b27a85e7485fb47f9e9f14ce674798c28 on master and
with commit https://gitlab.gnome.org/GNOME/gnome-system-
monitor/-/commit/ba93af5b3e429db5a9c4dd7e2d06b800735a9071 on the
gnome-40 stable branch, and will be available with the next stable
release.

** Bug watch added: gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues #182
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182

** Also affects: libgtop via
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182
   Importance: Unknown
   Status: Unknown

** No longer affects: libgtop

** Also affects: gnome-system-monitor via
   https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/182
   Importance: Unknown
   Status: Unknown

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

Title:
  Can't run System Monitor in Ubuntu Unity 21.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-system-monitor/+bug/1921583/+subscriptions

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

[Bug 1918190] Re: Enabling/Disabling VPN crashes window manager

2021-03-08 Thread Robert C Jennings
@3v1n0 (Marco Trevisan) has pointed out
https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1651 as a
possible fix

** Description changed:

  When I click on a VPN connection in the Gnome top bar to enable or
  disable the connection the entire desktop session crashes and dumps me
  at the session login screen.
  
  $ lsb_release -rd
  Description:  Ubuntu Hirsute Hippo (development branch)
  Release:  21.04
  
  $ loginctl show-session $(awk '/tty/ {print $1}' <(loginctl)) -p Type | awk 
-F= '{print $2}'
  wayland
  
  $ apt-cache policy network-manager
  network-manager:
    Installed: 1.30.0-1ubuntu1
    Candidate: 1.30.0-1ubuntu1
    Version table:
   *** 1.30.0-1ubuntu1 500
  500 http://us.archive.ubuntu.com/ubuntu hirsute/main amd64 Packages
  100 /var/lib/dpkg/status
  
  $ apt-cache policy gnome-shell
  gnome-shell:
-   Installed: 3.38.3-3ubuntu1
-   Candidate: 3.38.3-3ubuntu1
-   Version table:
-  *** 3.38.3-3ubuntu1 500
- 500 http://us.archive.ubuntu.com/ubuntu hirsute/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 3.38.3-3ubuntu1
+   Candidate: 3.38.3-3ubuntu1
+   Version table:
+  *** 3.38.3-3ubuntu1 500
+ 500 http://us.archive.ubuntu.com/ubuntu hirsute/main amd64 Packages
+ 100 /var/lib/dpkg/status
+ 
+ $ dpkg-query -W|grep mutter
+ gir1.2-mutter-7:amd64 3.38.3-3ubuntu1
+ libmutter-7-0:amd64   3.38.3-3ubuntu1
+ mutter3.38.3-3ubuntu1
+ mutter-common 3.38.3-3ubuntu1
  
  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: network-manager 1.30.0-1ubuntu1
  ProcVersionSignature: Ubuntu 5.10.0-14.15-generic 5.10.11
  Uname: Linux 5.10.0-14-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu59
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar  8 14:12:44 2021
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2017-04-21 (1416 days ago)
  InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Beta amd64 (20170404)
  RebootRequiredPkgs:
   libssl1.1
   libssl1.1
  SourcePackage: network-manager
  UpgradeStatus: No upgrade log present (probably fresh install)
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI  WWAN-HW  WWAN
   running  1.30.0   connected  started  full  enabled enabled  
disabled  enabled  enabled

** Also affects: mutter (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/1918190

Title:
  Enabling/Disabling VPN crashes window manager

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

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

  1   2   3   4   5   6   7   8   9   10   >