[Bug 805386] Re: Screen goes to sleep when told not to

2013-09-01 Thread Bug Watch Updater
** Changed in: vlc
   Status: Unknown = New

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

Title:
  Screen goes to sleep when told not to

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

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


[Bug 428884] Re: gnome-screensaver-command --poke no longer inhibits screensaver

2013-09-01 Thread Bug Watch Updater
** Changed in: vlc
   Status: Unknown = New

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

Title:
  gnome-screensaver-command --poke no longer inhibits screensaver

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

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


[Bug 805386] Vacation reply

2013-09-01 Thread mikael hammarlind
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in Ubuntu.
https://bugs.launchpad.net/bugs/805386

Title:
  Screen goes to sleep when told not to

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

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


[Bug 428884] Vacation reply

2013-09-01 Thread mikael hammarlind
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-screensaver in Ubuntu.
https://bugs.launchpad.net/bugs/428884

Title:
  gnome-screensaver-command --poke no longer inhibits screensaver

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

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


[Bug 1218896] Re: [MIR] location-service

2013-09-01 Thread Adam Conrad
Marked the lcov task Invalid since you've removed the build-dep in the
linked branch (and lcov already has another MIR at #1218209 anyway)

** Changed in: lcov (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  [MIR] location-service

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dbus-cpp/+bug/1218896/+subscriptions

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


[Bug 838223] Re: gedit crashed with SIGSEGV in gtk_text_buffer_get_iter_at_mark()

2013-09-01 Thread Mayank Suman
Occurs when : - If the file is too big (running in mbs) and you are going for 
find tool (ctrl+f).
I think the instant search has problem as the program hang a lot during typing 
in find box and eventually crashes.
I am using Ubuntu 13.10 right now.

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

Title:
  gedit crashed with SIGSEGV in gtk_text_buffer_get_iter_at_mark()

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

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


[Bug 838223] Re: gedit crashed with SIGSEGV in gtk_text_buffer_get_iter_at_mark()

2013-09-01 Thread Mayank Suman
I think the easiest fix will be to limit the file size after which
instant search do not work ... you have to type whole word and press
enter to start search

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

Title:
  gedit crashed with SIGSEGV in gtk_text_buffer_get_iter_at_mark()

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

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


[Bug 885989] Re: white screen on second monitor when using two xsessions

2013-09-01 Thread Alberts Muktupāvels
I have nvidia card with connected 3 monitors configurated as separate x
screens.

Without patched nautilus:
1) I have white background on second and third screen.
2) All nautilus windows opens on primary/first screen

With patched nautilus:
1) Background is ok on all screens. (this patch is included in merge proposal)
2) I can open nautilus window on any screen. (this patch is NOT included in 
merge proposal)

Patch to allow open nautilus window on any screen is simple. It works by
creating new instance of nautilus when opening on other screen. Patch is
available here - https://bugzilla.gnome.org/show_bug.cgi?id=705317

Added these lines to nautilus_desktop_background_constructor function in 
libnautilus-private/nautilus-desktop-background.c
-
GdkScreen *screen = gtk_widget_get_screen(singleton-details-widget);
g_printerr(Desktop background constructed for screen: %i\n, 
gdk_screen_get_number(screen));

and these lines to nautilus_application_new function in 
src/nautilus-application.c

g_printerr(Application id: %s\n, application_id);


* Builded new packages and installed them. Opened terminal on all screens.
* Killed nautilus running - killall nautilus. Opened System Monitor to see that 
nautilus is not running anymore.
* Opened nautilus on first screen from terminal. Now there is one running 
instance for first screen with application id 'org.gnome.Nautilus.Display_0_0'. 
Background object is contructed only once for each screen.
--
Application id: org.gnome.Nautilus.Display_0_0
Desktop background constructed for screen: 0
Desktop background constructed for screen: 1
Desktop background constructed for screen: 2
--
* Opened nautilus on next screen from terminal. Now there is two instances of 
nautilus. In terminal is printed only line with application id. Lines from 
background constructor is NOT printed, so even running new instance nautilus is 
NOT creating new objects for background.
--
Application id: org.gnome.Nautilus.Display_0_2
--
* Opened on tird screen. Some thing as in previus point.
--
Application id: org.gnome.Nautilus.Display_0_1
--
* Killed all nautilus instances and opened first nautilus from other screen. 
--
Application id: org.gnome.Nautilus.Display_0_1
Desktop background constructed for screen: 0
Desktop background constructed for screen: 1
Desktop background constructed for screen: 2
--

So what tests are needed to approve patch?

It works! There is no problems, no regressions or anything like that.
This bug is almost two years old and is not fixed because of stupid
reason - 'seems a bit simple to me'.

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

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

Title:
  white screen on second monitor when using two xsessions

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

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


[Bug 1218472] Re: Gucharmap: Languages List Is Too Narrow

2013-09-01 Thread Kom-Si
Posted the bug report on GNOME Bugzilla: Bug 707214 - Languages (Scripts) List 
Is Too Narrow. 
Here's the link to it: https://bugzilla.gnome.org/show_bug.cgi?id=707214.

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

Title:
  Gucharmap: Languages List Is Too Narrow

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

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


[Bug 1218472] Re: Gucharmap: Languages List Is Too Narrow

2013-09-01 Thread Kom-Si
Adolfo,

I did just that: posted a bug report on GNOME Bugzilla. Here's the link:
https://bugzilla.gnome.org/show_bug.cgi?id=707214.

Regards,

Val


On 30 August 2013 04:46, Adolfo Jayme Barrientos fitosch...@gmail.comwrote:

 Thank you for taking the time to report this bug and helping to make
 Ubuntu better. The issue you are reporting is an upstream one and it
 would be nice if you or somebody having it could send the bug to the
 developers of the software by following the instructions at
 https://wiki.ubuntu.com/Bugs/Upstream/GNOME. If you have done so, please
 tell us the number of the upstream bug (or the link), so we can add a
 bugwatch that will inform us about its status. Thanks in advance.

 ** Changed in: gucharmap (Ubuntu)
Status: New = Confirmed

 ** Changed in: gucharmap (Ubuntu)
Importance: Undecided = Low

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1218472

 Title:
   Gucharmap: Languages List Is Too Narrow

 Status in “gucharmap” package in Ubuntu:
   Confirmed

 Bug description:
   Gnome Character Map's list of available languages (scripts) is too
 narrow to view them normally (see attached screenshot). It can be widened
 by dragging separator bar but the application does not remember its
 position. So when restarted it shows the same extremely narrow list of
 languages.
   In earlier versions of Ubuntu it worked (i.e. the application
 remembered separator slider's position set by user) but for several last
 Ubuntu releases it seems to be broken.
   Please fix it as I use this app quite often, and the necessity to adjust
 the list width each time I start it drives me crazy!

   Ubuntu 13.04, 64-bit

 To manage notifications about this bug go to:

 https://bugs.launchpad.net/ubuntu/+source/gucharmap/+bug/1218472/+subscriptions



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

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

Title:
  Gucharmap: Languages List Is Too Narrow

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

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

[Bug 1170832] Re: Facebook Requires Authorization when already authorized

2013-09-01 Thread RY Seshan
** Also affects: empathy
   Importance: Undecided
   Status: New

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

Title:
  Facebook Requires Authorization when already authorized

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

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


[Bug 1219428] [NEW] Unlock password dialog blank on resume

2013-09-01 Thread drink
Public bug reported:

Upon resume, the password dialog did not draw its contents and did not work 
typing blindly.
This is not identical to other bug reports because in this case the rectangle 
for the window is drawn, but never gains any contents.
Screen photo attached.
Cannot install mainline or saucy on this machine; mainline won't dkms nvidia 
and saucy install chokes at the first dialog. So I won't do that as a 
troubleshooting step at this point, because of ubuntu bugs.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: gnome-screensaver 3.6.1-0ubuntu3
ProcVersionSignature: Ubuntu 3.8.0-29.42-generic 3.8.13.5
Uname: Linux 3.8.0-29-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: amd64
Date: Sun Sep  1 05:09:45 2013
GnomeSessionIdleInhibited: No
GnomeSessionInhibitors: None
GsettingsGnomeSession:
 org.gnome.desktop.session idle-delay uint32 600
 org.gnome.desktop.session session-name 'ubuntu'
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 SHELL=/bin/bash
SourcePackage: gnome-screensaver
UpgradeStatus: Upgraded to raring on 2013-04-22 (131 days ago)

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


** Tags: amd64 apport-bug raring

** Attachment added: screensaverfail.jpg
   
https://bugs.launchpad.net/bugs/1219428/+attachment/3797660/+files/screensaverfail.jpg

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

Title:
  Unlock password dialog blank on resume

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

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


[Bug 885989] Re: white screen on second monitor when using two xsessions

2013-09-01 Thread Alberts Muktupāvels
** Bug watch removed: GNOME Bug Tracker #705317
   https://bugzilla.gnome.org/show_bug.cgi?id=705317

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

Title:
  white screen on second monitor when using two xsessions

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

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


[Bug 1219454] [NEW] ?

2013-09-01 Thread rinoux
Public bug reported:

i dont know

ProblemType: Crash
DistroRelease: Ubuntu 13.10
Package: gnome-session-bin 3.9.90-0ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.12.1-0ubuntu3
Architecture: amd64
Date: Wed Aug 28 15:55:48 2013
ExecutablePath: /usr/bin/gnome-session
InstallationDate: Installed on 2013-06-19 (73 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
MarkForUpload: True
ProcCmdline: /usr/bin/gnome-session --autostart /usr/share/gdm/greeter/autostart
ProcEnviron:
 SHELL=/bin/false
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=fr_FR.UTF-8
SourcePackage: gnome-session
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-crash saucy third-party-packages

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

Title:
  ?

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

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


[Bug 1045251] Re: gdm-simple-slave crashed with SIGSEGV in on_opened()

2013-09-01 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gdm (Ubuntu)
   Status: New = Confirmed

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

Title:
  gdm-simple-slave crashed with SIGSEGV in on_opened()

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

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


[Bug 1219458] [NEW] Ctrl-click consecutive files, then shift-arrow has unexpected result

2013-09-01 Thread Daniel Hershcovich
Public bug reported:

Open a directory with several (say 7) files and folders in list view with 
Nautilus 3.6.3.
While holding the ctrl key, click some files that appear consecutively (say no. 
3, 4 and 5), selecting them.
Release ctrl and hold shift. Press the down arrow key once.

What I expect to see is that the next consecutive file is added to the 
selection (no. 6 in the example).
Instead, the whole selection is offset by 1 (in the example, no. 4, 5 and 6 are 
selected).

This behavior is different than when I start the action by selecting the
files with shift, in which case the expected behavior occurs.

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

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

Title:
  Ctrl-click consecutive files, then shift-arrow has unexpected result

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

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


[Bug 1075923] Re: nautilus hangs copying large directories from a samba share

2013-09-01 Thread Sb
Just got bit by this bug. I have two laptops running 13.04. The faster
one with an Intel Core I5 is running x86, and the slower one is running
amd64. (I prefer x86, but the slower laptop had a different bug that
prevented me from using x86.) The fast laptop doesn't have any Nautilus
/ Samba / GVFS problems, but the slow laptop is completely broken for
file transfers. I don't know if this has to do with the speed or if
32bit vs 64bit makes the difference.

With regards to the workaround proposed in comment #171, thanks a lot
for the tip, that version of GVFS solved the problem. However, the best
way to implement the workaround is with APT pinning. To do this:

0. Add the Precise repos mentioned in comment #171

1. Create a file called gvfs-pin or whatever you want in
/etc/apt/preferences.d

2. Edit /etc/apt/preferences/gvfs-pin as follows:
Package: gvfs*
Pin: release a=precise
Pin-Priority: 999

3. sudo apt-get upgrade

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

Title:
  nautilus hangs copying large directories from a samba share

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

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


[Bug 1214917] Re: nautilus crashed with SIGABRT in g_assertion_message()

2013-09-01 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1202159 ***
https://bugs.launchpad.net/bugs/1202159

Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: nautilus (Ubuntu)
   Status: New = Confirmed

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

Title:
  nautilus crashed with SIGABRT in g_assertion_message()

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

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


[Bug 885989] Re: white screen on second monitor when using two xsessions

2013-09-01 Thread saltmakrell
Cannot the compiz not started on the second screen (:0.1) also be
considered a bug? Do you know if it is recorded somewhere and if anyone
is working on getting it fixed?

It is great that you have found a solution for most of the problems! To
me it seems like none of the nautilus developers have a more complicated
multimonitor setup and they therefore don't see the severity of these
bugs! We need them to understand how bad it is. It is a shame that the
default desktop environment for Ubuntu does not support multi-monitors
(more than two) out of the box!

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

Title:
  white screen on second monitor when using two xsessions

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

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


[Bug 885989] Re: white screen on second monitor when using two xsessions

2013-09-01 Thread Alberts Muktupāvels
It is definitely a bug. I think no one is working on that bug. I have
looked at code, but I guess I wont be able to fix it. I have no time to
study how compiz works and make necessary changes.

My pc setup is even more complicated. I have two nvidia cards with
connected 4 monitors. I have two seats. One with 3 monitors/screens and
second with two monitors/screens. One monitor is shared between both
seats. So I have 5 screens - :0.1, :0.2, :0.3, :1.0, :1.1.

I am using ubuntu 13.10 with pached nautilus, gedit, lightdm, xorg-server and 
unity-greeter. I have still 2 problems I would love to be resolved:
1) compiz not handling all screens. For this I am using workaround - I am 
starting compiz on each screen by adding new startup applications
2) https://bugs.launchpad.net/compiz/+bug/1158267

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

Title:
  white screen on second monitor when using two xsessions

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

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


[Bug 1219478] Re: gvfs-afc-volume-monitor crashed with SIGSEGV in g_type_check_instance_cast()

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1212971 ***
https://bugs.launchpad.net/bugs/1212971

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1212971, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797851/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797853/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797854/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797855/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797856/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797857/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219478/+attachment/3797858/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1212971

** Tags removed: need-amd64-retrace

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

Title:
  gvfs-afc-volume-monitor crashed with SIGSEGV in
  g_type_check_instance_cast()

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

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


[Bug 1219478] [NEW] gvfs-afc-volume-monitor crashed with SIGSEGV in g_type_check_instance_cast()

2013-09-01 Thread Joel Salas
*** This bug is a duplicate of bug 1212971 ***
https://bugs.launchpad.net/bugs/1212971

Public bug reported:

I don't know what caused this.

ProblemType: Crash
DistroRelease: Ubuntu 13.10
Package: gvfs-backends 1.17.2-0ubuntu6
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic x86_64
ApportVersion: 2.12.1-0ubuntu3
Architecture: amd64
CrashCounter: 1
Date: Sat Aug 31 21:39:45 2013
ExecutablePath: /usr/lib/gvfs/gvfs-afc-volume-monitor
InstallationDate: Installed on 2013-08-27 (5 days ago)
InstallationMedia: Ubuntu-GNOME 13.10 Saucy Salamander - Alpha amd64 
(20130724)
MarkForUpload: True
ProcCmdline: /usr/lib/gvfs/gvfs-afc-volume-monitor
ProcEnviron:
 SHELL=/bin/bash
 XDG_RUNTIME_DIR=set
 PATH=(custom, no user)
 LANG=en_US.UTF-8
SegvAnalysis:
 Segfault happened at: 0x7f31ff45a297 g_type_check_instance_cast+71:  movzbl 
0x16(%r9),%eax
 PC (0x7f31ff45a297) ok
 source 0x16(%r9) (0x250016) not located in a known VMA region (needed 
readable region)!
 destination %eax ok
 Stack memory exhausted (SP below stack segment)
SegvReason: reading unknown VMA
Signal: 11
SourcePackage: gvfs
StacktraceTop:
 g_type_check_instance_cast () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
 ?? ()
 ?? ()
 ?? ()
 ?? () from /usr/lib/libimobiledevice.so.4
Title: gvfs-afc-volume-monitor crashed with SIGSEGV in 
g_type_check_instance_cast()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo

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


** Tags: amd64 apport-crash saucy

** Information type changed from Private to Public

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

Title:
  gvfs-afc-volume-monitor crashed with SIGSEGV in
  g_type_check_instance_cast()

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

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


[Bug 1219486] [NEW] FFe: Update gnome-settings-daemon to 3.8.4

2013-09-01 Thread Jeremy Bicha
Public bug reported:

https://bazaar.launchpad.net/~gnome3-team/gnome-settings-
daemon/ubuntu/view/head:/debian/changelog

https://git.gnome.org/browse/gnome-settings-daemon/tree/NEWS?h=gnome-3-8

Call for testing: https://lists.ubuntu.com/archives/ubuntu-
desktop/2013-August/004296.html

The Ubuntu GNOME team has been testing gnome-settings-daemon 3.8 with
packages available in the GNOME3 Staging PPA (for 13.04 users) since the
Saucy cycle opened. We didn't get the upload in by Feature Freeze
because we were waiting for indicator-keyboard to land in Saucy to make
sure that this upload didn't cause any regressions with the input method
support. There are no known remaining regressions with this upload.

gnome-control-center also needs updating (for moved gsettings keys and
similar) and gnome-shell needs a patch to be dropped. I am ready to
upload all three of these packages now.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: gnome-settings-daemon 3.6.4-0ubuntu19
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic x86_64
ApportVersion: 2.12.1-0ubuntu3
Architecture: amd64
Date: Sun Sep  1 11:29:05 2013
MarkForUpload: True
SourcePackage: gnome-settings-daemon
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug saucy upgrade-software-version

** Attachment added: buildlog
   
https://bugs.launchpad.net/bugs/1219486/+attachment/3797906/+files/gnome-settings-daemon_3.8.4-0ubuntu1%7Esaucy5_amd64-20130901-1112.build

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

Title:
  FFe: Update gnome-settings-daemon to 3.8.4

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

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


[Bug 1219486] Re: FFe: Update gnome-settings-daemon to 3.8.4

2013-09-01 Thread Jeremy Bicha
** Description changed:

  https://bazaar.launchpad.net/~gnome3-team/gnome-settings-
  daemon/ubuntu/view/head:/debian/changelog
  
  https://git.gnome.org/browse/gnome-settings-daemon/tree/NEWS?h=gnome-3-8
  
  Call for testing: https://lists.ubuntu.com/archives/ubuntu-
  desktop/2013-August/004296.html
  
  The Ubuntu GNOME team has been testing gnome-settings-daemon 3.8 with
  packages available in the GNOME3 Staging PPA (for 13.04 users) since the
  Saucy cycle opened. We didn't get the upload in by Feature Freeze
  because we were waiting for indicator-keyboard to land in Saucy to make
  sure that this upload didn't cause any regressions with the input method
  support. There are no known remaining regressions with this upload.
+ 
+ I can no longer reproduce bug 1201679 with this build.
  
  gnome-control-center also needs updating (for moved gsettings keys and
  similar) and gnome-shell needs a patch to be dropped. I am ready to
  upload all three of these packages now.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: gnome-settings-daemon 3.6.4-0ubuntu19
  ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
  Uname: Linux 3.11.0-4-generic x86_64
  ApportVersion: 2.12.1-0ubuntu3
  Architecture: amd64
  Date: Sun Sep  1 11:29:05 2013
  MarkForUpload: True
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  FFe: Update gnome-settings-daemon to 3.8.4

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

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


[Bug 1219486] Re: FFe: Update gnome-settings-daemon to 3.8.4

2013-09-01 Thread Launchpad Bug Tracker
** Branch linked: lp:~gnome3-team/gnome-settings-daemon/ubuntu

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

Title:
  FFe: Update gnome-settings-daemon to 3.8.4

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

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


[Bug 1219492] Re: nautilus crashed with SIGSEGV in gtk_action_get_name()

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1193522 ***
https://bugs.launchpad.net/bugs/1193522

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1193522, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797933/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797935/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797936/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797937/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797938/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797939/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219492/+attachment/3797940/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1193522
   nautilus crashed with SIGSEGV in gtk_action_get_name()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  nautilus crashed with SIGSEGV in gtk_action_get_name()

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

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


[Bug 1205769] Re: Keyboard shortcut dialog hangs when backspacing

2013-09-01 Thread Péter Trombitás
Also having this issue with:
 *** 2.8.6-0precise1~ppa 0
500 http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu/ 
precise/main amd64 Packages
100 /var/lib/dpkg/status
Ubuntu 12.04.

Strangely, it happens only when the length of the string decreases to
anything under 3. No matter if I use delete instead of backspace.

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

Title:
  Keyboard shortcut dialog hangs when backspacing

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

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


[Bug 884145] Re: Gimp destroyes image file when trying to save as .tif with jpeg compression

2013-09-01 Thread Thomas Hotz
I have tested this example and can confirm this behaviour. I'll make an
upstream bug report. Thank you for reporting this bug to Ubuntu!

** Changed in: gimp (Ubuntu)
   Status: New = Confirmed

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

Title:
  Gimp destroyes image file when trying to save as .tif with jpeg
  compression

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

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


[Bug 884145] Re: Gimp destroyes image file when trying to save as .tif with jpeg compression

2013-09-01 Thread Thomas Hotz
** Bug watch added: GNOME Bug Tracker #707239
   https://bugzilla.gnome.org/show_bug.cgi?id=707239

** Also affects: gimp via
   https://bugzilla.gnome.org/show_bug.cgi?id=707239
   Importance: Unknown
   Status: Unknown

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

Title:
  Gimp destroyes image file when trying to save as .tif with jpeg
  compression

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

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


[Bug 1205769] Re: Keyboard shortcut dialog hangs when backspacing

2013-09-01 Thread Thomas Hotz
** Changed in: gimp (Ubuntu)
   Status: Incomplete = Confirmed

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

Title:
  Keyboard shortcut dialog hangs when backspacing

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

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


[Bug 1205769] Re: Keyboard shortcut dialog hangs when backspacing

2013-09-01 Thread Thomas Hotz
I have unmarked GIMP. I can't reproduce this bug on Ubuntu 13.04, but
does this bug happen only on Ubuntu 12.04 LTS?

** No longer affects: gimp

** Changed in: gimp (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  Keyboard shortcut dialog hangs when backspacing

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

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


[Bug 410636] Re: Right-click should not pre-light first option, too easy to accidentally select the first Context-menu option.

2013-09-01 Thread Patrik Nilsson
Anton Veretenenko (anton.veretenenko): You can buy me a new laptop every
time my internal right button on my computer needs to be switched!

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

Title:
  Right-click should not pre-light first option, too easy to
  accidentally select the first Context-menu option.

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

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


[Bug 1219486] Re: FFe: Update gnome-settings-daemon to 3.8.4

2013-09-01 Thread Jeremy Bicha
** Description changed:

  https://bazaar.launchpad.net/~gnome3-team/gnome-settings-
  daemon/ubuntu/view/head:/debian/changelog
  
  https://git.gnome.org/browse/gnome-settings-daemon/tree/NEWS?h=gnome-3-8
  
  Call for testing: https://lists.ubuntu.com/archives/ubuntu-
  desktop/2013-August/004296.html
  
  The Ubuntu GNOME team has been testing gnome-settings-daemon 3.8 with
  packages available in the GNOME3 Staging PPA (for 13.04 users) since the
  Saucy cycle opened. We didn't get the upload in by Feature Freeze
  because we were waiting for indicator-keyboard to land in Saucy to make
  sure that this upload didn't cause any regressions with the input method
  support. There are no known remaining regressions with this upload.
  
  I can no longer reproduce bug 1201679 with this build.
  
+ This update is also a prerequisite for updating gnome-disk-utility to
+ 3.8 (bug 1092719).
+ 
  gnome-control-center also needs updating (for moved gsettings keys and
  similar) and gnome-shell needs a patch to be dropped. I am ready to
  upload all three of these packages now.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: gnome-settings-daemon 3.6.4-0ubuntu19
  ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
  Uname: Linux 3.11.0-4-generic x86_64
  ApportVersion: 2.12.1-0ubuntu3
  Architecture: amd64
  Date: Sun Sep  1 11:29:05 2013
  MarkForUpload: True
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  FFe: Update gnome-settings-daemon to 3.8.4

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

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


[Bug 1219562] Re: evolution-calendar-factory assert failure: *** Error in `/usr/lib/evolution/evolution-calendar-factory': double free or corruption (out): 0x00007f072c002580 ***

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1154822 ***
https://bugs.launchpad.net/bugs/1154822

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1154822, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798335/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798337/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798339/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798340/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798341/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798342/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219562/+attachment/3798343/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1154822
   evolution-calendar-factory crashed with SIGABRT: double free or corruption

** Information type changed from Private Security to Public Security

** Tags removed: need-amd64-retrace

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

Title:
  evolution-calendar-factory assert failure: *** Error in
  `/usr/lib/evolution/evolution-calendar-factory': double free or
  corruption (out): 0x7f072c002580 ***

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

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


[Bug 1219566] Re: [xrandr]: gnome-settings-daemon crashed with SIGSEGV in gtk_widget_destroy()

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1205996 ***
https://bugs.launchpad.net/bugs/1205996

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1205996, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798346/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798348/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798350/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798351/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798352/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798353/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219566/+attachment/3798354/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1205996

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  [xrandr]: gnome-settings-daemon crashed with SIGSEGV in
  gtk_widget_destroy()

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

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


[Bug 1212408] Re: lightdm/gdm needs to set $XDG_CURRENT_DESKTOP

2013-09-01 Thread Tim
** Changed in: gdm (Ubuntu)
   Status: New = Confirmed

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

Title:
  lightdm/gdm needs to set $XDG_CURRENT_DESKTOP

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

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


[Bug 1219573] Re: gnome-session-properties crashed with signal 5 in g_cclosure_marshal_VOID__BOXEDv()

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1194546 ***
https://bugs.launchpad.net/bugs/1194546

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1194546, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798358/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798360/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798361/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798362/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798363/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798364/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219573/+attachment/3798365/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1194546
   gnome-session-properties crashed with signal 5 in 
g_cclosure_marshal_VOID__BOXEDv()

** Information type changed from Private to Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-session-properties crashed with signal 5 in
  g_cclosure_marshal_VOID__BOXEDv()

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

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


[Bug 1143389] Re: Rhythmbox crashes if you hit subscribe too many times

2013-09-01 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: rhythmbox (Ubuntu)
   Status: New = Confirmed

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

Title:
  Rhythmbox crashes if you hit subscribe too many times

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

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


[Bug 1219578] Re: [printers]: gnome-control-center crashed with SIGSEGV in g_slice_alloc()

2013-09-01 Thread Apport retracing service
*** This bug is a duplicate of bug 1162377 ***
https://bugs.launchpad.net/bugs/1162377

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1162377, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798440/+files/CoreDump.gz

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798442/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798443/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798444/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798445/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798446/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/1219578/+attachment/3798447/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1162377

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  [printers]: gnome-control-center crashed with SIGSEGV in
  g_slice_alloc()

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

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


[Bug 884145] Re: Gimp destroyes image file when trying to save as .tif with jpeg compression

2013-09-01 Thread Bug Watch Updater
** Changed in: gimp
   Status: Unknown = New

** Changed in: gimp
   Importance: Unknown = Medium

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

Title:
  Gimp destroyes image file when trying to save as .tif with jpeg
  compression

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

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


[Bug 972554] Re: [soundnua]: new capplet does not expose all profiles (Emu 0404 USB)

2013-09-01 Thread Matthias Niess
Hi. Calling in from 2013. This problem still exists in raring and saucy.

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

Title:
  [soundnua]: new capplet does not expose all profiles (Emu 0404 USB)

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

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


[Bug 254980] Re: Calendar displays appointments/meetings at incorrect times

2013-09-01 Thread kamome
I'm not using evolution, anymore - but what is this?!! Or what is Bug Watch 
Updater doing?
Is this supposed to be confirmed or incomplete or invalid or fix released?

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

Title:
  Calendar displays appointments/meetings at incorrect times

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

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


[Bug 664045] Re: can't control brightness of Toshiba Satellite R630 (Portege R700) display after suspend

2013-09-01 Thread Christopher M. Penalver
kord123, this bug was reported a while ago and there hasn't been any
activity in it recently. We were wondering if this is still an issue? If
so, could you please test for this with the latest development release
of Ubuntu? ISO images are available from http://cdimage.ubuntu.com
/daily-live/current/ .

If it remains an issue, could you please run the following command in
the development release from a Terminal
(Applications-Accessories-Terminal), as it will automatically gather
and attach updated debug information to this report:

apport-collect -p linux replace-with-bug-number

** This bug is no longer a duplicate of bug 935778
   Various Toshiba laptops - brightness controls work on first boot, but do 
nothing after suspend/resume to RAM.

** Package changed: gnome-power-manager (Ubuntu) = linux (Ubuntu)

** Changed in: linux (Ubuntu)
   Status: Expired = Incomplete

** Summary changed:

- can't control brightness of Toshiba Satellite R630 (Portege R700) display 
after suspend
+ Toshiba Satellite R630 Can't control brightness of display after suspend

** Tags added: needs-full-computer-model needs-suspend-logs needs-
upstream-testing

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

Title:
  Toshiba Satellite R630 Can't control brightness of display after
  suspend

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

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


[Bug 1183344] Re: Depends: python-gtk2 (= 2.24.0-3build1) but 2.24.0-3ubuntu1 is to be installed

2013-09-01 Thread Launchpad Bug Tracker
[Expired for pygtk (Ubuntu) because there has been no activity for 60
days.]

** Changed in: pygtk (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  Depends: python-gtk2 (= 2.24.0-3build1) but 2.24.0-3ubuntu1 is to be
  installed

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

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


[Bug 1192202] Re: Discs burnt with Brasero cannot always be opened in Windows

2013-09-01 Thread Launchpad Bug Tracker
[Expired for brasero (Ubuntu) because there has been no activity for 60
days.]

** Changed in: brasero (Ubuntu)
   Status: Incomplete = Expired

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

Title:
  Discs burnt with Brasero cannot always be opened in Windows

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

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