[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2024-01-25 Thread Brian Murray
Ubuntu 23.04 (Lunar Lobster) has reached end of life, so this bug will
not be fixed for that specific release.

** Changed in: ubiquity (Ubuntu Lunar)
   Status: In Progress => Won't Fix

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-08-10 Thread Utkarsh Gupta
Ubuntu 22.10 (Kinetic Kudu) has reached end of life, so this bug will
not be fixed for that specific release.

** Changed in: ubiquity (Ubuntu Kinetic)
   Status: Confirmed => Won't Fix

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-29 Thread Michael Mikowski
Olivier, your patch is now tested and in-use. I removed the exception
trap from on_next_clicked to avoid any potential side effects. In the
abundance of caution, I diffed file systems again, and there were no
significant changes between the regular install and the installer with
the patch. I hope that is useful.  The diff was very similar to above.
If you want a copy, let me know.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-25 Thread Michael Mikowski
File System Comparison attachment

** Patch added: "File System Comparison"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5668375/+files/kde_ui.vm-file-audit.diff

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-25 Thread Michael Mikowski
** Patch added: "kde_ui.py.diff"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5668374/+files/kde_ui.py.diff

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-25 Thread Michael Mikowski
Test steps taken:

1. Patched kde_ui.py. See patch kde_ui.py.diff.
2. Created two VMs, installed in OEM mode and then prepared-for-shipping and 
ran through user install on each. Used the same login names each time, and 
after sign-in, immediately prepared file system audits. See 
kde_ui.vm-file-audity.diff.

Results: Patched version no longer showed back or next buttons during
user setup (good!). All fs diffs look trivial except
/boot/initrd.img-5.19.0-32-generic is 543 bytes smaller in the patched
system. This is likely normal variation.

Next steps:

Remove exception trap in on_next_clicked function to avoid potential
side effects and test again. 2 attachments to follow.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-24 Thread Michael Mikowski
I just spotted the associated code change above. Will add this to the
solution and test.

The catch code in comment #19 prevents the crash when next or continue
buttons are pressed, but they are still present.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-22 Thread Michael Mikowski
I've blocked moving to non-existent pages by trapping the exception and
returning. Anyone see a problem with this? Testing on a VM shows the
crash is averted.

In file /usr/lib/ubiquity/ubiquity/frontend/kde_ui.py:

1067   def on_next_clicked(self):
1068   """Callback to control the installation process between steps."""
1069   if not self.allowed_change_step or not self.allowed_go_forward:
1070   return
1071   
1072 + # Ignore page where index does not exist.
1073 + try:
1074 + ui = self.pages[self.pagesindex].ui
1075 + except IndexError:
1076 + return
1077 - 
1074 - ui = self.pages[self.pagesindex].ui
1078   self.allow_change_step(False)

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-21 Thread Michael Mikowski
Bump Olivier (sorry of misspelling earlier!). Are there any pointers
you'd suggest per comment #17?

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2023-04-16 Thread Michael Mikowski
Oliver, per #15 I'd like to get this in place for 22.04 LTS production
systems. If it's simple enough, can you point us on how to disable the
Next and Back buttons on the last slide so we could at least patch it?
We have done some work, but a bit of experienced direction would
certainly be welcome, and we would of course report back here how well
things may have worked.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-18 Thread Erich Eickmeyer 
Olivier, thanks for working on this! Targeting lunar since I'm sure this
is in Lunar since it has no code difference from Kinetic as of my
writing this.

There's a separate bug about enabling the slideshow for end users during
the oem-config stage ( LP: #1842047 ), so perhaps there's some overlap
here and we might be able to kill two birds with one stone.

** Also affects: ubiquity (Ubuntu Lunar)
   Importance: High
 Assignee: Olivier Gayot (ogayot)
   Status: In Progress

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-18 Thread Olivier Gayot
** Tags removed: foundations-todo

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-18 Thread Olivier Gayot
** Merge proposal linked:
   https://code.launchpad.net/~ogayot/ubiquity/+git/ubiquity/+merge/433282

** Changed in: ubiquity (Ubuntu)
   Status: Confirmed => In Progress

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-18 Thread Olivier Gayot
Please ignore my last comment. After investigating more, I figured that
in a normal install, the Back and Next buttons are completely hidden on
the final screen.

The function responsible for hiding the Back & Next buttons (aka. the
navigation buttons) is the function start_slideshow.

However, this function only hides the navigation if a slideshow exists -
which is not true when running oem-config. When no slideshow exists, it
simply shows an empty page but does not hide the navigation.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-17 Thread Olivier Gayot
After investigating, I found out that the KDE frontend for oem-config
used to have a final screen with disabled Back and Continue buttons.

This was removed 12 years ago as part of:

https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/540929

I guess making an empty page with disabled Back and Continue buttons
would be the way to go.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-11-17 Thread Olivier Gayot
** Changed in: ubiquity (Ubuntu)
 Assignee: (unassigned) => Olivier Gayot (ogayot)

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-29 Thread Erich Eickmeyer 
Marking as confirmed since it appeared on the iso testing tracker.

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-29 Thread Erich Eickmeyer 
Marking as confirmed since it appeared on the iso testing tracker.

** Changed in: ubiquity (Ubuntu Kinetic)
   Status: New => Confirmed

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-28 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
https://iso.qa.ubuntu.com/qatracker/reports/bugs/1990196

** Tags added: iso-testing

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-20 Thread Brian Murray
** Changed in: ubiquity (Ubuntu Jammy)
   Importance: Undecided => High

** Changed in: ubiquity (Ubuntu Kinetic)
   Importance: Undecided => High

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-20 Thread Heinrich Schuchardt
** Tags added: foundations-todo

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-20 Thread Erich Eickmeyer 
Heinrich,

That's correct, it would require a new report for the upper/lowercase
letters. The problem there is really that the window is not conforming
to the typical window size one would expect Ubiquity to conform to,
which wasn't a problem in other releases i.e. Focal. However, this is a
discussion for another bug report. :)

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-20 Thread Heinrich Schuchardt
Hello Erich,

thanks for reporting the issue. I was able to reproduce it with
https://cdimage.ubuntu.com/kubuntu/releases/22.04.1/release/kubuntu-22.04.1-desktop-
amd64.iso and set the status to 'confirmed'.

Looking at the screenshot VirtualBox_ISOTest_19_09_2022_13_51_25.png it
seems there is a layout problem with the upper and lower case letters
being too close to each other. I did not see the same while in OEM mode.
I guess this would deserve a separate bug report.

Best regards

Heinrich

** Changed in: ubiquity (Ubuntu Jammy)
   Status: New => Confirmed

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "VirtualBox_ISOTest_19_09_2022_13_52_26.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617203/+files/VirtualBox_ISOTest_19_09_2022_13_52_26.png

** Also affects: ubiquity (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: ubiquity (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "VirtualBox_ISOTest_19_09_2022_13_52_11.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617202/+files/VirtualBox_ISOTest_19_09_2022_13_52_11.png

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "VirtualBox_ISOTest_19_09_2022_13_51_59.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617201/+files/VirtualBox_ISOTest_19_09_2022_13_51_59.png

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "6_Kubuntu_EndUser_InstallCrashed.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617199/+files/6_Kubuntu_EndUser_InstallCrashed.jpg

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "VirtualBox_ISOTest_19_09_2022_13_51_25.png"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617200/+files/VirtualBox_ISOTest_19_09_2022_13_51_25.png

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "4_ISO_EndUser_livesession.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617198/+files/4_ISO_EndUser_livesession.jpg

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

Title:
  oem-config-kde crashes when buttons clicked

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


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


[Bug 1990196] Re: oem-config-kde crashes when buttons clicked

2022-09-19 Thread Erich Eickmeyer 
** Attachment added: "3_ISO_EndUser_InstallCrashed.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1990196/+attachment/5617197/+files/3_ISO_EndUser_InstallCrashed.jpg

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

Title:
  oem-config-kde crashes when buttons clicked

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


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