diff --git a/Screenshot from 2024-11-03 12-22-14.png b/Screenshot from 2024-11-03 12-22-14.png new file mode 100644 index 0000000..062f227 Binary files /dev/null and b/Screenshot from 2024-11-03 12-22-14.png differ diff --git a/Screenshot from 2024-11-03 12-34-24.png b/Screenshot from 2024-11-03 12-34-24.png new file mode 100644 index 0000000..6f43569 Binary files /dev/null and b/Screenshot from 2024-11-03 12-34-24.png differ diff --git a/Screenshot from 2024-11-03 12-35-24.png b/Screenshot from 2024-11-03 12-35-24.png new file mode 100644 index 0000000..b3bc5ec Binary files /dev/null and b/Screenshot from 2024-11-03 12-35-24.png differ diff --git a/Screenshot from 2024-11-03 12-35-38.png b/Screenshot from 2024-11-03 12-35-38.png new file mode 100644 index 0000000..3f115c0 Binary files /dev/null and b/Screenshot from 2024-11-03 12-35-38.png differ diff --git a/lib/Exd/DeviceToCatPrinter.pm b/lib/Exd/DeviceToCatPrinter.pm index d45f606..57539e2 100644 --- a/lib/Exd/DeviceToCatPrinter.pm +++ b/lib/Exd/DeviceToCatPrinter.pm @@ -92,8 +92,6 @@ sub connect_if_disconnected($self) { say 'Disconnected, trying to connect'; eval { $self->_adapter->StartDiscovery; - $self->_adapter->SetDiscoveryFilter( - { Transport => Net::DBus::dbus_string('le') } ); $self->_device->Pair; eval { $self->_device->Connect; }; }; diff --git a/lib/Exd/Gui/PrinterConfigure.pm b/lib/Exd/Gui/PrinterConfigure.pm index a3d721d..8465695 100644 --- a/lib/Exd/Gui/PrinterConfigure.pm +++ b/lib/Exd/Gui/PrinterConfigure.pm @@ -38,7 +38,6 @@ sub _read_bluetooth_printers($self) { my @fhs = $self->_select->can_read(0); for my $fh (@fhs) { $fh->blocking(0); - say 'hola'; while ( defined( my $line = <$fh> ) ) { my @return = map { $self->app->device_hash_to_object($_) } @{ JSON::from_json($line) }; @@ -46,7 +45,6 @@ sub _read_bluetooth_printers($self) { Exd::DeviceToBluetooth->cache_printers( $self->_bluetooth_printers ); } - say 'adios'; } }