[Desktop-packages] [Bug 2046639] [NEW] qt DialogMirror.py argument 1 has unexpected type 'float' while selecting best mirror

2023-12-16 Thread Mike T
Public bug reported:

While selecting the best mirror in software-properties-qt, there's a
traceback:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/softwareproperties/qt/DialogMirror.py", 
line 227, in on_report_progress
self.dialog.setValue(frac*100)
TypeError: setValue(self, progress: int): argument 1 has unexpected type 'float'

I didn't investigate thoroughly, but it looks like maybe someone updated
how progress was being updated but didn't check types or test all the
way through before releasing.  It can be fixed with a simple patch:

diff --git a/softwareproperties/qt/DialogMirror.py 
b/softwareproperties/qt/DialogMirror.py
index 972c4fb..4d1c150 100644
--- a/softwareproperties/qt/DialogMirror.py
+++ b/softwareproperties/qt/DialogMirror.py
@@ -223,7 +223,7 @@ class DialogMirror(QDialog):
   def on_report_progress(self, current, max, borders=(0,1), mod=(0,0)):
   #self.dialog.setLabelText(_("Completed %s of %s tests") % \
   #   (current + mod[0], max + mod[1]))
-  frac = borders[0] + (borders[1] - borders[0]) / max * current
+  frac = int(borders[0] + (borders[1] - borders[0]) / max * current)
   self.dialog.setValue(frac*100)


$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 23.10
Release:23.10
Codename:   mantic

$ apt-cache policy pkgname software-properties-qt
software-properties-qt:
  Installed: 0.99.39
  Candidate: 0.99.39
  Version table:
 *** 0.99.39 500
500 https://mirror.it.ubc.ca/ubuntu mantic/universe amd64 Packages
100 /var/lib/dpkg/status
N: Unable to locate package pkgname

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

** Patch added: "patch to cast float to int for progress dialog"
   
https://bugs.launchpad.net/bugs/2046639/+attachment/5729851/+files/qt_DialogMirror_unexpected_float.patch

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

Title:
  qt DialogMirror.py argument 1 has unexpected type 'float' while
  selecting best mirror

Status in software-properties package in Ubuntu:
  New

Bug description:
  While selecting the best mirror in software-properties-qt, there's a
  traceback:

  Traceback (most recent call last):
File 
"/usr/lib/python3/dist-packages/softwareproperties/qt/DialogMirror.py", line 
227, in on_report_progress
  self.dialog.setValue(frac*100)
  TypeError: setValue(self, progress: int): argument 1 has unexpected type 
'float'

  I didn't investigate thoroughly, but it looks like maybe someone
  updated how progress was being updated but didn't check types or test
  all the way through before releasing.  It can be fixed with a simple
  patch:

  diff --git a/softwareproperties/qt/DialogMirror.py 
b/softwareproperties/qt/DialogMirror.py
  index 972c4fb..4d1c150 100644
  --- a/softwareproperties/qt/DialogMirror.py
  +++ b/softwareproperties/qt/DialogMirror.py
  @@ -223,7 +223,7 @@ class DialogMirror(QDialog):
 def on_report_progress(self, current, max, borders=(0,1), mod=(0,0)):
 #self.dialog.setLabelText(_("Completed %s of %s tests") % \
 #   (current + mod[0], max + mod[1]))
  -  frac = borders[0] + (borders[1] - borders[0]) / max * current
  +  frac = int(borders[0] + (borders[1] - borders[0]) / max * current)
 self.dialog.setValue(frac*100)

  
  $ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 23.10
  Release:  23.10
  Codename: mantic

  $ apt-cache policy pkgname software-properties-qt
  software-properties-qt:
Installed: 0.99.39
Candidate: 0.99.39
Version table:
   *** 0.99.39 500
  500 https://mirror.it.ubc.ca/ubuntu mantic/universe amd64 Packages
  100 /var/lib/dpkg/status
  N: Unable to locate package pkgname

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


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


[Desktop-packages] [Bug 2043395] Re: Updating to Ubuntu 23.10 (mantic) fails as the gnome-remote-desktop & gnome-shell packages are broken

2023-12-16 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-shell (Ubuntu)
   Status: New => Confirmed

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

Title:
  Updating to Ubuntu 23.10 (mantic) fails as the gnome-remote-desktop &
  gnome-shell packages are broken

Status in gnome-shell package in Ubuntu:
  Confirmed

Bug description:
  Running do-release-upgrade on 23.04 (lunar), **ubuntu-desktop-minimal
  based** install:

  2023-11-10 07:03:16,578 DEBUG nvidiaUpdate()
  2023-11-10 07:03:20,125 INFO no old nvidia driver installed, installing no new
  2023-11-10 07:03:20,125 DEBUG quirks: running PostDistUpgradeCache
  2023-11-10 07:03:20,125 DEBUG running Quirks.PostDistUpgradeCache
  2023-11-10 07:03:20,237 DEBUG Comparing 6.2.0-35 with
  2023-11-10 07:03:20,237 DEBUG Comparing 6.2.0-36 with 6.2.0-35
  2023-11-10 07:03:20,238 DEBUG Comparing 6.5.0-10 with 6.2.0-36
  2023-11-10 07:03:20,554 ERROR Dist-upgrade failed: 'Broken packages after 
upgrade: gnome-remote-desktop, gnome-shell'
  2023-11-10 07:03:20,564 DEBUG abort called

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


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


[Desktop-packages] [Bug 1989288] Re: EOG doesn't free memory and crashes system

2023-12-16 Thread Launchpad Bug Tracker
[Expired for eog (Ubuntu) because there has been no activity for 60
days.]

** Changed in: eog (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  EOG doesn't free memory and crashes system

Status in eog package in Ubuntu:
  Expired

Bug description:
  What happens:

  EOG takes up memory for every individual picture that is displayed and
  doesn't free it up again until closed. With high resolution images,
  this can easily lead to OOM killer being invoked.

  How to reproduce:

  1) have a directory with many images, preferably large file size
  2) open one with EOG and keep scrolling through them with the arrow keys

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: eog 42.0-1
  ProcVersionSignature: Ubuntu 5.15.0-47.51-generic 5.15.46
  Uname: Linux 5.15.0-47-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Sep 11 20:05:03 2022
  InstallationDate: Installed on 2020-06-04 (828 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  SourcePackage: eog
  UpgradeStatus: Upgraded to jammy on 2022-08-13 (29 days ago)

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


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


[Desktop-packages] [Bug 2044837] Re: unable to type to gnome-terminals when the tabs have been reordered and the tab tooltip is present

2023-12-16 Thread Imre Péntek
** Attachment added: "reupload"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/2044837/+attachment/5729798/+files/Kepernyofelvetel_ekkor%3A_2023-11-27_18%3A45%3A45.webm

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

Title:
  unable to type to gnome-terminals when the tabs have been reordered
  and the tab tooltip is present

Status in gnome-terminal package in Ubuntu:
  New

Bug description:
  Hello

  prerequisites: up-to-date Ubuntu 22.04.3 LTS

  how to reproduce:
  1. boot up and log in
  2. press ctrl+alt+t to launch gnome terminal
  3. fullscreen your gnome terminal
  4. press ctrl+shift+t 6 times to have 7 tabs
  5. bring your cursor to the tab of the rightmost (active) terminal, making 
the tooltip appear
  6. verify that you can still write to this terminal window while the tooltip 
is visible
  7. verify that the cursor inside your terminal is "solid" and not "hollow" 
while the tooltip is visible
  8. drag the tab of the rightmost terminal to the farthest left to make 
it the leftmost
  9. activate any tab you like

  actual behaviour:
  1. verify that the first letter you want to type doesn't get typed into the 
terminal window while the tooltip is visible
  2. verify that the cursor inside your terminal is "hollow" and not "solid" 
while the tooltip is visible

  expected behaviour:
  1. I'd expect to still be able to type to this terminal window while the 
tooltip is visible
  2. I'd expect the cursor to be still "solid" as a visual clue, but this isn't 
the main issue I'm having here.

  please check the provided screen footage as well

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gnome-terminal 3.44.0-1ubuntu1
  ProcVersionSignature: Ubuntu 6.2.0-37.38~22.04.1-generic 6.2.16
  Uname: Linux 6.2.0-37-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Nov 27 18:52:30 2023
  InstallationDate: Installed on 2022-05-05 (570 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=hu_HU.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-terminal
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Desktop-packages] [Bug 2044837] Re: unable to type to gnome-terminals when the tabs have been reordered and the tab tooltip is present

2023-12-16 Thread Imre Péntek
** Summary changed:

- unable to type to gnome-terminals when the tabs have been reorderad and the 
tab tooltip is present
+ unable to type to gnome-terminals when the tabs have been reordered and the 
tab tooltip is present

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

Title:
  unable to type to gnome-terminals when the tabs have been reordered
  and the tab tooltip is present

Status in gnome-terminal package in Ubuntu:
  New

Bug description:
  Hello

  prerequisites: up-to-date Ubuntu 22.04.3 LTS

  how to reproduce:
  1. boot up and log in
  2. press ctrl+alt+t to launch gnome terminal
  3. fullscreen your gnome terminal
  4. press ctrl+shift+t 6 times to have 7 tabs
  5. bring your cursor to the tab of the rightmost (active) terminal, making 
the tooltip appear
  6. verify that you can still write to this terminal window while the tooltip 
is visible
  7. verify that the cursor inside your terminal is "solid" and not "hollow" 
while the tooltip is visible
  8. drag the tab of the rightmost terminal to the farthest left to make 
it the leftmost
  9. activate any tab you like

  actual behaviour:
  1. verify that the first letter you want to type doesn't get typed into the 
terminal window while the tooltip is visible
  2. verify that the cursor inside your terminal is "hollow" and not "solid" 
while the tooltip is visible

  expected behaviour:
  1. I'd expect to still be able to type to this terminal window while the 
tooltip is visible
  2. I'd expect the cursor to be still "solid" as a visual clue, but this isn't 
the main issue I'm having here.

  please check the provided screen footage as well

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gnome-terminal 3.44.0-1ubuntu1
  ProcVersionSignature: Ubuntu 6.2.0-37.38~22.04.1-generic 6.2.16
  Uname: Linux 6.2.0-37-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Nov 27 18:52:30 2023
  InstallationDate: Installed on 2022-05-05 (570 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=hu_HU.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-terminal
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Desktop-packages] [Bug 2046632] Re: Submenus appear and disappear rapidly and can't be used

2023-12-16 Thread Nate Eldredge
Oh, actually I think this was a side effect of a different problem: I
had a USB ethernet dongle attached which, for some reason, was
connecting and disconnecting rapidly.  So probably the applet tried to
refresh every time this happened.  I guess ideally it would still be
usable even in this situation, but probably this is not really an issue.
I'll investigate the ethernet dongle issue separately.

** Attachment removed: "nmcli-con.txt"
   
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/2046632/+attachment/5729795/+files/nmcli-con.txt

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

Title:
  Submenus appear and disappear rapidly and can't be used

Status in network-manager-applet package in Ubuntu:
  New

Bug description:
  I'm using nm-applet under the awesome window manager.  Since upgrading
  to 23.10, when you open the applet's menu and hover over a submenu
  such as "Available networks" or "VPN Connections", the submenu appears
  and disappears rapidly (about twice per second), and if you try to
  mouse over the submenu it disappears completely.  This makes it
  impossible to select an available network, etc.

  It worked fine under 23.04.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: network-manager-gnome 1.32.0-3ubuntu1
  ProcVersionSignature: Ubuntu 6.5.0-14.14-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Sat Dec 16 13:50:16 2023
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2019-06-03 (1657 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  IpRoute:
   default via 192.168.1.13 dev wlo1 proto dhcp src 192.168.1.37 metric 600 
   169.254.0.0/16 dev virbr0 scope link metric 1000 linkdown 
   172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 
   192.168.1.0/24 dev wlo1 proto kernel scope link src 192.168.1.37 metric 600 
   192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1 
linkdown
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  SourcePackage: network-manager-applet
  UpgradeStatus: Upgraded to mantic on 2023-12-14 (3 days ago)
  modified.conffile..etc.default.apport:
   # set this to 0 to disable apport, or to 1 to enable it
   # you can temporarily override this with
   # sudo service apport start force_start=1
   enabled=0
  mtime.conffile..etc.default.apport: 2020-08-04T11:07:36.415303
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.44.2   connected  started  full  enabled enabled  
enabled  missing  enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/2046632/+subscriptions


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


[Desktop-packages] [Bug 1973084] Re: transmission-daemon high RAM usage

2023-12-16 Thread Chuck H
All good for over 24 hours with Lunar on the proposed package.  I tested
it with the Ubuntu Server LTS 22.04 torrent and had at least a few
encrypted connections.  Memory was stable throughout.

@ubuntu-2304-test:~$ apt-cache policy transmission-daemon
transmission-daemon:
  Installed: 3.00-2.1ubuntu0.1
  Candidate: 3.00-2.1ubuntu0.1
  Version table:
 *** 3.00-2.1ubuntu0.1 100
100 /var/lib/dpkg/status
 3.00-2.1build1 500
500 http://us.archive.ubuntu.com/ubuntu lunar/universe amd64 Packages

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

Title:
  transmission-daemon high RAM usage

Status in transmission package in Ubuntu:
  Fix Released
Status in transmission source package in Jammy:
  Fix Committed
Status in transmission source package in Lunar:
  Fix Committed
Status in transmission package in Debian:
  New

Bug description:
  [ Impact ]

  There is a memory leak in transmission-daemon that was introduced by a
  faulty openssl3 patch. It has been reported that it's noticeable after
  a few hours of seeding/downloading torrent files, less than a day.

  [ Test Plan ]

  Being a memory leak, there is no immediate/quick test that can be
  performed, other than letting it run for a few hours and measure
  memory consumption "before" and "after". comment #5 mentions about 1Gb
  of RAM after 18h of runtime. #comment 14 mentions 12Gb of RAM, but not
  for how long it was running.

  comment #20 says that after 24h using the patched version from a PPA
  build, the memory consumption was steady at 300Mb.

  I'd suggest a 24h test and that it should stay under 1Gb of RAM.

  [ Where problems could occur ]

  The patch loads the default and legacy openssl3 providers. This will
  potentially change the set of algorithms available to the application,
  compared to what was there before. That being said, the legacy
  provider is a conservative approach, and the likely result is that
  *more* algorithms will become available, and not less. This is also
  the approach I have seen in other applications that were rebuilt using
  openssl3 instead of openssl1.1.

  It does seem safer than the original patch, which was manually
  handling ciphers, in particular RC4, and, well, introduced the memory
  leak.

  [ Other Info ]

  Patch came from gentoo.

  [ Original Description ]
  Transmission uses a lot of RAM in ubuntu 22.04 server (arm64) runnign on a 
Raspberry Pi 4.

  It "eats" RAM and the RAM usage grows each hour until it crashes the
  system.

  I sideloaded transmission-daemon and its dependancies from debian 11
  (arm64) locked the packages so apt won't update them and, ever since,
  this issue hasn't happened.

  Description:Ubuntu 22.04 LTS
  Release:22.04

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


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


[Desktop-packages] [Bug 2029010] Re: dummy sound on huawei mate d15 laptop

2023-12-16 Thread Bug Watch Updater
** Bug watch added: github.com/codepayne/linux-sound-huawei/issues #26
   https://github.com/codepayne/linux-sound-huawei/issues/26

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

Title:
  dummy sound on huawei mate d15 laptop

Status in Linux:
  Confirmed
Status in alsa-driver package in Ubuntu:
  New
Status in alsa-ucm-conf package in Ubuntu:
  New
Status in firmware-sof package in Ubuntu:
  New
Status in linux package in Ubuntu:
  New

Bug description:
  I tried different options, but I couldn't raise the sound.
  saber716rus@saber716rus-BOM-WXX9 ~> cat /etc/os-release
  NAME="Green Linux"
  VERSION="21.2 (Victoria)"
  ID=linuxmint
  ID_LIKE="ubuntu debian"
  PRETTY_NAME="Green Linux 21.2.0 Pro (Cubic 2023-06-14 22:01)"
  VERSION_ID="21"
  HOME_URL="https://greenlinux.ru/;
  SUPPORT_URL="https://forum.linuxmint.su/;
  
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/ru/latest/;
  PRIVACY_POLICY_URL="https://greenlinux.ru/;
  VERSION_CODENAME=victoria
  UBUNTU_CODENAME=jammy
  saber716rus@saber716rus-BOM-WXX9 ~ [1]> cat /proc/asound/cards 
   0 [Generic]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xd03c irq 80
   1 [acp]: acp - acp
HUAWEI-BOM_WXX9-M1010-BOM_WXX9_PCB_B2
  saber716rus@saber716rus-BOM-WXX9 ~>

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


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


[Desktop-packages] [Bug 2029010]

2023-12-16 Thread tommaso.zanotti
With kernel 6.7 there will finally be support for Everest sound cards also for 
AMD CPUs thanks to the AWESOME work of Marian Postevca (aka codepayne).
More info here: https://patchwork.kernel.org/comment/25504908/

You can already try it by installing the release candidates but pay attention:
- There is currently a regression in the PM handling of the AMD ACP sound 
controller, discussed here 
https://lore.kernel.org/alsa-devel/87a5v8szhc@mutex.one/
- On Fedora the necessary kernel module is not currently enabled
- You need to make some adjustments from alsamixer

Here you will find further information:
> https://github.com/codepayne/linux-sound-huawei/issues/26

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

Title:
  dummy sound on huawei mate d15 laptop

Status in Linux:
  Confirmed
Status in alsa-driver package in Ubuntu:
  New
Status in alsa-ucm-conf package in Ubuntu:
  New
Status in firmware-sof package in Ubuntu:
  New
Status in linux package in Ubuntu:
  New

Bug description:
  I tried different options, but I couldn't raise the sound.
  saber716rus@saber716rus-BOM-WXX9 ~> cat /etc/os-release
  NAME="Green Linux"
  VERSION="21.2 (Victoria)"
  ID=linuxmint
  ID_LIKE="ubuntu debian"
  PRETTY_NAME="Green Linux 21.2.0 Pro (Cubic 2023-06-14 22:01)"
  VERSION_ID="21"
  HOME_URL="https://greenlinux.ru/;
  SUPPORT_URL="https://forum.linuxmint.su/;
  
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/ru/latest/;
  PRIVACY_POLICY_URL="https://greenlinux.ru/;
  VERSION_CODENAME=victoria
  UBUNTU_CODENAME=jammy
  saber716rus@saber716rus-BOM-WXX9 ~ [1]> cat /proc/asound/cards 
   0 [Generic]: HDA-Intel - HD-Audio Generic
HD-Audio Generic at 0xd03c irq 80
   1 [acp]: acp - acp
HUAWEI-BOM_WXX9-M1010-BOM_WXX9_PCB_B2
  saber716rus@saber716rus-BOM-WXX9 ~>

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


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


[Desktop-packages] [Bug 2046632] [NEW] Submenus appear and disappear rapidly and can't be used

2023-12-16 Thread Nate Eldredge
Public bug reported:

I'm using nm-applet under the awesome window manager.  Since upgrading
to 23.10, when you open the applet's menu and hover over a submenu such
as "Available networks" or "VPN Connections", the submenu appears and
disappears rapidly (about twice per second), and if you try to mouse
over the submenu it disappears completely.  This makes it impossible to
select an available network, etc.

It worked fine under 23.04.

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: network-manager-gnome 1.32.0-3ubuntu1
ProcVersionSignature: Ubuntu 6.5.0-14.14-generic 6.5.3
Uname: Linux 6.5.0-14-generic x86_64
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
CasperMD5CheckResult: unknown
Date: Sat Dec 16 13:50:16 2023
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2019-06-03 (1657 days ago)
InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
IpRoute:
 default via 192.168.1.13 dev wlo1 proto dhcp src 192.168.1.37 metric 600 
 169.254.0.0/16 dev virbr0 scope link metric 1000 linkdown 
 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 
 192.168.1.0/24 dev wlo1 proto kernel scope link src 192.168.1.37 metric 600 
 192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1 linkdown
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: network-manager-applet
UpgradeStatus: Upgraded to mantic on 2023-12-14 (3 days ago)
modified.conffile..etc.default.apport:
 # set this to 0 to disable apport, or to 1 to enable it
 # you can temporarily override this with
 # sudo service apport start force_start=1
 enabled=0
mtime.conffile..etc.default.apport: 2020-08-04T11:07:36.415303
nmcli-nm:
 RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  WIFI  
   WWAN-HW  WWAN
 running  1.44.2   connected  started  full  enabled enabled  
enabled  missing  enabled

** Affects: network-manager-applet (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug mantic

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

Title:
  Submenus appear and disappear rapidly and can't be used

Status in network-manager-applet package in Ubuntu:
  New

Bug description:
  I'm using nm-applet under the awesome window manager.  Since upgrading
  to 23.10, when you open the applet's menu and hover over a submenu
  such as "Available networks" or "VPN Connections", the submenu appears
  and disappears rapidly (about twice per second), and if you try to
  mouse over the submenu it disappears completely.  This makes it
  impossible to select an available network, etc.

  It worked fine under 23.04.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: network-manager-gnome 1.32.0-3ubuntu1
  ProcVersionSignature: Ubuntu 6.5.0-14.14-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: unknown
  Date: Sat Dec 16 13:50:16 2023
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2019-06-03 (1657 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  IpRoute:
   default via 192.168.1.13 dev wlo1 proto dhcp src 192.168.1.37 metric 600 
   169.254.0.0/16 dev virbr0 scope link metric 1000 linkdown 
   172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 
   192.168.1.0/24 dev wlo1 proto kernel scope link src 192.168.1.37 metric 600 
   192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1 
linkdown
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  SourcePackage: network-manager-applet
  UpgradeStatus: Upgraded to mantic on 2023-12-14 (3 days ago)
  modified.conffile..etc.default.apport:
   # set this to 0 to disable apport, or to 1 to enable it
   # you can temporarily override this with
   # sudo service apport start force_start=1
   enabled=0
  mtime.conffile..etc.default.apport: 2020-08-04T11:07:36.415303
  nmcli-nm:
   RUNNING  VERSION  STATE  STARTUP  CONNECTIVITY  NETWORKING  WIFI-HW  
WIFI WWAN-HW  WWAN
   running  1.44.2   connected  started  full  enabled enabled  
enabled  missing  enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/2046632/+subscriptions


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


[Desktop-packages] [Bug 1496542] Re: Running processes left after disabling screen reader

2023-12-16 Thread Jeroen Hoek
The issue of these speech-dispatcher processes spawning for some unknown
reason and distorting sound (as mentioned above a few users) is still
present in 22.04 for me.

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

Title:
  Running processes left after disabling screen reader

Status in speech-dispatcher package in Ubuntu:
  Triaged

Bug description:
  After I disabled my screen reader, I noticed that when running "ps xa
  | grep -P 'speech-dispatcher.*\.conf'" I get:

  17906 tty2 Sl+0:09 /usr/lib/speech-dispatcher-modules/sd_espeak 
/etc/speech-dispatcher/modules/espeak.conf
  17911 tty2 Sl+0:01 /usr/lib/speech-dispatcher-modules/sd_cicero 
/etc/speech-dispatcher/modules/cicero.conf
  17915 tty2 Sl+0:01 /usr/lib/speech-dispatcher-modules/sd_generic 
/etc/speech-dispatcher/modules/generic.conf
  17918 tty2 Sl+0:01 /usr/lib/speech-dispatcher-modules/sd_dummy 
/etc/speech-dispatcher/modules/dummy.conf
  24407 pts/0S+ 0:00 grep --color=auto -P speech-dispatcher.*\.conf

  So it seems as though it left some running processes behind after I
  disabled it. I have also attached a screenshot of my Sound settings
  which show that they are still running (Sound_Application_List2.png).

  ---

  OS Information:

  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 15.04
  Release:  15.04
  Codename: vivid

  Package Information:

  speech-dispatcher:
Installed: 0.8.1-0ubuntu1
Candidate: 0.8.1-0ubuntu1
Version table:
   *** 0.8.1-0ubuntu1 0
  500 http://archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: speech-dispatcher 0.8.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-28.30-generic 3.19.8-ckt5
  Uname: Linux 3.19.0-28-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.4
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Wed Sep 16 20:27:00 2015
  InstallationDate: Installed on 2015-07-29 (49 days ago)
  InstallationMedia: Ubuntu-GNOME 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  SourcePackage: speech-dispatcher
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/speech-dispatcher/+bug/1496542/+subscriptions


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


[Desktop-packages] [Bug 2046627] [NEW] Xorg freeze

2023-12-16 Thread WaltZ
Public bug reported:

My Dell XPS 15 has a touchscreen.  If I use the touchscreen, at some
point the computer will completely lock up.

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: xorg 1:7.7+23ubuntu2
ProcVersionSignature: Ubuntu 6.5.0-14.14-generic 6.5.3
Uname: Linux 6.5.0-14-generic x86_64
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CasperMD5CheckResult: pass
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sat Dec 16 14:05:39 2023
DistUpgraded: 2023-11-08 08:37:56,248 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
DistroCodename: mantic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] [8086:3e9b] (prog-if 00 
[VGA controller])
   Subsystem: Dell CoffeeLake-H GT2 [UHD Graphics 630] [1028:0905]
   Subsystem: Dell TU117M [GeForce GTX 1650 Mobile / Max-Q] [1028:0905]
InstallationDate: Installed on 2022-02-15 (669 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.5.0-14-generic 
root=UUID=eed7bf21-88c9-44aa-a905-ee4a5ccc7e4d ro quiet splash loglevel=3 
vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: Upgraded to mantic on 2023-11-08 (38 days ago)
dmi.bios.date: 09/11/2023
dmi.bios.release: 1.24
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.24.0
dmi.board.name: 018W12
dmi.board.vendor: Dell Inc.
dmi.board.version: A06
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.24.0:bd09/11/2023:br1.24:svnDellInc.:pnXPS157590:pvr:rvnDellInc.:rn018W12:rvrA06:cvnDellInc.:ct10:cvr:sku0905:
dmi.product.family: XPS
dmi.product.name: XPS 15 7590
dmi.product.sku: 0905
dmi.sys.vendor: Dell Inc.
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.115-1
version.libgl1-mesa-dri: libgl1-mesa-dri 23.2.1-1ubuntu3.1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:21.1.7-3ubuntu2.4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.17-2build1

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


** Tags: amd64 apport-bug false-gpu-hang freeze mantic ubuntu wayland-session

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

Title:
  Xorg freeze

Status in xorg package in Ubuntu:
  New

Bug description:
  My Dell XPS 15 has a touchscreen.  If I use the touchscreen, at some
  point the computer will completely lock up.

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 6.5.0-14.14-generic 6.5.3
  Uname: Linux 6.5.0-14-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Dec 16 14:05:39 2023
  DistUpgraded: 2023-11-08 08:37:56,248 DEBUG Running PostInstallScript: 
'/usr/lib/ubuntu-advantage/upgrade_lts_contract.py'
  DistroCodename: mantic
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] [8086:3e9b] (prog-if 
00 [VGA controller])
 Subsystem: Dell CoffeeLake-H GT2 [UHD Graphics 630] [1028:0905]
 Subsystem: Dell TU117M [GeForce GTX 1650 Mobile / Max-Q] [1028:0905]
  InstallationDate: Installed on 2022-02-15 (669 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
  MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.5.0-14-generic 
root=UUID=eed7bf21-88c9-44aa-a905-ee4a5ccc7e4d ro quiet splash loglevel=3 
vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: Upgraded to mantic on 2023-11-08 (38 days ago)
  dmi.bios.date: 09/11/2023
  dmi.bios.release: 1.24
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.24.0
  dmi.board.name: 018W12
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A06
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.24.0:bd09/11/2023:br1.24:svnDellInc.:pnXPS157590:pvr:rvnDellInc.:rn018W12:rvrA06:cvnDellInc.:ct10:cvr:sku0905:
  dmi.product.family: XPS
  

[Desktop-packages] [Bug 2039309] Re: No more switch after Desktop Icons are turned on

2023-12-16 Thread Francois Thirioux
** Changed in: gnome-control-center (Ubuntu)
   Status: Expired => Fix Released

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

Title:
  No more switch after Desktop Icons are turned on

Status in gnome-control-center package in Ubuntu:
  Fix Released

Bug description:
  Hi,

  1) Desktop Icons extension disabled state in g-c-c
  2) Turn it on in g-c-c/Ubuntu panel
  3) There is no more switch, see attachment

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


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


[Desktop-packages] [Bug 1772445]

2023-12-16 Thread Stephane-guillou-i
Reproduced in:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: fdc87dd56548622e13353b4cf9864232ee0110fb
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

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

Title:
  [upstream] Text cannot be rotated in a RTL table in LibreOffice Writer

Status in LibreOffice:
  Confirmed
Status in libreoffice package in Ubuntu:
  Confirmed

Bug description:
  Text can normally be rotated either 90 or 270 degrees through the
  Character > Position dialog box. This works even in tables, but only
  if the table’s text direction is set to Left-to-right. If the table’s
  text direction is set to Right-to-left through the Table properties
  dialog, no rotation takes effect. See the screenshot of a document,
  where there are two identical tables, one marked as LTR and the other
  as RTL. Text is rotated as expected in the LTR table, while nothing
  seems to happen in the other one.

  Description:  Ubuntu 17.10
  Release:  17.10

  libreoffice-writer:
Installed: 1:5.4.6-0ubuntu0.17.10.1
Candidate: 1:5.4.6-0ubuntu0.17.10.1
Version table:
   *** 1:5.4.6-0ubuntu0.17.10.1 500
  500 http://mr.archive.ubuntu.com/ubuntu artful-updates/main amd64 
Packages
  100 /var/lib/dpkg/status
   1:5.4.5-0ubuntu0.17.10.5 500
  500 http://security.ubuntu.com/ubuntu artful-security/main amd64 
Packages
   1:5.4.1-0ubuntu1 500
  500 http://mr.archive.ubuntu.com/ubuntu artful/main amd64 Packages

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: libreoffice-writer 1:5.4.6-0ubuntu0.17.10.1
  ProcVersionSignature: Ubuntu 4.13.0-41.46-generic 4.13.16
  Uname: Linux 4.13.0-41-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.8
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Mon May 21 15:39:19 2018
  InstallationDate: Installed on 2017-02-13 (462 days ago)
  InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.2)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fi_FI.UTF-8
   SHELL=/bin/bash
  SourcePackage: libreoffice
  UpgradeStatus: Upgraded to artful on 2017-11-05 (196 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1772445/+subscriptions


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