[Bug 1924765] Re: [ovn] fip assignment to instance via router with snat disabled is broken

2021-04-23 Thread Bence Romsics
Sorry for the slow followup.

I did reconfigure my ovn environment so I could change the internal
network to a geneve network and with that did the same test as above. I
was able to ping 10.0.0.2 from vm0 both before and after the floating IP
creation. So currently I'm not able to reproduce the bug reported.

Please let us know the exact steps to reproduce the error you see.

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

Title:
  [ovn] fip assignment to instance via router with snat disabled is
  broken

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

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

[Bug 1922089] Re: [ovn] enable_snat cannot be disabled once enabled

2021-04-23 Thread Bence Romsics
Sorry for the slow reaction. Thanks for the bug report. I was able to
reproduce the bug by your instructions - with traffic too.

** Changed in: neutron
   Status: New => Triaged

** Changed in: neutron
   Importance: Undecided => High

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

Title:
  [ovn] enable_snat cannot be disabled once enabled

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

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

[Bug 1924765] Re: [ovn] fip assignment to instance via router with snat disabled is broken

2021-04-19 Thread Bence Romsics
I built a master ovn devstack (first using vlan networks) to reproduce
this but I could not, this is what I did:

# physical bridge, bridge mappings, hostname
sudo ovs-vsctl --may-exist add-br br-physnet0
sudo ovs-vsctl set Open_vSwitch . 
external_ids:ovn-bridge-mappings=public:br-ex,physnet0:br-physnet0
sudo ovs-vsctl set Open_vSwitch . external_ids:hostname=$(hostname)

# target IP on the external net
sudo ip link set up dev br-physnet0
sudo ip address add 10.0.0.2/24 dev br-physnet0

# random image for testing
openstack image create --disk-format qcow2 --public --file 
~/ubuntu-20.04-server-cloudimg-amd64-disk-kvm-root-password.img u2004

openstack address scope create scope0
openstack subnet pool create --address-scope scope0 --pool-prefix 10.0.0.0/8 
--default-prefix-length 22 pool0

# external net
openstack network create net-physnet0 --external --provider-network-type flat 
--provider-physical-network physnet0
openstack subnet create subnet-physnet0 --network net-physnet0 --subnet-pool 
pool0 --subnet-range 10.0.0.0/24 --gateway 10.0.0.1 --no-dhcp

# internal net in the same address scope
openstack network create net0 --provider-network-type vlan 
--provider-physical-network physnet0 --provider-segment 100
openstack subnet create subnet0 --network net0 --subnet-pool pool0 
--subnet-range 10.0.1.0/24 --gateway 10.0.1.1

# router in disable_snat mode
openstack router create router0
openstack router set --external-gateway net-physnet0 --disable-snat router0
openstack router add subnet router0 subnet0

# add route for external system to know where the internal net is
sudo ip route add 10.0.1.0/24 via $( openstack router show router0 -f yaml -c 
external_gateway_info | awk '/ip_address:/ { print $3 }' )

openstack server create --flavor ds1G --image u2004 --nic net-id=net0
--wait vm0

# from internal to external
sudo virsh console "$( openstack server show vm0 -f value -c 
OS-EXT-SRV-ATTR:instance_name )"
ping 10.0.0.2 # works

# from external to internal fixed IP
ping 10.0.1.70 # works

openstack floating ip create --port "$( openstack port list --device-id
"$( openstack server show vm0 -f value -c id )" -f value -c id | head -1
)" net-physnet0

# from external to floating IP mapped to internal fixed IP
ping 10.0.0.41 # works  

  

I want to configure my environment to work with geneve networks instead
of vlan networks and try that way too. But also please tell me what else
you're doing differently compared to above.

** Changed in: neutron
   Status: New => Incomplete

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

Title:
  [ovn] fip assignment to instance via router with snat disabled is
  broken

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

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

[Bug 1924776] Re: [ovn] use of address scopes does not automatically disable router snat

2021-04-19 Thread Bence Romsics
Could you please provide a set of commands leading to this error? Also
what behavior you expected and what happened instead?

I'm asking this because there are many moving parts here. If you meant
the enable_snat bit in the API, I'm afraid it's impossible to
automatically set that, since we can't predict if the user will later
attach a subnet from a different address scope.

If you meant the SNAT-ting behavior between an internal subnet and the
external gw of the same address scope then this may very well be a valid
bug.

However I'm not able to reproduce it yet. This is what I tried (in an
all-in-one ovn master devstack):

# set ovs bridge mappings and hostname
sudo ovs-vsctl add-br br-physnet0
sudo ovs-vsctl set Open_vSwitch . 
external_ids:ovn-bridge-mappings=public:br-ex,physnet0:br-physnet0
sudo ovs-vsctl set Open_vSwitch . external_ids:hostname=$(hostname)

# give an ip to the bridge in the devstack vm
sudo ip link set up dev br-physnet0
sudo ip address add 10.0.0.2/24 dev br-physnet0

# create an image with serial console enabled, so we can later easily login and 
ping
openstack image create --disk-format qcow2 --public --file 
~/ubuntu-20.04-server-cloudimg-amd64-disk-kvm-root-password.img u2004

openstack address scope create scope0
openstack subnet pool create --address-scope scope0 --pool-prefix 10.0.0.0/8 
--default-prefix-length 22 pool0

# external net
openstack network create net-physnet0 --external --provider-network-type flat 
--provider-physical-network physnet0
openstack subnet create subnet-physnet0 --network net-physnet0 --subnet-pool 
pool0 --subnet-range 10.0.0.0/24 --gateway 10.0.0.1 --no-dhcp

# internal net in the same address scope
openstack network create net0 --provider-network-type vlan 
--provider-physical-network physnet0 --provider-segment 100
openstack subnet create subnet0 --network net0 --subnet-pool pool0 
--subnet-range 10.0.1.0/24 --gateway 10.0.1.1

# router in disable-snat mode
openstack router create router0
openstack router set --external-gateway net-physnet0 --disable-snat router0
openstack router add subnet router0 subnet0

# boot, login over serial console
openstack server create --flavor ds1G --image u2004 --nic net-id=net0 --wait vm0
sudo virsh console "$( openstack server show vm0 -f value -c 
OS-EXT-SRV-ATTR:instance_name )"

# ping 10.0.0.2 responds

# change router to enable-snat mode
openstack router set --external-gateway net-physnet0 --enable-snat router0

# ping 10.0.0.2 still responds

** Changed in: neutron
   Status: New => Incomplete

** Tags added: ovn

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

Title:
  [ovn] use of address scopes does not automatically disable router snat

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

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

[Bug 1922089] Re: [ovn] enable_snat cannot be disabled once enabled

2021-04-19 Thread Bence Romsics
** Tags added: ovn

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

Title:
  [ovn] enable_snat cannot be disabled once enabled

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

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

[Bug 1924765] Re: [ovn] fip assignment to instance via router with snat disabled is broken

2021-04-19 Thread Bence Romsics
As far as I can remember the enable_snat bit in the
external_gateway_info of a router should only control the generic SNAT-
ting of all traffic from internal networks to the external. Support for
floating IPs should be orthogonal to the enable_snat bit.

Could you please elaborate on the connectivity test you did? From where
and what exactly? Does access to the fixed IP break only when a floating
IP is created is it broken when enable_snat is updated to False?

First I need to build an ovn environment to reproduce this.

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

Title:
  [ovn] fip assignment to instance via router with snat disabled is
  broken

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

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

[Bug 1924765] Re: [ovn] fip assignment to instance via router with snat disabled is broken

2021-04-19 Thread Bence Romsics
** Tags added: ovn

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

Title:
  [ovn] fip assignment to instance via router with snat disabled is
  broken

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

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

[Bug 1923453] Re: [focal-wallaby] Services not running that should be: neutron-openvswitch-agent

2021-04-15 Thread Bence Romsics
** Changed in: neutron
   Status: In Progress => Triaged

** Changed in: neutron
   Importance: Undecided => High

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

Title:
  [focal-wallaby] Services not running that should be: neutron-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-neutron-gateway/+bug/1923453/+subscriptions

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

[Bug 1923870] Re: Some Neutron commands do not initilize privsep

2021-04-15 Thread Bence Romsics
** Changed in: neutron
   Status: In Progress => Triaged

** Changed in: neutron
   Importance: Undecided => High

** Tags added: wallaby-backport-potential

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

Title:
  Some Neutron commands do not initilize privsep

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

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

[Bug 1878504] [NEW] package imagemagick-6-common 8%3a6.9.10.23%2bdfsg-2.1ubuntu11 failed to install%2fupgrade%3a be%c3%a1ll%c3%adt%c3%b3f%c3%a7jl-elt%c3%a9r%c3%a9s megjelen%c3%adt%c5%91 subprocess ret

2020-05-13 Thread Bence
Public bug reported:

I was upgrading from KUbuntu 18.04 to 20.04 because of graphics driver
issues (I have no GUI right now :( I'm doing it on tty2) and `do-
release-upgrade` gave me this error message at the end. At some point
during installation, I was asked to choose between my `policy.xml` and
the package maintainers' (I've enabled PDF support). I chose to view the
diff, but instead, a "subprocess returned exit code 127" message was
issued, and dpkg (seemingly) continued. Then, when all other packages
were configured, it asked me to file the bug report. There were other
configs I had reviewed before with the "show diff" option, and it worked
fine apart from this one.

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: imagemagick-6-common 8:6.9.10.23+dfsg-2.1ubuntu11
ProcVersionSignature: Ubuntu 4.15.0-99.100-generic 4.15.18
Uname: Linux 4.15.0-99-generic x86_64
ApportVersion: 2.20.11-0ubuntu27
Architecture: amd64
CasperMD5CheckResult: skip
Date: Thu May 14 01:32:00 2020
Dependencies:
 
ErrorMessage: beállítófájl-eltérés megjelenítő subprocess returned error exit 
status 127
InstallationDate: Installed on 2016-08-01 (1381 days ago)
InstallationMedia: Kubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
PackageArchitecture: all
Python3Details: /usr/bin/python3.8, Python 3.8.2, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: /usr/bin/python2.7, Python 2.7.18rc1, python-is-python2, 2.7.17-4
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.2
SourcePackage: imagemagick
Title: package imagemagick-6-common 8:6.9.10.23+dfsg-2.1ubuntu11 failed to 
install/upgrade: beállítófájl-eltérés megjelenítő subprocess returned error 
exit status 127
UpgradeStatus: Upgraded to focal on 2020-05-14 (0 days ago)
modified.conffile..etc.ImageMagick-6.type-urw-base35.xml: [deleted]
mtime.conffile..etc.ImageMagick-6.policy.xml: 2019-01-23T16:14:26.063962

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


** Tags: amd64 apport-package focal

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

Title:
  package imagemagick-6-common 8%3a6.9.10.23%2bdfsg-2.1ubuntu11 failed
  to install%2fupgrade%3a be%c3%a1ll%c3%adt%c3%b3f%c3%a7jl-
  elt%c3%a9r%c3%a9s megjelen%c3%adt%c5%91 subprocess returned exit
  status 127

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

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

[Bug 1829620] Re: intel-microcode on ASUS makes kernel stuck during loading initramfs on bionic-updates, bionic-security

2020-02-11 Thread Bence Konya
Same issue.

DELL Latitude 5491 
Intel(R) Core(TM) i7-8850H CPU
BIOS version 1.11.11 (most recent at the time of writing this comment)

Is it a Linux or a Asus/Dell bug?

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

Title:
  intel-microcode on ASUS makes kernel stuck during loading initramfs on
  bionic-updates, bionic-security

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/intel-microcode/+bug/1829620/+subscriptions

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

[Bug 1856485] Re: ERROR neutron.manager [-] Plugin 'calico' not found.

2019-12-17 Thread Bence Romsics
FYI: Running openstack (master) with python2 will not work for long any
more since in ussuri we dropped support for it:

https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html

Most projects did not willingly broke python2 compatibility but dropped
python2 gate jobs, so it's only a question of time when it will become
actually broken.

On the other hand the train release is still supposed to work with
python2, so that maybe a workaround until calico makes the changes
mentioned by Neil above.

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

Title:
  ERROR neutron.manager [-] Plugin 'calico' not found.

To manage notifications about this bug go to:
https://bugs.launchpad.net/networking-calico/+bug/1856485/+subscriptions

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

[Bug 1814846] [NEW] Touchpad detected as PS/2 Generic Mouse

2019-02-05 Thread Bence Töreki
Public bug reported:

Hey!

My touchpad is not detected (most likely by the kernel).
It is a HP Folio 1020 G1 laptop with a Synaptics Forcepad touchpad that uses a 
MCHP85D9 microchip on the I2C bus AFAIK.


Related information:
https://www.bountysource.com/issues/35066387-synaptics-forcepad-working-as-generic-ps2-mouse-hp-folio-1020


Logs
devices https://pastebin.com/5KGeSMa4
xinput https://pastebin.com/0bxCy5r3
Xorg.0.log https://pastebin.com/hWWxDNZe

Thank you!

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: forcepad synaptic synaptics touchpad xinput

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

Title:
  Touchpad detected as PS/2 Generic Mouse

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1814846/+subscriptions

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

[Bug 1774487] Re: I'm still using 12.04 because 'dist-upgrade' fails.

2018-05-31 Thread Bence Zsolt Burai
** Changed in: update-manager (Ubuntu)
 Assignee: (unassigned) => Bence Zsolt Burai (bbence86)

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

Title:
  I'm still using 12.04 because 'dist-upgrade' fails.

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

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

[Bug 1774487] [NEW] I'm still using 12.04 because 'dist-upgrade' fails.

2018-05-31 Thread Bence Zsolt Burai
Public bug reported:

An unresolvable problem occurred while calculating the upgrade.

This can be caused by: 
* Upgrading to a pre-release version of Ubuntu 
* Running the current pre-release version of Ubuntu 
* Unofficial software packages not provided by Ubuntu

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: update-manager 1:0.156.14.22
ProcVersionSignature: Ubuntu 3.13.0-117.164~precise1-generic 3.13.11-ckt39
Uname: Linux 3.13.0-117-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.15
Architecture: amd64
Date: Thu May 31 21:15:57 2018
GsettingsChanges:
 
InstallationMedia: Ubuntu 12.04.5 LTS "Precise Pangolin" - Release amd64 
(20140807.1)
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: update-manager
Symptom: ubuntu-release-upgrader-core
UpgradeStatus: Upgraded to precise on 2018-05-31 (0 days ago)

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


** Tags: amd64 apport-bug dist-upgrade precise third-party-packages

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

Title:
  I'm still using 12.04 because 'dist-upgrade' fails.

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

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

[Bug 478649] Re: Files named cifsxxxx (x is various numbers) suddenly appear in many directories of cif mounts

2017-07-13 Thread Bence
This bug is still around. Running KUbuntu 16.04 LTS (kernel 4.4.0-83-generic) 
with mount.cifs version: 6.4
During my research, I found this explanation from 2007 on the samba.org mailing 
list: 
https://lists.samba.org/archive/linux-cifs-client/2007-September/002214.html
But it doesn't answer the question of how to remove them. I have tried 
remounting, which didn't fix the problem. Then I restarted both the CIFS client 
and the server too, without success.

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

Title:
  Files named cifs (x is various numbers) suddenly appear in many
  directories of cif mounts

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

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


[Bug 1585084] Re: Volume notification keeps popping up constantly (the notify-OSD bubble on top-right corner)

2017-06-21 Thread Bence Ágg
Unfortunately I'm experiencing the same problem but with 17.04. The only
difference to the previous reports that volume adjustment is happening
in almost every second and the notification popup is visible constantly
(it is flickering when the volume adjustment happens). So it is quite
annoying. When I remove my headphones from the front audio jack, the
autonomous volume adjusting stops. Interestingly i have never had
similar problems with any of the previous versions of Ubuntu (starting
from 12.04).

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

Title:
  Volume notification keeps popping up constantly (the notify-OSD bubble
  on top-right corner)

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

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


[Bug 1691717] [NEW] the installer crashed

2017-05-18 Thread Bence Ladoczki
Public bug reported:

the installer crashed

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubiquity 2.21.63.2
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CasperVersion: 1.376
Date: Thu May 18 18:56:10 2017
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
LiveMediaBuild: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug ubiquity-2.21.63.2 ubuntu xenial

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

Title:
  the installer crashed

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

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


[Bug 1411285] [NEW] ASUS X750LB can't detect touchpad

2015-01-15 Thread Bence Santha
Public bug reported:

Hello,

I update ASUS X750LB bios to latest, but Ubuntu can't detect the
touchpad.

dani@Daniel-PC:~$ sudo dmidecode -s bios-version  sudo dmidecode -s 
bios-release-date
211
03/07/2014

dani@Daniel-PC:~$ cat /proc/version_signature
Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12

dani@Daniel-PC:~$ lspci
00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated 
Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation Lynx Point-LP USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation Lynx Point-LP HECI #0 (rev 
04)
00:1b.0 Audio device: Intel Corporation Lynx Point-LP HD Audio Controller (rev 
04)
00:1c.0 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 1 
(rev e4)
00:1c.2 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 3 
(rev e4)
00:1c.3 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 4 
(rev e4)
00:1c.4 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 5 
(rev e4)
00:1d.0 USB controller: Intel Corporation Lynx Point-LP USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Lynx Point-LP LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Lynx Point-LP SATA Controller 1 
[AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Lynx Point-LP SMBus Controller (rev 04)
02:00.0 Network controller: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network 
Adapter
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 
PCI Express Gigabit Ethernet Controller (rev 0c)
04:00.0 3D controller: NVIDIA Corporation GK208M [GeForce GT 740M] (rev a1)

Please help!

Thank you.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-44-generic 3.13.0-44.73
ProcVersionSignature: Ubuntu 3.13.0-44.73-generic 3.13.11-ckt12
Uname: Linux 3.13.0-44-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  dani   2425 F pulseaudio
 /dev/snd/pcmC1D0p:   dani   2425 F...m pulseaudio
 /dev/snd/controlC0:  dani   2425 F pulseaudio
CurrentDesktop: Unity
Date: Thu Jan 15 16:31:51 2015
HibernationDevice: RESUME=UUID=00faa6f2-1435-4e4a-b556-bb421e088e75
InstallationDate: Installed on 2015-01-14 (1 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
MachineType: ASUSTeK COMPUTER INC. X750LB
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-44-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-44-generic N/A
 linux-backports-modules-3.13.0-44-generic  N/A
 linux-firmware 1.127.11
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
StagingDrivers: keucr
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/07/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 211
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: X750LB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr211:bd03/07/2014:svnASUSTeKCOMPUTERINC.:pnX750LB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX750LB:rvr1.0:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: X750LB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug staging trusty

** Attachment added: lspci-vnvn.log
   
https://bugs.launchpad.net/bugs/1411285/+attachment/4299246/+files/lspci-vnvn.log

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

Title:
  ASUS X750LB can't detect touchpad

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

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


[Bug 1411285] Re: ASUS X750LB can't detect touchpad

2015-01-15 Thread Bence Santha
(update: Tag ok!)

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

Title:
  ASUS X750LB can't detect touchpad

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

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


[Bug 1411285] Re: ASUS X750LB can't detect touchpad

2015-01-15 Thread Bence Santha
Hello!

I tested on v3.19 kernel, but problem hasn't solved. It would seems my
ASUS X750LB Notebook is badly support the Linux because ASUS prefer
support the Windows (only Win7,Win8) :-(.

Excuse me, this is my first bugreport. How to add tag? #kernel-bug-
exists-upstream

Thanks!

** Tags added: kernel-bug-exists-upstream

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

Title:
  ASUS X750LB can't detect touchpad

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

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


[Bug 1351879] [NEW] There is no @ key on default LTE 14.04.1 install with hungarian keyboard

2014-08-03 Thread Bence
Public bug reported:

With hungarian keyboard layout there is a problem some ALTGR+key combination 
like ALTGR+v (@), ALTGR+b ({) and so on. The problem occur with any interface I 
use in X (terminal, browser, editor). There is no way to get work ALTRGR 
correctly.
I tried to do suggestions in 
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1284635 by 
https://launchpad.net/~agent-ryan (go to Preferences → Language Suport and on 
Language tab set Keyboard input method system to none. Then reboot 
system).
It doesn't solve the problem.

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

** Description changed:

- With hungarian keyboard layout there is a problem some ALTGR+key combination 
like ALTGR+v (@), ALTGR+b ({) and so on. the problem is that any interface i 
use in X (terminal, browser, editor) there are no way to get work ALTRGR 
correctly.
- I tried to do suggestions in 
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1284635 by 
https://launchpad.net/~agent-ryan (go to Preferences → Language Suport and on 
Language tab set Keyboard input method system to none. Then reboot 
system). 
- I doesn't solve the problem.
+ With hungarian keyboard layout there is a problem some ALTGR+key combination 
like ALTGR+v (@), ALTGR+b ({) and so on. The problem occur with any interface I 
use in X (terminal, browser, editor). There is no way to get work ALTRGR 
correctly.
+ I tried to do suggestions in 
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1284635 by 
https://launchpad.net/~agent-ryan (go to Preferences → Language Suport and on 
Language tab set Keyboard input method system to none. Then reboot 
system).
+ It doesn't solve the problem.

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

Title:
  There is no @ key on default LTE 14.04.1 install with hungarian
  keyboard

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

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

[Bug 1211932] Re: [Lenovo S431: GPU Radeon HD 8670A] fails: rendercheck test.

2014-02-24 Thread Bence Lukács
Which driver have you installed? A tried to install the latest stable
catalyst driver, from the website of AMD, which should support this
video card, but after I installed this, I can't see the login screen,
only a cursor on a blank black screen...

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

Title:
  [Lenovo S431: GPU Radeon HD 8670A] fails: rendercheck test.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1211932/+subscriptions

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


[Bug 878836] Re: Unity Greeter - Use Unity Greeter to fulfil lock screen as well as login functions

2014-02-04 Thread Bence Lukács
This bug is still active since Oneiric, it should be fixed by now...
There were videos about this feature during the developement of Precise.
The gnome-screensaver is uglier than the current unity-greeter, why can't we 
use it as a lock screen?

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

Title:
  Unity Greeter - Use Unity Greeter to fulfil lock screen as well as
  login functions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/878836/+subscriptions

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


[Bug 1246018] Re: Unity 3D. Corrupted display at first login after the lates update

2013-10-30 Thread Kis Z. Bence
Probably I've a similar problem.
After the latest update (I updated on 29 Oct) the Unity 3D desktop background 
is black.
If a window was opened, then closed or minimized the picture of the window 
remains as background (little bit confusing).
Unity 2D works fine.

I use 64 bit Ubuntu 12.04.

If this is a different issue, I can open a new report for that.

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

Title:
  Unity 3D. Corrupted display at first login after the lates update

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

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


[Bug 1246018] Re: Unity 3D. Corrupted display at first login after the lates update

2013-10-30 Thread Kis Z. Bence
For me it seems the app Nemo causes the problem.
Since I killed the nemo process running in the background, the desktop is fine 
again.

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

Title:
  Unity 3D. Corrupted display at first login after the lates update

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

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


[Bug 1242918] [NEW] Writing metadata is not supported for CR2

2013-10-21 Thread Kis Z. Bence
Public bug reported:

I tried to write metadata to RAW CR2 files in digikam, but without
success (it worked for JPG).

When I started digikam from console I got the following:
digikam(4116)/KEXIV2 KExiv2Iface::KExiv2::Private::printExiv2ExceptionError: 
Cannot find Xmp key 'Xmp.mwg-rs.Regions/mwg-rs:RegionList[0]/mwg-rs:Name' into 
image using Exiv2 (Error # 35 : No namespace info available for XMP prefix 
`mwg-rs' digikam(4116)/KEXIV2 KExiv2Iface::KExiv2::getXmpTagStringSeq: XMP 
String Seq ( Xmp.digiKam.TagsList ): (Betti, Próba) digikam(4116)/KEXIV2 
KExiv2Iface::KExiv2::setIptcKeywords: /home/kisben/Képek/új/IMG_2590.CR2 == 
Iptc Keywords: Betti,Emberek,Próba digikam(4116)/KEXIV2 
KExiv2Iface::KExiv2::save: KExiv2::metadataWritingMode 0 digikam(4116)/KEXIV2 
KExiv2Iface::KExiv2::save: Will write Metadata to file IMG_2590.CR2 
digikam(4116)/KEXIV2 KExiv2Iface::KExiv2::Private::saveOperations: Writing 
metadata is not supported for file IMG_2590.CR2 digikam(4116)/KEXIV2 
KExiv2Iface::KExiv2::save: Metadata for file IMG_2590.CR2 written to file.

NOTE:
I already reported the problem to digikam 
(https://bugs.kde.org/show_bug.cgi?id=326408), but they closed as the problem 
is in libexiv2.

If this is not the right place to report, pls write me where I can
report the problem.

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


** Tags: cr2 libexiv2 raw

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

Title:
  Writing metadata is not supported for CR2

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

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

[Bug 1148033] Re: GDBus.Error:org.openobex:Error.Failed: Unable to request session

2013-06-18 Thread Bence Lukács
The bug also affects me on Ubuntu 13.04

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

Title:
  GDBus.Error:org.openobex:Error.Failed: Unable to request session

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

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


[Bug 1183240] [NEW] Gmail webapp stay on the launcher after I closed the tab

2013-05-23 Thread Bence Lukács
Public bug reported:

After I closed the Gmail tab on Firefox, the Gmail icon stay active on the 
launcher. It show, that Gmail is still running, but when I click on it, then 
Firefox crash.
I use Firefox version 21.0+build2-0ubuntu0.13.04.2 and unity-webapps-gmail 
version 2.4.7

** Affects: unity-webapps-gmail (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Gmail webapp stay on the launcher after I closed the tab

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1183240/+subscriptions

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


[Bug 1068713] Re: there is no opportunity to translate the quicklist of the unity-webapps-gmail

2013-05-23 Thread Bence Lukács
That's not a bug, here https://translations.launchpad.net/webapps we can 
translate all of the webapps.
Sorry for the inattention.

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

Title:
  there is no opportunity to translate the quicklist of the unity-
  webapps-gmail

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/1068713/+subscriptions

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


[Bug 1068713] Re: there is no opportunity to translate the quicklist of the unity-webapps-gmail

2013-05-23 Thread Bence Lukács
That's not a bug, here https://translations.launchpad.net/webapps you
can translate all of the webapps.

** Changed in: unity-webapps-gmail (Ubuntu)
   Status: New = Fix Released

** Changed in: ubuntu-translations
   Status: New = Fix Released

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

Title:
  there is no opportunity to translate the quicklist of the unity-
  webapps-gmail

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/1068713/+subscriptions

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


[Bug 1076905] Re: Gmail webapp integration only works fine if english launguage is set

2013-05-23 Thread Bence Lukács
This bug still affects me on 13.04, unity-webapps-gmail version 2.4.7.
However belloswan's script works for me too! It should be accepted.

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

Title:
  Gmail webapp integration only works fine if english launguage is set

To manage notifications about this bug go to:
https://bugs.launchpad.net/webapps-applications/+bug/1076905/+subscriptions

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


[Bug 1179325] Re: gmail webapp not showing notifications on launcher

2013-05-23 Thread Bence Lukács
Only the count badge doesn't work? If not, then this bug could be the duplicate 
of this
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1076905 bug.

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

Title:
  gmail webapp not showing notifications on launcher

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1179325/+subscriptions

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


[Bug 1069576] Re: Parsing of unread count only works in English, original GMail (not e.g. German GApps)

2013-05-23 Thread Bence Lukács
Isn't this bug the duplicate of
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1076905
this bug?

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

Title:
  Parsing of unread count only works in English, original GMail (not
  e.g. German GApps)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1069576/+subscriptions

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


[Bug 1183267] [NEW] Gmail webapp shouldn't show badge if there is no new message

2013-05-23 Thread Bence Lukács
Public bug reported:

Gmail webapp always show the count badge, even there is 0 new messages. It's 
quite annoying, it should be hidden, when it show 0.
I use unity-webapps-gmail version 2.4.7

** Affects: unity-webapps-gmail (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Gmail webapp shouldn't show badge if there is no new message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1183267/+subscriptions

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


[Bug 1069576] Re: Parsing of unread count only works in English, original GMail (not e.g. German GApps)

2013-05-23 Thread Bence Lukács
Oh, sorry, then the other bug is the duplicate of this one :)

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

Title:
  Parsing of unread count only works in English, original GMail (not
  e.g. German GApps)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1069576/+subscriptions

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


[Bug 1087820] Re: unity-webapps-youtube doesn't work with the new youtube interface

2013-02-04 Thread Bence Lukács
This bug still affect me, after the youtube have renewed its interface
the youtube webapp doesn't work properly. I see the icon on the
launcher, but there is nothing in the sound menu.

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

Title:
  unity-webapps-youtube doesn't work with the new youtube interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-youtube/+bug/1087820/+subscriptions

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


[Bug 1087820] [NEW] unity-webapps-youtube doesn't work with the new youtube interface

2012-12-07 Thread Bence Lukács
Public bug reported:

The youtube-webapp doesn't work with the new youtube interface. It doesn't 
recognize that I'm on a youtube page either.
I use unity-webapps-youtube version 2.4.10 and Ubuntu 12.10

** Affects: unity-webapps-youtube (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  unity-webapps-youtube doesn't work with the new youtube interface

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-youtube/+bug/1087820/+subscriptions

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


[Bug 1074056] [NEW] there are untranslatable strings in the Online Accounts

2012-11-01 Thread Bence Lukács
Public bug reported:

In the two attached screenshot you can see two bugs.
In the first one under Shotwell the „Publish your pictures to Picasa” string 
can't be translated, or at least I could find it.
In the second one under Gwibber the „Integrate your feed data” string is in the 
same situation like the first one.
http://ubuntuone.com/3T3UMPRCwxnDcQWjdSQsJF
http://ubuntuone.com/6Jp5ocOorp3xgJhnSKXdLu

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

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

Title:
  there are untranslatable strings in the Online Accounts

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

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

[Bug 1059047] Re: Grooveshark webapp doesn't work with Firefox

2012-10-21 Thread Bence Lukács
It has to be mentioned, that sometimes it works, but in most cases the
webapp is unusable.

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

Title:
  Grooveshark webapp doesn't work with Firefox

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-grooveshark/+bug/1059047/+subscriptions

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


[Bug 1065947] Re: on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

2012-10-21 Thread Bence Lukács
I've installed the final release of 12.10, and now everything works flawlessly.
I marked the bug as Invalid, though it can't be reproduced anymore.
Thanks for you patience!

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

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

Title:
  on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

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

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


[Bug 928553] Re: Non-default wallpapers are not readable by Unity-Greeter

2012-10-21 Thread Bence Lukács
I realized, that this bug still exist in Quantal.
It has to be fixed for now...

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

Title:
  Non-default wallpapers are not readable by Unity-Greeter

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

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


[Bug 1068713] [NEW] there is no opportunity to translate the quicklist of the unity-webapps-gmail

2012-10-19 Thread Bence Lukács
Public bug reported:

Gmail webapp icon on the launcher has quicklist, but the strings are english in 
it.
Please provide a way to translate them.

** Affects: unity-webapps-gmail (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  there is no opportunity to translate the quicklist of the unity-
  webapps-gmail

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1068713/+subscriptions

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


[Bug 1065947] Re: on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

2012-10-16 Thread Bence Lukács
Now it boot with kernel version 3.5.0-16, but with a wrong resolution, and it 
didn't recognize my wifi card.
I'll install the system again, when it will be released and, then I'll write if 
it works or not.
Please be patient.

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

Title:
  on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

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

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


[Bug 1065947] Re: on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

2012-10-14 Thread Bence Lukács
I tried all the installed kernels, but now all of them have this bug,
even version 3.5.0-12.

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

Title:
  on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

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

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


[Bug 1065947] [NEW] on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

2012-10-12 Thread Bence Lukács
Public bug reported:

On Ubuntu 12.10 I can't reach lightdm with kernel version 3.5.0-17.
Until kernel version 3.5.0-12 I can use it, but now with this kernel I get an 
error message too, when the lightdm should appear.
It offer me to run Ubuntu in low-graphic mode, reconfigure etc. but I can't 
click on the options.
My videocard is 00:02.0 VGA compatible controller: Intel Corporation Mobile 4 
Series Chipset Integrated Graphics Controller (rev 07)
If any additional information is needed feel free to ask about it.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Incomplete


** Tags: quantal

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

Title:
  on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

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

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


[Bug 1065947] Re: on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

2012-10-12 Thread Bence Lukács
No, it doesn't. I tried kernel version 3.5.0-16, and this was the first kernel 
which didn't load GUI.
And due to the fact I don't have a GUI I can't run the apport-collect 1065947 
command...

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

Title:
  on acer extensa 5235 Ubuntu 12.10 quantal can't load GUI

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

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


[Bug 1064332] [NEW] shotwell freeze when trying to save image

2012-10-09 Thread Bence Lukács
Public bug reported:

Shotwell freeze every time when I want to save the image after a modification.
In addition it takes a lot of time time save images.
I use Shotwell 0.13.0-0ubuntu3 on Ubuntu 12.10.

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

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

Title:
  shotwell freeze when trying to save image

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

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


[Bug 1058996] [NEW] unity-webapps-youtube can't handle more than one youtube pages

2012-09-30 Thread Bence Lukács
Public bug reported:

If I open one youtube page there's no problem, but when I open the second one 
the integrated player in the sound indicator show the second title, and the 
Play/Pause button go crazy. I think the player should show the title of the 
video which is currently played or the second youtube page should have another 
player in the sound menu. Now if I click on the play button the first video 
stop and the second one start, and vice versa if I do it again.
For more information see the attached video.

** Affects: unity-webapps-youtube (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  unity-webapps-youtube can't handle more than one youtube pages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-youtube/+bug/1058996/+subscriptions

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


[Bug 1058996] Re: unity-webapps-youtube can't handle more than one youtube pages

2012-09-30 Thread Bence Lukács
** Attachment added: Video about the bug
   
https://bugs.launchpad.net/bugs/1058996/+attachment/3357896/+files/unity-webapps-youtube.mp4

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

Title:
  unity-webapps-youtube can't handle more than one youtube pages

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-youtube/+bug/1058996/+subscriptions

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


[Bug 686436] Re: on larger than monitor images the program doesn't resize to screen

2012-09-30 Thread Bence Lukács
I didn't want to open another bug, so I am here to say this bug still exist.
On Precise and Quantal if I try to open an image which is larger than my screen 
(1366x768) the window of eog doesn't fit the screen, I can't see the statusbar, 
and sometimes a big part of an image.
I hope you can find a solution now, because it is very annoying that I have to 
resize the window every time...

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

Title:
  on larger than monitor images the program doesn't resize to screen

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

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


[Bug 1059093] [NEW] message indicator icon should became blue when there is new post on g+

2012-09-30 Thread Bence Lukács
Public bug reported:

I think the message indicator icon should be changed to blue when there
is new post on G+, because for some reason I miss the notification, I
won't be notified about the post, there are no launcher counter too.

** Affects: unity-webapps-googleplus (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  message indicator icon should became blue when there is new post on g+

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-googleplus/+bug/1059093/+subscriptions

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


[Bug 1059051] Re: Gmail Webapp doesn't work

2012-09-30 Thread Bence Lukács
Same here.

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

Title:
  Gmail Webapp doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-webapps-gmail/+bug/1059051/+subscriptions

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


[Bug 1055953] [NEW] deluge, deluge-gtk crashes with TypeError: object of type `AppIndicator' does not have property `title'

2012-09-24 Thread Bence Magyar
Public bug reported:

Yesterday I did migrate from Ubuntu 11.04 to Ubuntu 12.04 to find out
that Deluge is no longer working. It was crashing on startup. I tried
starting it from terminal with deluge, deluge-gtk commands and found out
the error.


Traceback (most recent call last):
  File /usr/bin/deluge-gtk, line 9, in module
load_entry_point('deluge==1.3.5', 'gui_scripts', 'deluge-gtk')()
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/gtkui.py, line 115, 
in start
Gtk().start()
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/gtkui.py, line 112, 
in start
GtkUI(self.args)
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/gtkui.py, line 236, 
in __init__
self.systemtray = SystemTray()
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/systemtray.py, line 
70, in __init__
self.on_enable_system_tray_set)
  File /usr/lib/python2.7/dist-packages/deluge/config.py, line 312, in 
register_set_function
function(key, self.__config[key])
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/systemtray.py, line 
329, in on_enable_system_tray_set
self.enable()
  File /usr/lib/python2.7/dist-packages/deluge/ui/gtkui/systemtray.py, line 
112, in enable
self.indicator.set_property (title, _(Deluge))
TypeError: object of type `AppIndicator' does not have property `title'

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

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

Title:
  deluge, deluge-gtk crashes with TypeError: object of type
  `AppIndicator' does not have property `title'

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

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


[Bug 1055953] Re: deluge, deluge-gtk crashes with TypeError: object of type `AppIndicator' does not have property `title'

2012-09-24 Thread Bence Magyar
Solution: sudo apt-get install gir1.2-appindicator*
Missing package dependency for deluge.

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

Title:
  deluge, deluge-gtk crashes with TypeError: object of type
  `AppIndicator' does not have property `title'

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

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


[Bug 1042701] [NEW] Banshee got a fatal error: Exception has been thrown by the target of an invocation.

2012-08-28 Thread Bence Lukács
Public bug reported:

I try to open Banshee, but it encountered a fatal error.
This is the output:

Kezeletlen kivétel történt: Sqlite error 13: database or disk is full
(SQL: UPDATE CorePrimarySources SET CachedCount = 1012 WHERE
PrimarySourceID = 1)

  at Hyena.Data.Sqlite.Connection.CheckError (Int32 errorCode, System.String 
sql) [0x0] in filename unknown:0 
  at Hyena.Data.Sqlite.Connection.Execute (System.String sql) [0x0] in 
filename unknown:0 
  at Hyena.Data.Sqlite.HyenaSqliteCommand.Execute 
(Hyena.Data.Sqlite.HyenaSqliteConnection hconnection, 
Hyena.Data.Sqlite.Connection connection) [0x0] in filename unknown:0 
Exception has been thrown by the target of an invocation.

  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags 
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, 
System.Globalization.CultureInfo culture) [0x0] in filename unknown:0 
  at System.Reflection.MonoCMethod.Invoke (BindingFlags invokeAttr, 
System.Reflection.Binder binder, System.Object[] parameters, 
System.Globalization.CultureInfo culture) [0x0] in filename unknown:0 
  at System.Reflection.ConstructorInfo.Invoke (System.Object[] parameters) 
[0x0] in filename unknown:0 
  at System.Activator.CreateInstance (System.Type type, Boolean nonPublic) 
[0x0] in filename unknown:0 
  at System.Activator.CreateInstance (System.Type type) [0x0] in filename 
unknown:0 
  at Banshee.Gui.GtkBaseClient.Startup () [0x0] in filename unknown:0 
  at Hyena.Gui.CleanRoomStartup.Startup (Hyena.Gui.StartupInvocationHandler 
startup) [0x0] in filename unknown:0 

.NET Version: 4.0.30319.1
OS Version: Unix 3.2.0.29

Assembly Version Information:

notify-sharp (0.4.0.0)
Banshee.SoundMenu (2.4.0.0)
gkeyfile-sharp (1.0.0.0)
Banshee.OpticalDisc (2.4.0.0)
Banshee.MultimediaKeys (2.4.0.0)
Banshee.Mpris (2.4.0.0)
Banshee.Dap (2.4.0.0)
Banshee.Daap (2.4.0.0)
Banshee.CoverArt (2.4.0.0)
Banshee.Bpm (2.4.0.0)
zeitgeist-sharp (0.8.0.0)
Banshee.ZeitgeistDataprovider (2.4.0.0)
Banshee.LastfmFingerprint (2.4.0.0)
Banshee.OpenVP.Visualizations (2.4.0.0)
OpenVP.Core (2.4.0.0)
OpenVP (2.4.0.0)
Banshee.OpenVP (2.4.0.0)
Banshee.LCD (2.4.0.0)
Banshee.AlbumArtWriter (2.4.0.0)
Banshee.YouTube (2.4.0.0)
Banshee.Lastfm (2.4.0.0)
Banshee.WebBrowser (2.4.0.0)
Banshee.Lyrics (2.4.0.0)
pango-sharp (2.12.0.0)
Mono.Cairo (4.0.0.0)
Banshee.Fixup (2.4.0.0)
Banshee.DuplicateSongDetector (2.4.0.0)
Lastfm (2.4.0.0)
Banshee.RandomByLastfm (2.4.0.0)
Banshee.Widgets (2.4.0.0)
gio-sharp (2.14.0.0)
gudev-sharp (1.0.0.0)
Banshee.Gio (2.4.0.0)
Banshee.GStreamer (2.4.0.0)
System.Configuration (4.0.0.0)
gconf-sharp (2.24.0.0)
Banshee.Gnome (2.4.0.0)
Banshee.NowPlaying (2.4.0.0)
System.Xml (4.0.0.0)
Banshee.Core (2.4.0.0)
Hyena.Data.Sqlite (2.4.0.0)
gdk-sharp (2.12.0.0)
Mono.Addins (0.6.0.0)
atk-sharp (2.12.0.0)
Hyena.Gui (2.4.0.0)
Mono.Posix (4.0.0.0)
gtk-sharp (2.12.0.0)
Banshee.ThickClient (2.4.0.0)
Nereid (2.4.0.0)
DBus.Proxies (0.0.0.0)
dbus-sharp-glib (1.0.0.0)
System.Core (4.0.0.0)
Hyena (2.4.0.0)
dbus-sharp (1.0.0.0)
glib-sharp (2.12.0.0)
System (4.0.0.0)
Banshee.Services (2.4.0.0)
Banshee (2.4.0.0)
mscorlib (4.0.0.0)

Platform Information: Linux 3.2.0-29-generic-pae i686 i386 GNU/Linux

Disribution Information:

[/etc/lsb-release]
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION=Ubuntu 12.04.1 LTS

[/etc/debian_version]
wheezy/sid

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

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

Title:
  Banshee got a fatal error: Exception has been thrown by the target of
  an invocation.

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

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

[Bug 1021900] Re: psensor should show a proper Celsius degree symbol

2012-08-08 Thread Bence Lukács
Steve, yes the package in the proposed repo (0.6.2.16-1ubuntu4.1) fixes
the problem.

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

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

Title:
  psensor should show a proper Celsius degree symbol

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

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


[Bug 1030970] [NEW] In software-properties the last line aligned center (Source code)

2012-07-30 Thread Bence Lukács
Public bug reported:

I don't know it's by a mistake or not, so that's why I report this bug.
About the problem see the attached screenshot. The problem is with the 
Forráskód string.

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


** Tags: quantal

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

Title:
  In software-properties the last line aligned center (Source code)

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

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

[Bug 1030970] Re: In software-properties the last line aligned center (Source code)

2012-07-30 Thread Bence Lukács
** Attachment added: Screenshot about the problem
   
https://bugs.launchpad.net/bugs/1030970/+attachment/3242515/+files/software-properties-gtk.png

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

Title:
  In software-properties the last line aligned center (Source code)

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

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


[Bug 1019780] Re: Indicators - lost theme and become white

2012-07-08 Thread Bence Lukács
Also affects me, but I didn't upgrade from Precise, I did a fresh install 
(Quantal Alpha 2).
Now my system is up-to-date, but the bug still exist.

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

Title:
  Indicators - lost theme and become white

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/1019780/+subscriptions

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


[Bug 1019780] Re: Indicators - lost theme and become white

2012-07-08 Thread Bence Lukács
Isn't this bug a duplicate of this bug: 
https://bugs.launchpad.net/ubuntu/quantal/+source/indicator-messages/+bug/1015488
 ?
I think so...

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

Title:
  Indicators - lost theme and become white

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/light-themes/+bug/1019780/+subscriptions

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


[Bug 1021900] Re: psensor should show a proper Celsius degree symbol

2012-07-06 Thread Bence Lukács
Thanks a lot for the patch! I hope I can see the fix in the near future
also for precise and quantal. :-)

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

Title:
  psensor should show a proper Celsius degree symbol

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

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


[Bug 1021900] Re: psensor should show a proper Celsius degree symbol

2012-07-06 Thread Bence Lukács
And I don't think it is neccesary to provide the debdiff for Quantal...

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

Title:
  psensor should show a proper Celsius degree symbol

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

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


[Bug 1019581] Re: update-apt-xapian-index crashed with ImportError in /usr/share/apt-xapian-index/plugins/software-center.py: cannot import name index_name

2012-07-01 Thread Bence Lukács
Also affects me on 12.10 Quantal.

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

Title:
  update-apt-xapian-index crashed with ImportError in /usr/share/apt-
  xapian-index/plugins/software-center.py: cannot import name index_name

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

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


[Bug 905686] Re: nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID: Assertion `ret != inval_id' failed.

2012-06-29 Thread Bence Lukács
The bug affects me on 12.10 Quantal too.

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

Title:
  nautilus assert failure: nautilus: ../../src/xcb_io.c:528: _XAllocID:
  Assertion `ret != inval_id' failed.

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

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


[Bug 976020] Re: vlc crashed with SIGSEGV in MP4_TrackGetDTS()

2012-05-26 Thread Bence Lukács
@rdenis, sorry I can't send to you the video file, because it's not public. :-(
I attach the details about the file.
I can tell anything more about it, if it'll help.

** Attachment added: vlcvideoproblem-movfile.png
   
https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/976020/+attachment/3163934/+files/vlcvideoproblem-movfile.png

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

Title:
  vlc crashed with SIGSEGV in MP4_TrackGetDTS()

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

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


[Bug 982485] Re: [regression] Nvidia 295.40: Unity 3D does not work at all with the new nvidia driver

2012-05-13 Thread Bence Lukács
Just I think that this bug doesn't affect project unity?
It rather connected to compiz...

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

Title:
  [regression] Nvidia 295.40: Unity 3D does not work at all with the new
  nvidia driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia-drivers-ubuntu/+bug/982485/+subscriptions

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


[Bug 982485] Re: [regression] Nvidia 295.40: Unity 3D does not work at all with the new nvidia driver

2012-05-13 Thread Bence Lukács
Anyway nvidia-current 295.49 solved my problem. I have an nVidia 6100
graphics card.

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

Title:
  [regression] Nvidia 295.40: Unity 3D does not work at all with the new
  nvidia driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia-drivers-ubuntu/+bug/982485/+subscriptions

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


[Bug 678103] Re: Dell Inspiron N Series, Touchpad recognised as generic PS/2 mouse

2012-05-04 Thread Bence Lukács
This bug is still present on Precise.
The psmouse-alps-0.10.deb doesn't work for me, I think becasue Precise has a 
new kernel.
Any idea how can I use this touchpad properly?

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

Title:
  Dell Inspiron N Series, Touchpad recognised as generic PS/2 mouse

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

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


[Bug 991724] [NEW] shotwell always appears wrongly

2012-04-30 Thread Bence Lukács
Public bug reported:

When I started shotwell the bottom toolbar doesn't appear, until I minimize and 
then maximize the windows again.
See the attached screenshot.
Ubuntu Precise Pangolin
Shotwell 0.12.2

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

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

Title:
  shotwell always appears wrongly

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

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


[Bug 991724] Re: shotwell always appears wrongly

2012-04-30 Thread Bence Lukács
** Attachment added: wrong.png
   https://bugs.launchpad.net/bugs/991724/+attachment/3118871/+files/wrong.png

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

Title:
  shotwell always appears wrongly

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

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


[Bug 991724] Re: shotwell always appears wrongly

2012-04-30 Thread Bence Lukács
And looks like this after the unmaximize/maximize:

** Attachment added: after.png
   
https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/991724/+attachment/3118872/+files/after.png

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

Title:
  shotwell always appears wrongly

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

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


[Bug 933776] Re: Unity overrides compiz scale plugin behavior settings

2012-04-20 Thread Bence Lukács
@luxmedien Yes, it may be a compiz bug, but gnome-shell doesn't use
compiz...

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

Title:
  Unity overrides compiz scale plugin behavior settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz-core/+bug/933776/+subscriptions

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


[Bug 977948] [NEW] quicklist of k3b can't be translated

2012-04-10 Thread Bence Lukács
Public bug reported:

In Precise the quicklist of k3b can't be translated.
See the attached screenshot.

** Affects: ubuntu-translations
 Importance: Medium
 Status: Triaged

** Affects: k3b (Ubuntu)
 Importance: Undecided
 Status: Confirmed

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

Title:
  quicklist of k3b can't be translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/977948/+subscriptions

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


[Bug 977948] Re: quicklist of k3b can't be translated

2012-04-10 Thread Bence Lukács
** Attachment added: Screenshot about the problem
   
https://bugs.launchpad.net/bugs/977948/+attachment/3039639/+files/k3b-quicklist.png

** Also affects: ubuntu-translations
   Importance: Undecided
   Status: New

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

Title:
  quicklist of k3b can't be translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/977948/+subscriptions

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


[Bug 964518] [NEW] remmina should get a monochrome indicator icon

2012-03-25 Thread Bence Lukács
Public bug reported:

In Precise remmina will replace vinagre, and it will be installed by
default. Thanks to this I think it would be nice if remmina got a nicer
icon and a monochrome indicator icon. The currently used icon is very
ugly. See the attached screenshot.

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

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

Title:
  remmina should get a monochrome indicator icon

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

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


[Bug 964518] Re: remmina should get a monochrome indicator icon

2012-03-25 Thread Bence Lukács
** Attachment added: Screenshot about the problem
   https://bugs.launchpad.net/bugs/964518/+attachment/2934138/+files/remmina.png

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

Title:
  remmina should get a monochrome indicator icon

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

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


[Bug 964074] Re: Type your command does not appear translated in the HUD

2012-03-24 Thread Bence Lukács
** Changed in: unity
   Status: New = Confirmed

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

Title:
  Type your command does not appear translated in the HUD

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/964074/+subscriptions

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


[Bug 959589] Re: nautilus quicklist Cancel all in-progress action can't be translated

2012-03-19 Thread Bence Lukács
** Attachment added: nautilus-quicklist.png
   
https://bugs.launchpad.net/bugs/959589/+attachment/2899033/+files/nautilus-quicklist.png

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

Title:
  nautilus quicklist Cancel all in-progress action can't be translated

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

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


[Bug 959589] [NEW] nautilus quicklist Cancel all in-progress action can't be translated

2012-03-19 Thread Bence Lukács
Public bug reported:

In the quicklist of nautilus, when you copy something, the Cancel all
in-progress action option appears, but it doesn't translated. I also
didn't find this string under here:
https://translations.launchpad.net/ubuntu/precise/+source/nautilus/+pots/nautilus/hu/+translate?batch=10show=allsearch=cancel

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

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

Title:
  nautilus quicklist Cancel all in-progress action can't be translated

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

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


[Bug 959589] Re: nautilus quicklist Cancel all in-progress action can't be translated

2012-03-19 Thread Bence Lukács
** Also affects: ubuntu-translations
   Importance: Undecided
   Status: New

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

Title:
  nautilus quicklist Cancel all in-progress action can't be translated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/959589/+subscriptions

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


[Bug 947031] Re: Rhythmbox becomes unresponsive when navigating through long song files using the progress bar

2012-03-17 Thread Bence Lukács
Also affects me on Precise, rhythmbox 2.96
I have a 41:19 long mp3 file, it's 100 mb, and if I try to navigate through the 
progress bar, it'll freeze, and the only thing I can to kill it.

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

Title:
  Rhythmbox becomes unresponsive when navigating through long song files
  using the progress bar

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

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


[Bug 957013] Re: Settings for string not translatable in the sound panel

2012-03-16 Thread Bence Lukács
Also affects me.

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

Title:
  Settings for string not translatable in the sound panel

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/957013/+subscriptions

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


[Bug 952251] [NEW] translated texts isn't displayed correctly

2012-03-11 Thread Bence Lukács
Public bug reported:

On Precise the gnome-control-center doesn't display the translated texts (for 
example hungarian texts) correctly.
In some case (I think probably when the texts are too long) the texts aren't 
centered or the end of the word is simply cutted.
I attach a screenshot to show what I'm talking about.
The problem exist in the texts of Accessibility (Akadálymentesítés), Keyboard 
Layout (Billentyűzetkiosztás), Power (Energiagazdálkodás) and Additional 
Drivers (További illesztőprogramok)

Gnome-control-center: 1:3.3.91-0ubuntu3

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

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

Title:
  translated texts isn't displayed correctly

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

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

[Bug 952251] Re: translated texts isn't displayed correctly

2012-03-11 Thread Bence Lukács
** Attachment added: bug.png
   https://bugs.launchpad.net/bugs/952251/+attachment/2850687/+files/bug.png

** Description changed:

- On Precise the in the gnome-control-center doesn't display the translated 
texts (for example hungarian texts) correctly.
+ On Precise the gnome-control-center doesn't display the translated texts (for 
example hungarian texts) correctly.
  In some case (I think probably when the texts are too long) the texts aren't 
centered or the end of the word is simply cutted.
  I attach a screenshot to show what I'm talking about.
  The problem exist in the texts of Accessibility (Akadálymentesítés), Keyboard 
Layout (Billentyűzetkiosztás), Power (Energiagazdálkodás) and Additional 
Drivers (További illesztőprogramok)
  
  Gnome-control-center: 1:3.3.91-0ubuntu3

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

Title:
  translated texts isn't displayed correctly

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

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

[Bug 879659] Re: Minimize animation occurs behind other windows (should be in front)

2012-03-05 Thread Bence Lukács
Also affects me on Precise Beta 1 with compiz 0.9.7.0.

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

Title:
  Minimize animation occurs behind other windows (should be in front)

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz-plugins-main/+bug/879659/+subscriptions

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


[Bug 939769] Re: Most of the new Super+ bindings don't work

2012-03-05 Thread Bence Lukács
The same, these shortcuts doesn't work for me either.
Precise Beta 1, compiz  0.9.7.0.

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

Title:
  Most of the new Super+ bindings don't work

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

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


[Bug 939769] Re: Most of the new Super+ bindings don't work

2012-03-05 Thread Bence Lukács
In addition to this, for me Super + W sometimes broke the desktop, and
doesn't show anything for the first time.

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

Title:
  Most of the new Super+ bindings don't work

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

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


[Bug 933776] Re: Unity overrides compiz scale plugin behavior settings

2012-03-05 Thread Bence Lukács
Also affects me on Precise Beta 1, compiz 0.9.7.0.

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

Title:
  Unity overrides compiz scale plugin behavior settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/compiz-core/+bug/933776/+subscriptions

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


[Bug 901178] Re: Dash background doesn't update when a window closes

2012-03-05 Thread Bence Lukács
Also affects me on Precise, unity 5.4.0.
Very annoying...

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

Title:
  Dash background doesn't update when a window closes

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

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


[Bug 944798] [NEW] sound gone randomly

2012-03-02 Thread Bence Lukács
Public bug reported:

On Precise the soung gone randomly.
I don't know what trigger this, but this is very annoying.
If I reboot, the sound works again.
I report this bug, after the sound gone.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: pulseaudio 1:1.1-0ubuntu11
ProcVersionSignature: Ubuntu 3.2.0-17.27-generic-pae 3.2.6
Uname: Linux 3.2.0-17-generic-pae i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.93-0ubuntu2
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  lukibeni   4310 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf070 irq 45'
   Mixer name   : 'Conexant CX20561 (Hermosa)'
   Components   : 'HDA:14f15051,10250253,0010'
   Controls  : 18
   Simple ctrls  : 12
Date: Fri Mar  2 14:27:42 2012
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Alpha i386 (20120201.1)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=hu_HU.UTF-8
 SHELL=/bin/bash
SourcePackage: pulseaudio
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/09/2009
dmi.bios.vendor: Phoenix
dmi.bios.version: V0.3216
dmi.board.name: BA50-MV
dmi.board.vendor: Acer
dmi.board.version: Not Applicable
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenix:bvrV0.3216:bd06/09/2009:svnAcer:pnExtensa5235:pvrNotApplicable:rvnAcer:rnBA50-MV:rvrNotApplicable:cvnAcer:ct10:cvrN/A:
dmi.product.name: Extensa 5235
dmi.product.version: Not Applicable
dmi.sys.vendor: Acer

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


** Tags: apport-bug i386 precise

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

Title:
  sound gone randomly

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

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


[Bug 944798] Re: sound gone randomly

2012-03-02 Thread Bence Lukács
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/944798

Title:
  sound gone randomly

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

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


[Bug 940951] Re: Can't navigate Nautilus sidepane via keyboard

2012-03-01 Thread Bence Lukács
It works for me on Precise.
Nautilus: 3.3.90

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

Title:
  Can't navigate Nautilus sidepane via keyboard

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

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


[Bug 938605] Re: No way to cancel a drag in Nautilus

2012-03-01 Thread Bence Lukács
I can't reproduce this either.
It works for me properly.

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

Title:
  No way to cancel a drag in Nautilus

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

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


[Bug 924840] Re: Keyboard shortcuts overlay text too long

2012-03-01 Thread Bence Lukács
Sorry, here is the screenshot.

** Attachment added: shortcuts-overlay.png
   
https://bugs.launchpad.net/unity/+bug/924840/+attachment/2797240/+files/shortcuts-overlay.png

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

Title:
  Keyboard shortcuts overlay text too long

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

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


[Bug 754000] Re: Running Unity disables Xorg's 3-finger click support (middle click)

2012-03-01 Thread Bence Lukács
For me on Precise 3 finger tap doesn't work either.
It also doesn't work with unity2d.
If I tap three finger on the touchpad nothing happen.
I have a synaptics touchpad.
xserver-xorg-input-synaptics: 1.5.99~git20120223-0ubuntu1

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

Title:
  Running Unity disables Xorg's 3-finger click support (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+subscriptions

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


[Bug 925509] Re: In Small Display mode text isn't displayed correctly

2012-03-01 Thread Bence Lukács
I also noticed this bug, but in my case if the window is not in Small Display 
mode, the text is cut either.
I attach a screenshot, where you can see what am I talking about.
Is it possible to fix this bug until Precise?
Rhythmbox: 2.95-0ubuntu2

** Attachment added: rhythmbox.png
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/925509/+attachment/2797587/+files/rhythmbox.png

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

Title:
  In Small Display mode text isn't displayed correctly

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

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


[Bug 754000] Re: Running Unity disables Xorg's 3-finger click support (middle click)

2012-03-01 Thread Bence Lukács
Oh, thanks for the workaround.
So that means, that this bug won't be fixed in Precise?

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

Title:
  Running Unity disables Xorg's 3-finger click support (middle click)

To manage notifications about this bug go to:
https://bugs.launchpad.net/mactel-support/+bug/754000/+subscriptions

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


[Bug 349754] Re: XCHAT crashed in g_type_check_instance() after pressing ctrl-i numerous times

2012-02-29 Thread Bence Lukács
+1 Bryce, it is still exist in Precise.

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

Title:
  XCHAT crashed in g_type_check_instance() after pressing ctrl-i
  numerous times

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

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


[Bug 622120] Re: XChat become unresponsive when connection to server is lost.

2012-02-29 Thread Bence Lukács
This bug still exist in Precise.

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

Title:
  XChat become unresponsive when connection to server is lost.

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

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


  1   2   3   >