[Bug 80534] Re: Music sounds very Scratchy

2008-02-03 Thread Philip Paquette
** Changed in: widelands (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)
   Status: Incomplete => Fix Released

-- 
Music sounds very Scratchy
https://bugs.launchpad.net/bugs/80534
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 84966] Re: It crashes in the tutorial campaign 2 as soon as the fernery is finished.

2008-02-03 Thread Philip Paquette
** Changed in: widelands (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
It crashes in the tutorial campaign 2 as soon as the fernery is finished.
https://bugs.launchpad.net/bugs/84966
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 106275] Re: game exiting itself when I play.

2008-02-03 Thread Philip Paquette
** Changed in: widelands (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
game exiting itself when I play.
https://bugs.launchpad.net/bugs/106275
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 107206] Re: airstrike close

2008-02-03 Thread Philip Paquette
** Changed in: airstrike (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
airstrike close
https://bugs.launchpad.net/bugs/107206
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 81914] Re: nexuiz crashes after a few seconds of gameplay

2008-02-03 Thread Philip Paquette
** Changed in: nexuiz (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
nexuiz crashes after a few seconds of gameplay
https://bugs.launchpad.net/bugs/81914
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 84916] Re: crash 3dchess

2008-02-03 Thread Philip Paquette
** Changed in: 3dchess (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
crash 3dchess 
https://bugs.launchpad.net/bugs/84916
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 111470] Re: Lincity crashe while changing the map (the mini map)

2008-02-03 Thread Philip Paquette
** Changed in: lincity (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
Lincity crashe while changing the map (the mini map)
https://bugs.launchpad.net/bugs/111470
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 75853] Re: Nexuiz crashes on start

2008-02-03 Thread Philip Paquette
** Changed in: nexuiz (Ubuntu)
 Assignee: Philip Paquette (shooters) => (unassigned)

-- 
Nexuiz crashes on start
https://bugs.launchpad.net/bugs/75853
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160214] Re: Can't Delete Folder - Corrupted FS?

2007-11-06 Thread Philip Paquette
Workaround:

> ls -il
to find the inode number of the folder
then navigate to the encrypted directory on the underlying fs (reiserfs in my 
case) and delete the encrypted directory...

The bug is caused because encfs doesn't see any files with "f0", but the
files are actually there in the encrypted folder on the underlying fs...

-- 
Can't Delete Folder - Corrupted FS?
https://bugs.launchpad.net/bugs/160214
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160214] Re: Can't Delete Folder - Corrupted FS?

2007-11-05 Thread Philip Paquette
Basically, create structure like this

s.com
s1.com
   |--- f0
 |--- file0.txt
 |--- file2.txt
s2.com
   |--- f0
 |--- file1.txt
 |--- file3.txt

mv all s1.com to s.com
mv all s2.com to s.com
now s2.com/f0 can't be deleted.

-- 
Can't Delete Folder - Corrupted FS?
https://bugs.launchpad.net/bugs/160214
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160214] Can't Delete Folder - Corrupted FS?

2007-11-05 Thread Philip Paquette
Public bug reported:

Binary package hint: encfs

Steps to reproduce:

> cd ~
> encfs ~/.test-encfs ~/test-encfs
Enter password: **
> cd ~/test-encfs
> mkdir s.com
> mkdir s1.com
> mkdir s2.com
> cd s1.com
> mkdir f0
> cd f0
> touch file0.txt
> touch file2.txt
> cd ~/test-encfs/s2.com
> mkdir f0
> cd f0
> touch file1.txt
> touch file3.txt
> cd ~/test-encfs
> mv s1.com/* s.com/
> mv s2.com/* s.com/
ERROR -- mv: cannot move `s2.com/f0' to a subdirectory of itself, `s.com/f0'

NOW:
> ~/test-encfs$ ls -lhA s.com/f0/
total 0
-rw-r--r-- 1 philip philip 0 2007-11-05 10:30 file0.txt
-rw-r--r-- 1 philip philip 0 2007-11-05 10:30 file2.txt

==> file1.txt and file3.txt were not copied

> ls -lhA s2.com/f0/
total 0
> rm -R s2.com/
rm: cannot remove directory `s2.com//f0': Directory not empty
> cd s2.com/
> rm -R f0/
rm: cannot remove directory `f0/': Directory not empty
> ls -lhA f0/
total 0
> rm -R f0/*
rm: cannot remove `f0/*': No such file or directory
> sudo rm -R f0/
rm: cannot remove directory `f0/': Permission denied
> sudo chmod 777 f0/
chmod: cannot access `f0/': Permission denied

Using Gutsy, encfs 1.3.2-1-1

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

-- 
Can't Delete Folder - Corrupted FS?
https://bugs.launchpad.net/bugs/160214
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 131835] Re: dellWirelessCtl needed for Dell machines

2007-09-25 Thread Philip Paquette
Using the workaround above with Gutsy now gives me the following error:

Sep 25 14:56:42 paquette-laptop NetworkManager:   Error getting
killswitch power: org.freedesktop.Hal.Device.UnknownError - An Error
occurred. The Error message is:Unhandled SMI call.

-- 
dellWirelessCtl needed for Dell machines
https://bugs.launchpad.net/bugs/131835
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116508] Re: Incorrect item selected when creating new item

2007-09-11 Thread Philip Paquette
screencast available at: http://www.youtube.com/watch?v=JcYvJfvJrt8

-- 
Incorrect item selected when creating new item
https://bugs.launchpad.net/bugs/116508
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116507] Re: When moving, item disappears temporarily

2007-09-11 Thread Philip Paquette
screencast available at: http://www.youtube.com/watch?v=TbLDN-mDsGc

-- 
When moving, item disappears temporarily
https://bugs.launchpad.net/bugs/116507
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116507] Re: When moving, item disappears temporarily

2007-09-11 Thread Philip Paquette
Tested with gutsy... It disappears for about 0.75 seconds...

-- 
When moving, item disappears temporarily
https://bugs.launchpad.net/bugs/116507
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116508] Re: Incorrect item selected when creating new item

2007-09-11 Thread Philip Paquette
Upgraded from Feisty to Gutsy... The problem is still there...

-- 
Incorrect item selected when creating new item
https://bugs.launchpad.net/bugs/116508
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116492] Re: Delete button should appear below "Move Up" and "Move Down"

2007-08-08 Thread Philip Paquette
I don't agree with you on that one.  From what I understand from
alacarte, I see 4 basic functions:

1) Add Menu/Item/Separator
2) Move Item
3) Edit Item
4) Delete Item

Functions 1) and 2) already have proper buttons on the panel, but
functions 3) and 4) are hidden in a right-click menu... That's
inconsistent and makes it harder for newbies, since it's not obvious how
to delete.

Furthermore, you still have plenty of space under the move down button
to add a "Properties" and a "Delete" button, I don't see how that would
clutter up the interface rather than improve it...

IMO, not putting a delete button because you can delete using the right-
click menu  is like removing the move up/down button, because you can
drag/drop items around... It's true, but it's not the most consistent
and intuitive way of doing it...

-- 
Delete button should appear below "Move Up" and "Move Down"
https://bugs.launchpad.net/bugs/116492
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 76988] Re: Close button on Info dialog doesn't work

2007-06-07 Thread Philip Paquette
gnubiff (2.2.6-2ubuntu1) gutsy; urgency=low

  * Merge from Debian unstable. Remaining Ubuntu change:
 - Update the libfam-dev build-dep to libgamin-dev instead
  * Modify Maintainer value to match Debian-Maintainer-Field Spec

 -- Adrien Cunin <[EMAIL PROTECTED]>  Thu, 03 May 2007 23:04:11 +0200

** Changed in: gnubiff (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
Close button on Info dialog doesn't work
https://bugs.launchpad.net/bugs/76988
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 92761] Re: resolv.conf overwritten no matter what I do

2007-06-04 Thread Philip Paquette
Same problem here.

I'm using www.opendns.com as my main DNS servers, so I added "prepend
domain-name-servers 208.67.222.222, 208.67.220.220;" to my
/etc/dhcp3/dhclient.conf file so the dns servers would be added on top
of the list each time I connect to the internet.  This method seems to
work well with "sudo dhclient eth1" and "sudo ifup eth1", but when I use
network-manager, the file gets overwritten and the prepends line are
removed.

But, by installing the resolvconf package, the /etc/resolv.conf is no
longer modified by network-manager though.

However, I think this is a serious bug that should be fixed.
@Soren Hansen, could you explain why its presence or absence makes a huge 
difference in how network-manager works.

Thanks

-- 
resolv.conf overwritten no matter what I do
https://bugs.launchpad.net/bugs/92761
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117433] Re: Openoffice 2.2 and Gmail problem

2007-05-31 Thread Philip Paquette
Please try to obtain a backtrace
 and attach the file to
the bug report. This will greatly help us in tracking down your problem.

-- 
Openoffice 2.2 and Gmail problem
https://bugs.launchpad.net/bugs/117433
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55315] Re: Unable to re-mount again an usb flash key.

2007-05-31 Thread Philip Paquette
** Changed in: linux-source-2.6.15 (Ubuntu)
   Importance: Undecided => Medium
 Assignee: Philip Paquette => Ubuntu Kernel USB Team
   Status: Needs Info => Unconfirmed

-- 
Unable to re-mount again an usb flash key.
https://bugs.launchpad.net/bugs/55315
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117471] Re: Nexuiz: Crash when the 'Real Time dynamic light' option is turned on

2007-05-31 Thread Philip Paquette
Thanks

** Changed in: nexuiz (Ubuntu)
 Assignee: Philip Paquette => MOTU
   Status: Needs Info => Unconfirmed

-- 
Nexuiz: Crash when the 'Real Time dynamic light' option is turned on
https://bugs.launchpad.net/bugs/117471
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117471] Re: Nexuiz: Crash when the 'Real Time dynamic light' option is turned on

2007-05-31 Thread Philip Paquette
Here is one way to solve the problem:

1. Open a terminal and type "sudo apt-get install screen" to install the screen 
package.
2. Type "screen -L" after the program is installed, a virtual terminal should 
open
3. Type "gdb 2>&1 | tee gdb-nexuiz.txt"
4. GDB should open up, then type
(gdb) handle SIG33 pass nostop noprint
(gdb) set pagination 0
5. Close all the open terminal windows.
6. Start nexuiz (Just load the program, but don't reproduce the crash yet).
7. Press "Ctrl-Alt-F1", that should bring you in a black terminal, log in.
8. Type "pidof nexuiz.bin", the process ID should appear, write it down
9. Type "screen -R", that should resume your previous virtual terminal session. 
 You should be in GDB now, so type
(gdb) attach 
(gdb) continue
10. You are now attached to nexuiz, press "Alt-F7" to return to nexuiz 
11. Reproduce the crash and then press "Ctrl-Alt-F1"
12. Type
(gdb) backtrace full
(gdb) info registers
(gdb) thread apply all backtrace
(gdb) quit
killall nexuiz.bin
exit
exit
13. Attach the gdb-nexuiz.txt file to the report.

-- 
Nexuiz: Crash when the 'Real Time dynamic light' option is turned on
https://bugs.launchpad.net/bugs/117471
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 96727] Re: When copying does not escape special characters

2007-05-31 Thread Philip Paquette
Travis,

IMO bug #64264 (gnome-menus doesn't send notification for new .desktop
files), bug #96727 (When copying does not escape special characters),
and bug #113652 (Alacarte still doesn't handle spaces properly) are all
the same bug.

Here are steps to reproduce:

1) Revert
2) Create folder in "Sound&Video"
--> Name: test
--> Comment: (blank)

3) Create item in Sound&Video
--> Name: testtest
--> Command: test
--> Comment: (blank)

4) Move item from Sound&Video to subfolder test

 tested: /\ "#$%&+,:;<=>[EMAIL PROTECTED]|}¢£±é*_-!()~'.
 working: *_-!()~'.
 not working: /\ "#$%&+,:;<=>[EMAIL PROTECTED]|}¢£±é

** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7897584/alacarte.tar.bz2

-- 
When copying does not escape special characters
https://bugs.launchpad.net/bugs/96727
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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

[Bug 117454] Re: graphical desktop shift with mouse move

2007-05-28 Thread Philip Paquette
** Tags added: need-i386-retrace

-- 
graphical desktop shift with mouse move
https://bugs.launchpad.net/bugs/117454
You received this bug notification because you are a member of Kubuntu
Team, which is a bug contact for arts in ubuntu.

-- 
kubuntu-bugs mailing list
[EMAIL PROTECTED]
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 117471] Re: Nexuiz: Crash when the 'Real Time dynamic light' option is turned on

2007-05-28 Thread Philip Paquette
Thank you for your bug report.  Unfortunately, you didn't do your
backtrace properly.

1) Install the package "nexuiz-dbgsym" by typing "sudo apt-get install
nexuiz-dbgsym", if it doesn't exist, then go to System > Administration
> Software Sources and add "deb http://people.ubuntu.com/~pitti/ddebs
feisty main universe", then reload and retry.

2. Start the program under control of gdb:
gdb  2>&1 | tee gdb-.txt
(gdb) handle SIG33 pass nostop noprint
(gdb) set pagination 0
(gdb) run  ---> You did all that properly ;-)
3. The program will start. Perform any actions necessary to reproduce the crash
4. Retrieve a backtrace of the crash:  < You forgot the backtrace !!!
(gdb) backtrace full
(gdb) info registers
(gdb) thread apply all backtrace
(gdb) quit
5. Attach the complete output from GDB, contained in gdb-.txt, in your 
bug report.

You forgot to request the full backtrace (step 4).  Can you please redo a 
backtrace (with nexuiz-dbgsym installed) and reattach it to this report.
Thanks


** Changed in: nexuiz (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Nexuiz: Crash when the 'Real Time dynamic light' option is turned on
https://bugs.launchpad.net/bugs/117471
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 88389] Re: UTF-8 prolem

2007-05-28 Thread Philip Paquette
*** This bug is a duplicate of bug 37711 ***
https://bugs.launchpad.net/bugs/37711

Duplicate of 37711.
mrdocs: you can mark bugs as duplicate by selecting the "Mark as duplicate" 
link in the left menu and then entering the bug #.

** Changed in: scribus (Ubuntu)
   Status: Unconfirmed => Rejected

** This bug has been marked a duplicate of bug 37711
   Qt/SCIM broken (Cannot enter numbers in to spinbox widget)

-- 
UTF-8 prolem
https://bugs.launchpad.net/bugs/88389
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117467] Re: [apport] scribus crashed with SIGSEGV in ScribusApp::DoFileClose()

2007-05-28 Thread Philip Paquette
** Tags added: need-i386-retrace

-- 
[apport] scribus crashed with SIGSEGV in ScribusApp::DoFileClose()
https://bugs.launchpad.net/bugs/117467
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117371] Re: /var/lib/dpg/status could not be opened/parsed

2007-05-28 Thread Philip Paquette
*** This bug is a duplicate of bug 24626 ***
https://bugs.launchpad.net/bugs/24626

*** Duplicate of 24626 ***

You can use the "APT::Cache-Limit" option to increase the mmap cache limit that 
apt uses. It is currently set to "12*1024*1024" (12582912).
Try:
$ sudo apt-get update -o APT::Cache-Limit=25165824

** Changed in: Ubuntu
   Status: Needs Info => Rejected

** This bug has been marked a duplicate of bug 24626
   Too many repositories "dynamic mmap ran out of room"

-- 
/var/lib/dpg/status could not be opened/parsed
https://bugs.launchpad.net/bugs/117371
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117469] Re: problem parsing thekompany-support

2007-05-28 Thread Philip Paquette
*** This bug is a duplicate of bug 117359 ***
https://bugs.launchpad.net/bugs/117359

Rejected.  Duplicate of 117359.
To fix it, open a terminal and type:

1) "sudo rm 
/var/lib/apt/lists/www.getautomatix.com_apt_dists_feisty_main_binary-i386_Packages"
2) "sudo apt-get update"

Duplicate of 117359.  - This is a bug on automatix server and not on
Ubuntu.

** Changed in: update-manager (Ubuntu)
   Status: Unconfirmed => Rejected

** This bug has been marked a duplicate of bug 117359
   Synaptic bug

-- 
problem parsing thekompany-support
https://bugs.launchpad.net/bugs/117469
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117359] Re: Synaptic bug

2007-05-28 Thread Philip Paquette
The problem is an incorrect dependency in the Packages files on the
automatix server... Deleting the /var/lib/apt/lists/www.getautomatix
.com_apt_dists_feisty_main_binary-i386_Packages then doing a sudo apt-
get update should fix the problem.  Closing this bug.

** Changed in: apt (Ubuntu)
   Importance: Undecided => Low
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Rejected

-- 
Synaptic bug
https://bugs.launchpad.net/bugs/117359
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117359] Re: Synaptic bug

2007-05-28 Thread Philip Paquette
I add the same problem this morning:

*** INCORRECT VERSION ***

Package: thekompany-support
Priority: optional
Section: base
Maintainer: automatix team
Architecture: i386
Version: 1.6-1.1
Depends:
Filename: dists/feisty/main/binary-i386/thekompany-support_1.6-1.1_i386.deb
Size: 10361550
MD5sum: e7501dcb7e43dbd75e1d6e91639c0082
SHA1: c589e518571e45a211d1e95784d59496f8ca51b9
SHA256: 1676fa6db0863b8d3d0dce1928832ce3e372ed280bda5c184e359449ab7f69ac
Description:This consists of support libraries for the proprietary Data 
Architect software created and maintained by thekompany.com
Priority: optional

*** CORRECT VERSION ***

Package: thekompany-support
Priority: optional
Section: base
Maintainer: automatix team
Architecture: i386
Version: 1.6.1
Depends: libc6 (>= 2.3-6)
Filename: dists/feisty/main/binary-i386/thekompany-support_1.6.1_i386.deb
Size: 10361558
MD5sum: 3bd08599be000db58221599227d98a5c
SHA1: 530c6abbb8c2acee9ba84b1023dafdc0375d6d4f
SHA256: f46f23fe22ea558bf7bcce4d51fcc4e31b54fb30a567a10717b41cf5eecffd51
Description: This consists of support libraries for the proprietary Data 
Architect software created and maintained by thekompany.com
Priority: optional

The incorrect version had incorrect dependencies set, so they had to
rebuild the package to fix it.  But this is not a bug in Ubuntu, so I
would need to reject it.

But just to be sure, can you confirm that you have the same lines?
Thank you

-- 
Synaptic bug
https://bugs.launchpad.net/bugs/117359
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117359] Re: Synaptic bug

2007-05-28 Thread Philip Paquette
Thank you for reporting this bug.
Can you paste your 
/var/lib/apt/lists/www.getautomatix.com_apt_dists_feisty_main_binary-i386_Package
 file here, so we can see it.

** Changed in: apt (Ubuntu)
Sourcepackagename: None => apt
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Synaptic bug
https://bugs.launchpad.net/bugs/117359
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117433] Re: Openoffice 2.2 and Gmail problem

2007-05-28 Thread Philip Paquette
Thank you for your bug report.

This might be a duplicate of bug #90513, which is that if you open a
powerpoint in fullscreen it works fine, but when you close OO and re-
open any documents, the OO recovery document will appear.  Also, if
that's not your bug, can you reproduce it everytime? If yes how?  Does
it happen only with one specific document?


** Changed in: openoffice.org (Ubuntu)
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Openoffice 2.2 and Gmail problem
https://bugs.launchpad.net/bugs/117433
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117442] Re: NetworkManager creates multiple instances which cannot be easily removed

2007-05-28 Thread Philip Paquette
Confirming.  There is no options to quit the application in the drop-
down menu.

** Changed in: network-manager (Ubuntu)
Sourcepackagename: gnome-panel => network-manager
   Importance: Undecided => Wishlist
   Status: Unconfirmed => Confirmed

** Summary changed:

- NetworkManager creates multiple instances which cannot be easily removed
+ Quit option in Drop-Down Menu

** Description changed:

- Binary package hint: gnome-panel
- 
  If network-manager is active and one selects
  System->Administration->NetworkManager, a second network-manager icon
  will appear in the notification area.  Selecting again causes a third
  and so on.  This leads to multiple instances of network-manager fighting
  each other, creating the illusion of a slow network.
  
  Two points:
  1) Network-manager should not, by default, start up if another instance is 
already running.
  2) Network-manager should provide a means to completely shut it down from the 
notification area icon.  Yes, killall will do the job, but I want something for 
the non-geeks in my charge.
  
  Ubuntu 7.04 (Feisty) x86
  uname -a output: Linux zaphod 2.6.20-16-generic #2 SMP Wed May 23 01:46:23 
UTC 2007 i686 GNU/Linux
  Notification Area 2.18.1
  NetworkManager Applet 0.6.4
  
  ProblemType: Bug
  Architecture: i386
  Date: Mon May 28 13:08:50 2007
  DistroRelease: Ubuntu 7.04
  ExecutablePath: /usr/bin/gnome-panel
  Package: gnome-panel 1:2.18.1-0ubuntu3.1
  PackageArchitecture: i386
  ProcCmdline: gnome-panel --sm-client-id default1
  ProcCwd: /home/dave
  ProcEnviron:
   PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-panel
  Uname: Linux zaphod 2.6.20-16-generic #2 SMP Wed May 23 01:46:23 UTC 2007 
i686 GNU/Linux

-- 
Quit option in Drop-Down Menu
https://bugs.launchpad.net/bugs/117442
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 108636] Re: [apport] zatacka crashed with SIGSEGV in SDL_UpdateRects()

2007-05-27 Thread Philip Paquette
Filed upstream at:
http://sourceforge.net/tracker/index.php?func=detail&aid=1726612&group_id=156560&atid=800274

-- 
[apport] zatacka crashed with SIGSEGV in SDL_UpdateRects()
https://bugs.launchpad.net/bugs/108636
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 93498] Re: [apport] desmume crashed with SIGSEGV in memcpy()

2007-05-27 Thread Philip Paquette
Submitted upstream at
http://sourceforge.net/tracker/index.php?func=detail&aid=1726598&group_id=164579&atid=832291

-- 
[apport] desmume crashed with SIGSEGV in memcpy()
https://bugs.launchpad.net/bugs/93498
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 88652] Re: segfault in openal

2007-05-27 Thread Philip Paquette
Sebastien: Chromium does not have a -dbgsym package, is it still
possible to obtain a backtrace without it?

-- 
segfault in openal
https://bugs.launchpad.net/bugs/88652
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 115818] Re: Cashes on start

2007-05-27 Thread Philip Paquette
** Tags added: need-amd64-retrace

** Changed in: chromium (Ubuntu)
   Importance: Undecided => Medium

-- 
Cashes on start
https://bugs.launchpad.net/bugs/115818
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 103827] Re: [apport] boson crashed with SIGSEGV

2007-05-27 Thread Philip Paquette
** Tags added: need-i386-retrace

** Tags added: need-amd64-retrace

** Tags removed: need-i386-retrace

-- 
[apport] boson crashed with SIGSEGV
https://bugs.launchpad.net/bugs/103827
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 117046] Re: [apport] boson crashed with SIGSEGV in glGetString()

2007-05-27 Thread Philip Paquette
** Tags added: need-amd64-retrace

-- 
[apport] boson crashed with SIGSEGV in glGetString()
https://bugs.launchpad.net/bugs/117046
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 78084] Re: atanks crash

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: atanks (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
atanks crash
https://bugs.launchpad.net/bugs/78084
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 107206] Re: airstrike close

2007-05-27 Thread Philip Paquette
Martin Pitt: is it normal that the stacktrace contains 2000 lines of
question marks (??) ? I can't request a backtrace for this package,
since there isn't any -dbg package for airstrike, so can the problem be
fixed with the current traces?

seldon85: Can you reproduce this crash? If yes, how and does it happen
everytime?

** Changed in: airstrike (Ubuntu)
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
airstrike close
https://bugs.launchpad.net/bugs/107206
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 68580] Re: Adonthell doesn't show up in menu and waste's edge doesn't run

2007-05-27 Thread Philip Paquette
*** This bug is a duplicate of bug 75026 ***
https://bugs.launchpad.net/bugs/75026

Currently being dealt with in bug #75026. - gnome-app-install needs to
install recommends

** Tags removed: packaging

** Changed in: adonthell (Ubuntu)
   Status: Confirmed => Rejected

** This bug has been marked a duplicate of bug 75026
   gnome-app-install needs to install recommends

-- 
Adonthell doesn't show up in menu and waste's edge doesn't run
https://bugs.launchpad.net/bugs/68580
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 68580] Re: Adonthell doesn't show up in menu and waste's edge doesn't run

2007-05-27 Thread Philip Paquette
*** This bug is a duplicate of bug 75026 ***
https://bugs.launchpad.net/bugs/75026

** Tags added: packaging

-- 
Adonthell doesn't show up in menu and waste's edge doesn't run
https://bugs.launchpad.net/bugs/68580
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 68580] Re: Adonthell doesn't show up in menu and waste's edge doesn't run

2007-05-27 Thread Philip Paquette
Confirming, installing through Add/Remove should install a functional
game without having to open Synaptic, which is not the case here, since
package "adonthell" recommends "adonthell-data", but should depend on
it.

** Changed in: adonthell (Ubuntu)
   Importance: Undecided => Low
   Status: Unconfirmed => Confirmed

-- 
Adonthell doesn't show up in menu and waste's edge doesn't run
https://bugs.launchpad.net/bugs/68580
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 84916] Re: crash 3dchess

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: 3dchess (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
crash 3dchess 
https://bugs.launchpad.net/bugs/84916
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 75853] Re: Nexuiz crashes on start

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: nexuiz (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Nexuiz crashes on start
https://bugs.launchpad.net/bugs/75853
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 81914] Re: nexuiz crashes after a few seconds of gameplay

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: nexuiz (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
nexuiz crashes after a few seconds of gameplay
https://bugs.launchpad.net/bugs/81914
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 80534] Re: Music sounds very Scratchy

2007-05-27 Thread Philip Paquette
Thank you for reporting this bug.

Last comment upstream says:
"Date: 2007-02-25 17:23
Sender: bedouin
Logged In: YES 
user_id=20557
Originator: NO

OK, I just found a method that won't exhibit the bug. So consider it
fixed."

Is this bug actually fixed or is he talking about the SDL downgrading
workaround?

** Changed in: widelands (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

** Changed in: widelands (Ubuntu)
   Importance: Medium => Low

-- 
Music sounds very Scratchy
https://bugs.launchpad.net/bugs/80534
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55315] Re: Unable to re-mount again an usb flash key.

2007-05-27 Thread Philip Paquette
Please include the information requested from [WWW]
https://wiki.ubuntu.com/DebuggingRemovableDevices as separate
attachments.  Thank you.

** Changed in: linux-source-2.6.15 (Ubuntu)
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Unable to re-mount again an usb flash key.
https://bugs.launchpad.net/bugs/55315
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55315] Re: Unable to re-mount again an usb flash key.

2007-05-27 Thread Philip Paquette
Also, the output files required by the various teams to debug programs
are always available at: https://wiki.ubuntu.com/DebuggingProcedures and
https://wiki.ubuntu.com/Bugs/Responses .

-- 
Unable to re-mount again an usb flash key.
https://bugs.launchpad.net/bugs/55315
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 106275] Re: game exiting itself when I play.

2007-05-27 Thread Philip Paquette
Thanks for taking the time to report this bug. Unfortunately we can't
fix it, because your description didn't include enough information. You
may find it helpful to read "How to report bugs effectively"
<http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>. We'd be
grateful if you would then provide a more complete description of the
problem.

We have instructions on debugging some types of problems.
<http://wiki.ubuntu.com/DebuggingProcedures>.  Also, if this problem a
crash? Could you run the program from a terminal and see if any outputs
comes out? If it crashes, could you provide us with a backtrace thank
you.

** Changed in: widelands (Ubuntu)
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
game exiting itself when I play.
https://bugs.launchpad.net/bugs/106275
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 82623] Re: widelands spontaneous crash

2007-05-27 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: widelands (Ubuntu)
   Status: Needs Info => Rejected

-- 
widelands spontaneous crash
https://bugs.launchpad.net/bugs/82623
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 84966] Re: It crashes in the tutorial campaign 2 as soon as the fernery is finished.

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: widelands (Ubuntu)
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
It crashes in the tutorial campaign 2 as soon as the fernery is finished.
https://bugs.launchpad.net/bugs/84966
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 78003] Re: crash during tut 1 level

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: widelands (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
crash during tut 1 level
https://bugs.launchpad.net/bugs/78003
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 74757] Re: a crash in tutorial campaign

2007-05-27 Thread Philip Paquette
Thanks for your bug report. This bug has been reported to the developers
of the software. You can track it and make comments here:
http://sourceforge.net/tracker/index.php?func=detail&aid=1726535&group_id=40163&atid=427221

** Changed in: widelands (Ubuntu)
   Importance: Undecided => Medium

** Bug watch added: SourceForge.net Tracker #1726535
   http://sourceforge.net/support/tracker.php?aid=1726535

** Also affects: widelands (upstream) via
   http://sourceforge.net/support/tracker.php?aid=1726535
   Importance: Unknown
   Status: Unknown

-- 
a crash in tutorial campaign
https://bugs.launchpad.net/bugs/74757
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 76884] Re: Crashes when going to battle

2007-05-27 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments (i.e. backtrace), we need to investigate the
problem further. However, please reopen it if you can give us the
missing information and don't hesitate to submit bug reports in the
future.

** Changed in: widelands (Ubuntu)
   Status: Unconfirmed => Rejected

-- 
Crashes when going to battle
https://bugs.launchpad.net/bugs/76884
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 111470] Re: Lincity crashe while changing the map (the mini map)

2007-05-27 Thread Philip Paquette
Thanks for your bug report. Please try to obtain a backtrace
<http://wiki.ubuntu.com/DebuggingProgramCrash> and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Changed in: lincity (Ubuntu)
   Importance: Undecided => Medium
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Lincity crashe while changing the map (the mini map)
https://bugs.launchpad.net/bugs/111470
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 73199] Re: crashes with signal 11

2007-05-27 Thread Philip Paquette
Thanks for your bug report. To maintain a respectful atmosphere, please
follow the code of conduct. 
Bug reports are handled by humans, so please bear this in mind.  This
bug has been reported to the developers of the software. You can track
it and make comments here:
http://sourceforge.net/tracker/index.php?func=detail&aid=1726501&group_id=40163&atid=427221

** Changed in: widelands (upstream)
   Importance: Undecided => Unknown
 Bugwatch: None => SourceForge.net Tracker #1726501
   Status: Unconfirmed => Unknown

** Changed in: widelands (Ubuntu)
   Importance: Undecided => Medium
   Status: Unconfirmed => Confirmed

-- 
crashes with signal 11
https://bugs.launchpad.net/bugs/73199
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 57065] Re: No sound with nVidia High Definition Audio card

2007-05-27 Thread Philip Paquette
Thanks for taking the time to report this bug. Unfortunately we can't
fix it, because your description didn't include enough information.

Please include the information requested from [WWW]
https://help.ubuntu.com/community/DebuggingSoundProblems as separate
attachments.

** Changed in: Ubuntu
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
No sound with nVidia High Definition Audio card
https://bugs.launchpad.net/bugs/57065
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 56548] Re: [Dapper] RT61 driver solution in Ubuntu forum worked but after updating to latest kernel, it won't seem to work anymore

2007-05-27 Thread Philip Paquette
Thanks for taking the time to report this bug. Unfortunately we can't
fix it, because your description doesn't yet have enough information.

Please include the following additional information, if you have not already 
done so (please pay attention to lspci's additional options), as required by 
the Ubuntu Kernel Team:
1. Please include the output of the command "uname -a" in your next response. 
It should be one, long line of text which includes the exact kernel version 
you're running, as well as the CPU architecture.
2. Please run the command "dmesg > dmesg.log" and attach the resulting file 
"dmesg.log" to this bug report.
3. Please run the command "lspci -vvnn > lspci-vvnn.log" and attach the 
resulting file "lspci-vvnn.log" to this bug report.

For your reference, the full description of procedures for kernel-
related bug reports is available at [WWW]
http://wiki.ubuntu.com/KernelTeamBugPolicies. Thanks in advance!

** Changed in: Ubuntu
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
[Dapper] RT61 driver solution in Ubuntu forum worked but after updating to 
latest kernel, it won't seem to work anymore
https://bugs.launchpad.net/bugs/56548
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 56266] Re: ethernet configured but not working on dapper 6.06

2007-05-27 Thread Philip Paquette
Thanks for taking the time to report this bug. Unfortunately we can't
fix it, because your description doesn't yet have enough information.

Please include the following additional information, if you have not already 
done so (please pay attention to lspci's additional options), as required by 
the Ubuntu Kernel Team:
1. Please include the output of the command "uname -a" in your next response. 
It should be one, long line of text which includes the exact kernel version 
you're running, as well as the CPU architecture.
2. Please run the command "dmesg > dmesg.log" and attach the resulting file 
"dmesg.log" to this bug report.
3. Please run the command "lspci -vvnn > lspci-vvnn.log" and attach the 
resulting file "lspci-vvnn.log" to this bug report.

For your reference, the full description of procedures for kernel-
related bug reports is available at [WWW]
http://wiki.ubuntu.com/KernelTeamBugPolicies. Thanks in advance!

** Changed in: Ubuntu
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
ethernet configured but not working on dapper 6.06
https://bugs.launchpad.net/bugs/56266
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55232] Re: CD detection failed on install.

2007-05-27 Thread Philip Paquette
*** This bug is a duplicate of bug 58358 ***
https://bugs.launchpad.net/bugs/58358

** This bug has been marked a duplicate of bug 58358
   Installer (Live CD) Stuck at "Uncompressing Linux ... Ok, booting the kernel"

-- 
CD detection failed on install.
https://bugs.launchpad.net/bugs/55232
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 54620] Re: XUbuntu tends to crash when accesing external DVD drive via USB2.0

2007-05-26 Thread Philip Paquette
** Changed in: linux-source-2.6.15 (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Unconfirmed

-- 
XUbuntu tends to crash when accesing external DVD drive via USB2.0
https://bugs.launchpad.net/bugs/54620
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 54763] Re: Network route table vanishes intermittently

2007-05-26 Thread Philip Paquette
** Changed in: linux-source-2.6.15 (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Unconfirmed

-- 
Network route table vanishes intermittently
https://bugs.launchpad.net/bugs/54763
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 54790] Re: Can not establish internet connection by using Modem Monitor applet

2007-05-26 Thread Philip Paquette
** Changed in: gnome-applets (Ubuntu)
Sourcepackagename: wvdial => gnome-applets
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Unconfirmed

-- 
Can not establish internet connection by using Modem Monitor applet
https://bugs.launchpad.net/bugs/54790
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 54911] Re: Network connection failed after booting (Dapper 6.0.6)

2007-05-26 Thread Philip Paquette
** Changed in: dhcp3 (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Unconfirmed

-- 
Network connection failed after booting (Dapper 6.0.6)
https://bugs.launchpad.net/bugs/54911
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 57836] Re: Pointer freezes on Inspiron 4000

2007-05-26 Thread Philip Paquette
Thanks for taking the time to report this bug.  First, can you confirm
this bug still happens...

If yes, could you please reproduce the problem and include the following 
additional information, if you have not already done so (please pay attention 
to lspci's additional options), as required by the Ubuntu Kernel Team:
1. Please include the output of the command "uname -a" in your next response. 
It should be one, long line of text which includes the exact kernel version 
you're running, as well as the CPU architecture.
2. Please run the command "dmesg > dmesg.log" and attach the resulting file 
"dmesg.log" to this bug report.
3. Please run the command "lspci -vvnn > lspci-vvnn.log" and attach the 
resulting file "lspci-vvnn.log" to this bug report.

For your reference, the full description of procedures for kernel-
related bug reports is available at [WWW]
http://wiki.ubuntu.com/KernelTeamBugPolicies. Thanks in advance!

** Changed in: Ubuntu
 Assignee: (unassigned) => Philip Paquette
   Status: Unconfirmed => Needs Info

-- 
Pointer freezes on Inspiron 4000
https://bugs.launchpad.net/bugs/57836
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 63415] Re: Double Gnome control center

2007-05-25 Thread Philip Paquette
** Bug watch added: GNOME Bug Tracker #441198
   http://bugzilla.gnome.org/show_bug.cgi?id=441198

** Also affects: gnome-menus (upstream) via
   http://bugzilla.gnome.org/show_bug.cgi?id=441198
   Importance: Unknown
   Status: Unknown

-- 
Double Gnome control center
https://bugs.launchpad.net/bugs/63415
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 54532] Re: monitor DDC not correct in ubuntu dapper livecd?

2007-05-25 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: xorg (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Rejected

-- 
monitor DDC not correct in ubuntu dapper livecd?
https://bugs.launchpad.net/bugs/54532
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55315] Re: Unable to re-mount again an usb flash key.

2007-05-25 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: linux-source-2.6.15 (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Rejected

-- 
Unable to re-mount again an usb flash key.
https://bugs.launchpad.net/bugs/55315
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 57600] Re: Can't unmount USB drive

2007-05-25 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: Ubuntu
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Rejected

-- 
Can't unmount USB drive 
https://bugs.launchpad.net/bugs/57600
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 55680] Re: Mac Mini Intel Core Duo: Harddisk gets hot running Dapper

2007-05-25 Thread Philip Paquette
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: linux-source-2.6.15 (Ubuntu)
 Assignee: Philip Paquette => (unassigned)
   Status: Needs Info => Rejected

-- 
Mac Mini Intel Core Duo: Harddisk gets hot running Dapper
https://bugs.launchpad.net/bugs/55680
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116489] Re: Cancel button for "New Menu"

2007-05-25 Thread Philip Paquette
Upstream version is fixed.

** Changed in: gnome-panel (Ubuntu)
   Status: Confirmed => Fix Released

-- 
Cancel button for "New Menu"
https://bugs.launchpad.net/bugs/116489
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116488] Re: New Menu displays error "the name of the launcher is not set"

2007-05-25 Thread Philip Paquette
*** This bug is a duplicate of bug 116489 ***
https://bugs.launchpad.net/bugs/116489

Marking this bug as duplicate of bug #116489, since upstream bug #440932
has been marked as duplicate of upstream bug #437940

** Changed in: gnome-panel (Ubuntu)
   Status: Confirmed => Rejected

** This bug has been marked a duplicate of bug 116489
   Cancel button for "New Menu"

-- 
New Menu displays error "the name of the launcher is not set"
https://bugs.launchpad.net/bugs/116488
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 64264] Re: gnome-menus doesn't send notification for new .desktop files

2007-05-24 Thread Philip Paquette
Subscribing Travis Watkins to this bug, since upstream developers have
marked this bug as "Needs Info" in February and Travis is probably the
person who can answer best the question: "what exactly is alacarte doing
when you copy an item, what does the gnome-menus verbose log show etc.
?""

** Changed in: gnome-menus (Ubuntu)
   Importance: Undecided => Low

-- 
gnome-menus doesn't send notification for new .desktop files
https://bugs.launchpad.net/bugs/64264
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 26524] Re: Smeg 0.7.5 Drag & Drop Bug: SubMenu can't be moved back to the "applications" root-menu.

2007-05-24 Thread Philip Paquette
I can't reproduce this bug in alacarte [Feisty], and I think this bug
should be marked as Fixed.  Can anyone else confirm it has been fixed...

-- 
Smeg 0.7.5 Drag & Drop Bug: SubMenu can't be moved back to the "applications" 
root-menu.
https://bugs.launchpad.net/bugs/26524
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 96706] Re: menu editor won't accept changes

2007-05-24 Thread Philip Paquette
This bug seems to be occuring because of the

"X-KDE-SubstituteUID=true"

line in the ~/.local/share/applications/*.desktop files.  By removing
that line manually in each of the items listed above, I was able to make
them appear in the menu ...

-- 
menu editor won't accept changes
https://bugs.launchpad.net/bugs/96706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 96706] Re: menu editor won't accept changes

2007-05-24 Thread Philip Paquette
Enable the following options in System-> Administration

* Gnome Partition Editor
* Language Support
* Login Window
* Network
* Restricted Drivers Manager
* Services
* Shared Folders
* Software Sources
* Synaptic Package Manager
* Time and Date
* Users and Groups

The ~/.config/menus files seems to include the .desktop files, but
something must block those files from appearing in the actual menu.

** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7778925/alacarte_bug25.tar

-- 
menu editor won't accept changes
https://bugs.launchpad.net/bugs/96706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 96706] Re: menu editor won't accept changes

2007-05-24 Thread Philip Paquette
Confirming.  To reproduce log in as any user which is NOT in the "admin"
group, then open alacarte and try to enable any options in
System->Administration, the checkbox will remain checked for 0.5 seconds
then will be unchecked without any messages...


** Changed in: alacarte (Ubuntu)
   Status: Needs Info => Confirmed

-- 
menu editor won't accept changes
https://bugs.launchpad.net/bugs/96706
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116488] Re: New Menu displays error "the name of the launcher is not set"

2007-05-24 Thread Philip Paquette
It's a LP bug that I reported upstream rather than the inverse, but
thanks, I'll know for next time.

-- 
New Menu displays error "the name of the launcher is not set"
https://bugs.launchpad.net/bugs/116488
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116488] Re: New Menu displays error "the name of the launcher is not set"

2007-05-24 Thread Philip Paquette

** Bug watch added: GNOME Bug Tracker #440932
   http://bugzilla.gnome.org/show_bug.cgi?id=440932

** Also affects: gnome-panel (upstream) via
   http://bugzilla.gnome.org/show_bug.cgi?id=440932
   Importance: Unknown
   Status: Unknown

** Attachment added: "Screenshot"
   http://librarian.launchpad.net/192/Screenshot.png

-- 
New Menu displays error "the name of the launcher is not set"
https://bugs.launchpad.net/bugs/116488
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 94742] Re: Feisty: menu management does not work fine

2007-05-23 Thread Philip Paquette
Travis, I think this bug is a dupe of #116490, but I'm not sure enough
to mark it... Just wanted your opinion...

-- 
Feisty: menu management does not work fine
https://bugs.launchpad.net/bugs/94742
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116088] Re: [apport] alacarte crashed with ExpatError in parseFile()

2007-05-23 Thread Philip Paquette
*** This bug is a duplicate of bug 97449 ***
https://bugs.launchpad.net/bugs/97449

** This bug has been marked a duplicate of bug 97449
   [apport] alacarte crashed with ExpatError in parseFile()

-- 
[apport] alacarte crashed with ExpatError in parseFile()
https://bugs.launchpad.net/bugs/116088
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 102527] Re: [feisty] gnome-ui-properties / Main-Menu, issue with separator

2007-05-23 Thread Philip Paquette
Yes, here is how:

--> Steps to reproduce

1. Revert
2. Create a submenu (e.g. "sound" submenu of Sound&Video)
3. Create item1, in submenu
4. Select item1 in right pane
5. Create separator in submenu
6. Select separator in right pane
7. Create item2 in submenu
8. Select item2 in right pane
9. Create item3 in submenu
10. Select item3 in right pane
11. Create item4 in submenu
12. Move item4 up one spot.

Expected behaviour: item4 moves up and is still selected
Results: items4 moves up but item2 is selected.


** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7770305/alacarte_bug24.tar

-- 
[feisty] gnome-ui-properties / Main-Menu, issue with separator
https://bugs.launchpad.net/bugs/102527
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116508] Re: Incorrect item selected when creating new item

2007-05-23 Thread Philip Paquette

** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7770275/alacarte_bug23.tar

-- 
Incorrect item selected when creating new item
https://bugs.launchpad.net/bugs/116508
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116508] Incorrect item selected when creating new item

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

--> Steps to reproduce

1. Revert
2. Create a submenu (e.g. "sound" submenu of Sound&Video)
3. Create item1, in submenu
4. Select item1 in right pane
5. Create separator in submenu
6. Select separator in right pane
7. Create item2 in submenu
8. Select item2 in right pane
9. Create item3 in submenu

Expected behaviour: item3 is created and item2 is still selected
Results: item3 is created but separator is selected.

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Incorrect item selected when creating new item
https://bugs.launchpad.net/bugs/116508
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116507] When moving, item disappears temporarily

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

When moving an item to the same folder, the item being moved disappears
for about 1.5 seconds and then reappears at the correct place.  This
delay is too long and a user might think that the operation won't be
done.  Therefore, the item shouldn't disappear (or it could but for no
more than 0.25 seconds)...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
When moving, item disappears temporarily
https://bugs.launchpad.net/bugs/116507
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116498] Right clicking left pane should trigger a menu (New Menu, New Item, Revert, Delete)

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

Wishlist:

It's inconsistent behaviour that right-clicking the right pane triggers a menu, 
but not the left pane...
A menu should appear also on the left pane:

Something like
- New Menu
- New Item
- Revert
- Properties
- Delete

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Right clicking left pane should trigger a menu (New Menu, New Item, Revert, 
Delete)
https://bugs.launchpad.net/bugs/116498
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116503] Inconsistency between Copy and Move while Drag and Droping

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

Drag and dropping triggers a "copy" operation, therefore a + sign
appears next to the cursor, but when pushing shift while dnd, the cursor
loses the + sign, but the move operation is not implemented...
Therefore, it's impossible to directly move an item out of it's current
directory.

Also, if I dnd an item inside of it's source folder, it's a MOVE (but
the cursor still shows a + sign), but if it's outside of its source
folder, than it's a COPY That's inconsistent behaviour.

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Inconsistency between Copy and Move while Drag and Droping
https://bugs.launchpad.net/bugs/116503
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116504] When creating a new item, the "name" field should be selected by default

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

When creating a new item, the "name" field should be selected by
default.  That's the default behaviour for "New Menu" and it's easier
that way, since you don't have to grab your mouse...

Not sure if this is an alacarte or a gnome-panel bug...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
When creating a new item, the "name" field should be selected by default
https://bugs.launchpad.net/bugs/116504
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116500] Pressing Delete key when selecting left pane should ask for confirmation, then delete

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

Pressing Delete key when selecting left pane should ask for
confirmation, then delete

It's inconsistent behaviour that it does it in the right pane, but not
in the left one...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Pressing Delete key when selecting left pane should ask for confirmation, then 
delete
https://bugs.launchpad.net/bugs/116500
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116501] Re: Dark line when drag and dropping is very difficult to see

2007-05-23 Thread Philip Paquette

** Attachment added: "Screenshot"
   http://librarian.launchpad.net/7770016/Screenshot-Main%20Menu.png

-- 
Dark line when drag and dropping is very difficult to see
https://bugs.launchpad.net/bugs/116501
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116501] Dark line when drag and dropping is very difficult to see

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

When moving items by drag and dropping, the position of the moved item
(i.e. the dark line) appears right in the middle of the item being
moved, rather than on top, so I'm sure that more than 50% of people
moving items never actually saw it...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Dark line when drag and dropping is very difficult to see
https://bugs.launchpad.net/bugs/116501
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116496] Re: Reverting changes when submenus are created make the submenus appear as alacarte-made-#

2007-05-23 Thread Philip Paquette
--> Steps to reproduce
1. Revert
2. Create a submenu (e.g. "sound" submenu of Sound&Video)
3. Revert


** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7769897/alacarte_bug19.tar

-- 
Reverting changes when submenus are created make the submenus appear as 
alacarte-made-#
https://bugs.launchpad.net/bugs/116496
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116496] Reverting changes when submenus are created make the submenus appear as alacarte-made-#

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

Reverting changes when submenus are created make the submenus appear as 
alacarte-made-#
Reverting again makes them disappear...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Reverting changes when submenus are created make the submenus appear as 
alacarte-made-#
https://bugs.launchpad.net/bugs/116496
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116497] Re: Can't delete item if it's a duplicate is in the same folder.

2007-05-23 Thread Philip Paquette

** Attachment added: "Logs of ~/.config/menus and ~/.local/share"
   http://librarian.launchpad.net/7769960/alacarte_bug20.tar

-- 
Can't delete item if it's a duplicate is in the same folder.
https://bugs.launchpad.net/bugs/116497
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116497] Can't delete item if it's a duplicate is in the same folder.

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

--> Steps to reproduce
1. Revert
2. Create a submenu (e.g. "sound" submenu of Sound&Video)
3. Drag and drop VLC from S&V to sound
4. Drag and drop VLC from S&V to sound (again)
5. Delete one of the VLCs from sound, Expected behaviour: Deleted, Results: 
nothing happens, unless you close the app and reopen it.

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Can't delete item if it's a duplicate is in the same folder.
https://bugs.launchpad.net/bugs/116497
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 116495] Can't create separator unless we select the right pane.

2007-05-23 Thread Philip Paquette
Public bug reported:

Binary package hint: alacarte

Currently, you can't create a separator unless you select the right
pane.

--> Steps to reproduce
1. Revert
2. Create a submenu
3. Create item1, and item2 in submenu
4. Click on "New Separator" without selecting any of the items
5. Nothing happens -> Expected behaviour: New separator

You can create a "new Item" without selecting the right pane, therefore
you should be able to create a new separator without selecting the right
pane To be consistent...

** Affects: alacarte (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Can't create separator unless we select the right pane.
https://bugs.launchpad.net/bugs/116495
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


  1   2   3   4   5   >