Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libiio : cannot install python bindings #248

Open
julienmalik opened this issue Jul 2, 2020 · 11 comments
Open

libiio : cannot install python bindings #248

julienmalik opened this issue Jul 2, 2020 · 11 comments

Comments

@julienmalik
Copy link

enabling libiio-python3 PACKAGE_CONFIG does not generate the correct libiio-python3 package.
This is due to a recent addition in libiio.
See analogdevicesinc/libiio#561 for details.

Also, the recipe should now inherit setuptools3 instead of distutils3-base

@kraj
Copy link
Contributor

kraj commented Jul 2, 2020

@julienmalik can you cook up a patch for this ?

@mnsgs
Copy link
Contributor

mnsgs commented Aug 11, 2020

Hi @julienmalik ,

Are you able to cross-compile the bindings? Bumping to the version of analogdevicesinc/libiio#561 and inheriting setuptools3 rather than distutils3-base appears not sufficient:

$ bitbake libiio
Loading cache: 100% |######################################################################################################################################################################################################################################################| Time: 0:00:00
Loaded 2359 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION           = "1.47.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "x86_64-poky-linux"
MACHINE              = "qemux86-64"
DISTRO               = "poky"
DISTRO_VERSION       = "3.1+snapshot-20200811"
TUNE_FEATURES        = "m64 core2"
TARGET_FPU           = ""
meta                 
meta-poky            
meta-yocto-bsp       = "master:9e2c0e57df29122272e28834148ca7956c396e3e"
meta-oe              = "master:2dc11218ec70d207b3a88b922376428edcea9c08"

WARNING: /home/martin/work/libiio_receipe_dev/meta-openembedded/meta-oe/recipes-support/libiio/libiio_git.bb:do_fetch is tainted from a forced run                                                                                                                         | ETA:  0:00:00
Initialising tasks: 100% |#################################################################################################################################################################################################################################################| Time: 0:00:01
Sstate summary: Wanted 5 Found 0 Missed 5 Current 988 (0% match, 99% complete)
NOTE: Executing Tasks
ERROR: libiio-0.21+gitAUTOINC+68ab31448e-r0 do_compile: 'python3 setup.py build ' execution failed.
ERROR: libiio-0.21+gitAUTOINC+68ab31448e-r0 do_compile: Execution of '/home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/temp/run.do_compile.2687556' failed with exit code 1:
/home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/recipe-sysroot-native/usr/bin/python3-native/python3: can't open file '/home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/git/setup.py': [Errno 2] No such file or directory
WARNING: exit code 1 from a shell command.

ERROR: Logfile of failure stored in: /home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/temp/log.do_compile.2687556
Log data follows:
| DEBUG: Executing shell function do_compile
| /home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/recipe-sysroot-native/usr/bin/python3-native/python3: can't open file '/home/martin/work/libiio_receipe_dev/build/tmp/work/core2-64-poky-linux/libiio/0.21+gitAUTOINC+68ab31448e-r0/git/setup.py': [Errno 2] No such file or directory

Now, the setup.py does not exist (is this supposed to be rendered from setup.py.cmakein by CMake?) Not sure if this is a bug in the CMake files or the recipe lacks adaptions (or a combination)?

Thanks,
Martin

@julienmalik
Copy link
Author

@mnsgs yes I am able to compile the bindings (see patch in your associated issue).

I have never seen this issue with setup.py not found. So I guess it's related to Yocto version. I'm a little late, on thud.

@julienmalik
Copy link
Author

it's surprising, because the recipe inherits cmake, so setup.py should be generated at configure step. Thus it should not fail at compile step.

@rgetz
Copy link

rgetz commented Sep 28, 2020

I believe this is already fixed in the libiio master, and will be resolved in the next libiio release (in Dec)

@julienmalik
Copy link
Author

Hi @mnsgs

Good you managed to get the bindings with analogdevicesinc/libiio#592 (comment), but setuptools3.bbclass content is :

inherit distutils3

DEPENDS += "python3-setuptools-native"

so both inheriting from setuptools3 and adding the dependency should not be necessary.

@kraj
Copy link
Contributor

kraj commented Sep 28, 2020

@julienmalik I sense there is a change needed in the recipe as well. If that's so would you like to summarise that and perhaps send a patch to address it as well ?

@mnsgs
Copy link
Contributor

mnsgs commented Sep 29, 2020

Hmm, I see your point - however, consider, for the diff

diff --git a/meta-oe/recipes-support/libiio/libiio_git.bb b/meta-oe/recipes-support/libiio/libiio_git.bb
index b308bde17..6bc273947 100644
--- a/meta-oe/recipes-support/libiio/libiio_git.bb
+++ b/meta-oe/recipes-support/libiio/libiio_git.bb
@@ -31,7 +31,7 @@ PACKAGECONFIG[usb_backend] = "-DWITH_USB_BACKEND=ON,-DWITH_USB_BACKEND=OFF,libus
 PACKAGECONFIG[network_backend] = "-DWITH_NETWORK_BACKEND=ON,-DWITH_NETWORK_BACKEND=OFF,libxml2"
 PACKAGECONFIG[libiio-python3] = "-DPYTHON_BINDINGS=ON,-DPYTHON_BINDINGS=OFF"
 
-inherit ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'distutils3-base', '', d)}
+inherit ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'setuptools3', '', d)}
 
 PACKAGES =+ "${PN}-iiod ${PN}-tests ${PN}-${PYTHON_PN}"
 
@@ -46,3 +46,6 @@ FILES_${PN}-${PYTHON_PN} = "${PYTHON_SITEPACKAGES_DIR}"
 
 SYSTEMD_PACKAGES = "${PN}-iiod"
 SYSTEMD_SERVICE_${PN}-iiod = "iiod.service"
+
+# Enable python3 bindings here just for test - do not merge
+PACKAGECONFIG ?= "network_backend libiio-python3"

the list of dependencies:

$ bitbake libiio -e | grep ^DEPENDS
DEPENDS="cmake-native virtual/x86_64-poky-linux-gcc virtual/x86_64-poky-linux-compilerlibs virtual/libc      flex-native bison-native libaio     avahi  python3-native  libxml2 ninja-native"

whereas for the diff:

diff --git a/meta-oe/recipes-support/libiio/libiio_git.bb b/meta-oe/recipes-support/libiio/libiio_git.bb
index b308bde17..8a8f02e5b 100644
--- a/meta-oe/recipes-support/libiio/libiio_git.bb
+++ b/meta-oe/recipes-support/libiio/libiio_git.bb
@@ -17,6 +17,7 @@ inherit cmake python3native systemd
 DEPENDS = " \
     flex-native bison-native libaio \
     ${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)} \
+    ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'python3-setuptools-native', '', d)} \
 "
 
 EXTRA_OECMAKE = " \
@@ -31,7 +32,7 @@ PACKAGECONFIG[usb_backend] = "-DWITH_USB_BACKEND=ON,-DWITH_USB_BACKEND=OFF,libus
 PACKAGECONFIG[network_backend] = "-DWITH_NETWORK_BACKEND=ON,-DWITH_NETWORK_BACKEND=OFF,libxml2"
 PACKAGECONFIG[libiio-python3] = "-DPYTHON_BINDINGS=ON,-DPYTHON_BINDINGS=OFF"
 
-inherit ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'distutils3-base', '', d)}
+inherit ${@bb.utils.contains('PACKAGECONFIG', 'libiio-python3', 'setuptools3', '', d)}
 
 PACKAGES =+ "${PN}-iiod ${PN}-tests ${PN}-${PYTHON_PN}"
 
@@ -46,3 +47,6 @@ FILES_${PN}-${PYTHON_PN} = "${PYTHON_SITEPACKAGES_DIR}"
 
 SYSTEMD_PACKAGES = "${PN}-iiod"
 SYSTEMD_SERVICE_${PN}-iiod = "iiod.service"
+
+# Enable python3 bindings here just for test - do not merge
+PACKAGECONFIG ?= "network_backend libiio-python3"

List is:

$ bitbake libiio -e | grep ^DEPENDS
DEPENDS="cmake-native virtual/x86_64-poky-linux-gcc virtual/x86_64-poky-linux-compilerlibs virtual/libc      flex-native bison-native libaio     avahi     python3-setuptools-native  python3-native  libxml2 ninja-native"

Not sure why python3-setuptools-native does not add to the list through the inheritance but only through direct dependency?

@S4mw1s3
Copy link
Contributor

S4mw1s3 commented Mar 4, 2021

I did some investigation and the issue is that when enabling the python bindings in libiio_git.bb, the recipe inherits from both cmake and setuptools3. Both classes have a EXPORT_FUNCTIONS do_configure do_compile do_install and so the last one that is inherited will override the first one.
As an example I found python3-pybind11_2.6.2.bb in current meta-openembedded master that also inherits from both cmake and setuptools3 and they explicitly provide a do_configure, do_compile and do_install:

SUMMARY = "Seamless operability between C++11 and Python"
HOMEPAGE = "https://github.com/wjakob/pybind11"
LICENSE = "BSD-2-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=774f65abd8a7fe3124be2cdf766cd06f"

DEPENDS = "boost"

SRC_URI = "git://github.com/pybind/pybind11.git \
           file://0001-Do-not-strip-binaries.patch \
           file://0001-Do-not-check-pointer-size-when-cross-compiling.patch \
"
SRCREV = "8de7772cc72daca8e947b79b83fea46214931604"

S = "${WORKDIR}/git"

BBCLASSEXTEND = "native"

EXTRA_OECMAKE =  "-DPYBIND11_TEST=OFF"

inherit cmake setuptools3 python3native

do_configure() {
	cmake_do_configure
}

do_compile() {
	distutils3_do_compile
	cmake_do_compile
}

do_install() {
	distutils3_do_install
	cmake_do_install
}

BBCLASSEXTEND = "native nativesdk"

See http://git.openembedded.org/meta-openembedded/tree/meta-python/recipes-devtools/python/python3-pybind11_2.6.2.bb?id=82b80e6ab10a0cf678428ff11832dc9b90f9d5a6

Same will need to be done for libiio_git.bb but with an extra check to see if the python bindings are enabled or not.

@kraj
Copy link
Contributor

kraj commented Mar 4, 2021

@S4mw1s3 seems a good approach to me. Perhaps you can cook up a patch ?

kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Mar 5, 2021
See openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@telenet.be>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Mar 5, 2021
See openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@telenet.be>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Mar 5, 2021
See openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@telenet.be>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
S4mw1s3 added a commit to S4mw1s3/meta-openembedded that referenced this issue Jun 17, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are anbled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. Therefore with this patch, fixes are
applied for both issues handled in [1].

[1]: openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
S4mw1s3 added a commit to S4mw1s3/meta-openembedded that referenced this issue Jun 17, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. Therefore with this patch, fixes are
applied for both issues handled in [1].

[1]: openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
S4mw1s3 added a commit to S4mw1s3/meta-openembedded that referenced this issue Jun 17, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. With this patch, fixes are now
available for both issues handled in [1].

[1]: openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Jun 17, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. With this patch, fixes are now
available for both issues handled in [1].

[1]: openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Jun 18, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. With this patch, fixes are now
available for both issues handled in [1].

[1]: #248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
S4mw1s3 added a commit to S4mw1s3/meta-openembedded that referenced this issue Jun 28, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. With this patch, fixes are now
available for both issues handled in [1].

[1]: openembedded#248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
halstead pushed a commit that referenced this issue Jul 17, 2021
This patch fixes the following error when libiio is installed when
python3 bindings are enabled:

ERROR: Execution of '.../libiio/0.21+gitAUTOINC+565bf68ecc-r0/temp/run.do_install.2349473' failed with exit code 1:
running build
running build_py
running install
Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 77, in _check_libiio_installed
    raise OSError
OSError

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 106, in <module>
    setup(**config)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/recipe-sysroot-native/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File ".../libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 52, in run
    self._check_libiio_installed()
  File "/libiio/0.21+gitAUTOINC+565bf68ecc-r0/build/bindings/python/setup.py", line 83, in _check_libiio_installed
    raise Exception(msg)
Exception: The libiio library could not be found.
            libiio needs to be installed first before the python bindings.
            The latest release can be found on GitHub:
            https://github.com/analogdevicesinc/libiio/releases

Some time ago a fix for this issue was already discussed here [1].
However in the same discussion also a second issue was being handled.

A fix for the second issue was merged in 51f9886. The first issue
didn't pop up anymore and so a fix was never applied.

Recently however after switching from build machine, I started seeing
the first issue. I suspect due to build caching the first issue didn't
pop up anymore before up until now. With this patch, fixes are now
available for both issues handled in [1].

[1]: #248

Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Aug 19, 2021
CHANGES IN FLTK 1.3                        RELEASED: Jul 25 2021

FLTK 1.3.7 is a maintenance release for macOS only. It fixes one
regression introduced in FLTK 1.3.6 and two long standing timer
issues on macOS.

Other platforms than macOS are not concerned.

Changes:

  Avoid premature FL_RELEASE event at start of drag-n-drop operation
  Fix a timer inconsistency and prevent a crash
  Fl::add_timeout() must always create a new timer (openembedded#248)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Aug 20, 2021
CHANGES IN FLTK 1.3                        RELEASED: Jul 25 2021

FLTK 1.3.7 is a maintenance release for macOS only. It fixes one
regression introduced in FLTK 1.3.6 and two long standing timer
issues on macOS.

Other platforms than macOS are not concerned.

Changes:

  Avoid premature FL_RELEASE event at start of drag-n-drop operation
  Fix a timer inconsistency and prevent a crash
  Fl::add_timeout() must always create a new timer (#248)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
@nunojsa
Copy link
Contributor

nunojsa commented Oct 27, 2021

Hey,

I know I'm a bit late on this but I'm just wondering about these lines in the do_compile and do_install functions... AFAICT, libiio will already set the right cmake targets to handle all the python specifics. Hence, calling the cmake_do_{compile|install} should be enough. Am I missing something?

It actually works for me without the distutils3 stuff but I just tested on gatesgarth...

kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Feb 22, 2022
refresh patches for 0.104:
0001-Makefile-do-not-use-Werror.patch
0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch

0001-parse-nm-fix-32bit-format-string.patch
removed since it's included in 0.104

Changelog:
=========
Enable embedded-switch-mode setting on SmartNICs (openembedded#253)
Permit multiple patterns for the driver globs in match (openembedded#202), LP#1918421
Improve routing capabilities (openembedded#248), LP#1892272, LP#1805038
Support additional link offload options for networkd (openembedded#225) (openembedded#242), LP#1771740
Consolidate enum-to-string arrays (openembedded#230)
Handle differing ip6-privacy default value for NetworkManager (openembedded#263)
YAML state tracking (--state rootdir) for DBus API and netplan try (openembedded#231), LP#1943120
Support ConfigureWithoutCarrier (ignore-carrier) for networkd (openembedded#215)
Move primary git branch master to main
Documentation improvements (openembedded#226)
Compatibility for glib-2.70 (openembedded#235)
Cleanup Makefile, install only public headers
Improve test reliability & enable integration testing CI for autopkgtests
Netplan get to use the libnetplan parser (openembedded#252)
libnetplan:
- introduce the notion of NetplanState (openembedded#232)
- use an explicit parser context (openembedded#233)
- expose coherent generator APIs (openembedded#239)
- improve overall error handling (openembedded#234)
- consolidation of YAML parsing into the library (openembedded#241, openembedded#249, openembedded#250, openembedded#251)
Restrict the symbol export to a determined public API (openembedded#227)
- WARNING: We dropped some internal symbols from the API that we know
  have no external consumers (that we are aware of)
- 0.103: _serialize_yaml, contains_netdef_type, tmp, validate_default_route_consistency
- 0.102: cur_filename, netplan_netdef_new
- 0.100: address_option_handlers, is_hostname, validate_ovs_target, wireguard_peer_handlers
- 0.99: current_file, is_ip4_address, is_ip6_address, missing_id,
  missing_ids_found, parser_error, validate_backend_rules, validate_netdef_grammar,
  yaml_error

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Feb 23, 2022
refresh patches for 0.104:
0001-Makefile-do-not-use-Werror.patch
0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch

0001-parse-nm-fix-32bit-format-string.patch
removed since it's included in 0.104

Changelog:
=========
Enable embedded-switch-mode setting on SmartNICs (#253)
Permit multiple patterns for the driver globs in match (#202), LP#1918421
Improve routing capabilities (#248), LP#1892272, LP#1805038
Support additional link offload options for networkd (#225) (#242), LP#1771740
Consolidate enum-to-string arrays (#230)
Handle differing ip6-privacy default value for NetworkManager (#263)
YAML state tracking (--state rootdir) for DBus API and netplan try (#231), LP#1943120
Support ConfigureWithoutCarrier (ignore-carrier) for networkd (#215)
Move primary git branch master to main
Documentation improvements (#226)
Compatibility for glib-2.70 (#235)
Cleanup Makefile, install only public headers
Improve test reliability & enable integration testing CI for autopkgtests
Netplan get to use the libnetplan parser (#252)
libnetplan:
- introduce the notion of NetplanState (#232)
- use an explicit parser context (#233)
- expose coherent generator APIs (#239)
- improve overall error handling (#234)
- consolidation of YAML parsing into the library (#241, #249, #250, #251)
Restrict the symbol export to a determined public API (#227)
- WARNING: We dropped some internal symbols from the API that we know
  have no external consumers (that we are aware of)
- 0.103: _serialize_yaml, contains_netdef_type, tmp, validate_default_route_consistency
- 0.102: cur_filename, netplan_netdef_new
- 0.100: address_option_handlers, is_hostname, validate_ovs_target, wireguard_peer_handlers
- 0.99: current_file, is_ip4_address, is_ip6_address, missing_id,
  missing_ids_found, parser_error, validate_backend_rules, validate_netdef_grammar,
  yaml_error

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 23, 2023
Changelog:
===========
Feature
--------
Update for final cpython release (openembedded#263) (460a072)
Speed up unpacking arrays (openembedded#257) (5c8bfe5)
Speed up constructing Variant objects (openembedded#256) (0d7a665)
Speed up unmarshalling message body (openembedded#255) (5aed075)
Speed up unmarshalling Variants (openembedded#254) (dd74a84)
Speed up readers in the unmarshall path (openembedded#253) (f9b61b8)
Speed up first connection when using asyncio (openembedded#251) (0b6ba93)
Speed up unmarshaller (openembedded#250) (e4cae13)
Add cython typing for ServiceInterface.name (openembedded#248) (98c7e75)
Speed up connect and disconnect (openembedded#247) (8f39ba3)
Speed up unmarshalling by skipping unused unix_fds header (openembedded#246) (5f5a150)
Reduce overhead to reset between messages (openembedded#245) (da30b04)
Don't import backends by default (openembedded#243) (091d421)
Breaking
don't import backends by default (openembedded#243) (091d421)
Small speed up to the unmarshaller (openembedded#238) (b8d0e9b)
Build cpython 3.12 wheels (openembedded#234) (b38aa58)
Improve performance of processing incoming messages (openembedded#228) (ce61aea)
Reduce overhead to dispatch method handlers (openembedded#227) (b222552)
Speed up to processing bluez passive data (openembedded#221) (8e7432d)
Remove async_timeout dependency (openembedded#218) (7826897)
Speed up Message creation and callbacks (openembedded#217) (04d6451)
Optimize passive bluez message unmarshaller (openembedded#216) (e0e87ec)
Initial cpython 3.12 support (openembedded#207) (c755193)
Improve performance of reading from the socket during unmarshall (openembedded#200) (e5d355f)

Fix
-------------
Handling of None messages from notify callback (openembedded#236) (14f52f2)
Clean up address parsing and tests (openembedded#244) (370791d)
Handle multiple flag bits when unmarshalling (openembedded#241) (6f6f5f8)
Rebuild wheels with cython 3.0.2 (openembedded#235) (e8901a8)
Avoid cythonizing SendReply (openembedded#232) (d12266d)
Subpath bad matching (openembedded#202) (5d6f90b)
Messages could be sent out of order if they had to queue (openembedded#225) (4051cf2)
Avoid checking if a message expects a reply twice (openembedded#223) (823e85f)
Revert changes to _expects_reply from speed up to processing bluez passive data (openembedded#222) (dfa9053)
Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (openembedded#220) (6c2412f)
More cython3 optional fixes (openembedded#219) (5b6cbc5)
Exception handler failure when exception is not DBusError (openembedded#215) (d771bcf)
Result typing in ServiceInterface._handle_signal (openembedded#214) (5bda04b)
Avoid double buffering when using asyncio reader without negotiate_unix_fd (openembedded#213) (c933be7)
Relax typing on _fn_result_to_body to allow Any (openembedded#212) (2f5fc38)
Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (openembedded#210) (c40c7bc)
Cython3 compat (openembedded#208) (43b3d48)
Reduce size of wheels by excluding generated .c files (openembedded#262) (dca4599)
Marshall multi-byte strings correctly (openembedded#261) (4de31a3)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
halstead pushed a commit that referenced this issue Nov 3, 2023
Changelog:
===========
Feature
--------
Update for final cpython release (#263) (460a072)
Speed up unpacking arrays (#257) (5c8bfe5)
Speed up constructing Variant objects (#256) (0d7a665)
Speed up unmarshalling message body (#255) (5aed075)
Speed up unmarshalling Variants (#254) (dd74a84)
Speed up readers in the unmarshall path (#253) (f9b61b8)
Speed up first connection when using asyncio (#251) (0b6ba93)
Speed up unmarshaller (#250) (e4cae13)
Add cython typing for ServiceInterface.name (#248) (98c7e75)
Speed up connect and disconnect (#247) (8f39ba3)
Speed up unmarshalling by skipping unused unix_fds header (#246) (5f5a150)
Reduce overhead to reset between messages (#245) (da30b04)
Don't import backends by default (#243) (091d421)
Breaking
don't import backends by default (#243) (091d421)
Small speed up to the unmarshaller (#238) (b8d0e9b)
Build cpython 3.12 wheels (#234) (b38aa58)
Improve performance of processing incoming messages (#228) (ce61aea)
Reduce overhead to dispatch method handlers (#227) (b222552)
Speed up to processing bluez passive data (#221) (8e7432d)
Remove async_timeout dependency (#218) (7826897)
Speed up Message creation and callbacks (#217) (04d6451)
Optimize passive bluez message unmarshaller (#216) (e0e87ec)
Initial cpython 3.12 support (#207) (c755193)
Improve performance of reading from the socket during unmarshall (#200) (e5d355f)

Fix
-------------
Handling of None messages from notify callback (#236) (14f52f2)
Clean up address parsing and tests (#244) (370791d)
Handle multiple flag bits when unmarshalling (#241) (6f6f5f8)
Rebuild wheels with cython 3.0.2 (#235) (e8901a8)
Avoid cythonizing SendReply (#232) (d12266d)
Subpath bad matching (#202) (5d6f90b)
Messages could be sent out of order if they had to queue (#225) (4051cf2)
Avoid checking if a message expects a reply twice (#223) (823e85f)
Revert changes to _expects_reply from speed up to processing bluez passive data (#222) (dfa9053)
Spelling of dbus_fast.auth.AuthAnnonymous to dbus_fast.auth.AuthAnonymous (#220) (6c2412f)
More cython3 optional fixes (#219) (5b6cbc5)
Exception handler failure when exception is not DBusError (#215) (d771bcf)
Result typing in ServiceInterface._handle_signal (#214) (5bda04b)
Avoid double buffering when using asyncio reader without negotiate_unix_fd (#213) (c933be7)
Relax typing on _fn_result_to_body to allow Any (#212) (2f5fc38)
Typing on _fn_result_to_body was incorrect which was caused an exception with cython3 (#210) (c40c7bc)
Cython3 compat (#208) (43b3d48)
Reduce size of wheels by excluding generated .c files (#262) (dca4599)
Marshall multi-byte strings correctly (#261) (4de31a3)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit f10cf13)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 4, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 4, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 4, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 4, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 5, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 5, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 5, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 5, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 5, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 6, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 6, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 7, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 7, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 7, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 7, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 7, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 8, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 8, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 8, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 9, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 10, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 10, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 10, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 10, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 11, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
kraj pushed a commit to YoeDistro/meta-openembedded that referenced this issue Oct 11, 2024
New in 47.0 - 14 September 2024
* Updated translations
* Fix blurred background on HiDPI screens !160 openembedded#300 (Qiu Wenbo)
New in 47.rc - 31 August 2024
* Updated translations
* Minor improvements in defaults and settings loading (Óscar Fernández Díaz)
New in 47.beta - 2 August 2024
* Updated translations
* Fix help and version crashing the application openembedded#260 !148 (luiz)
* UI modernization for dialogs and disks view !150, !152, !153, !154 (Óscar Fernández Díaz)
* Improve initial loadgraph points openembedded#248 !151 (Luiz França)
New in 47.alpha - 29 June 2024
* Updated translations
* Improved flatpak app icon search !132 (Óscar Fernández Díaz)
* Set affinity for all tasks !134 (Yannis Gerlach)
* Use new Adwaita adaptive dialogs !125 (Óscar Fernández Díaz)
* Use same translatable for CPU charts and affinty openembedded#203 (Robert Roth)
* Several migrations from deprecated treeview to columnview (Óscar Fernández Díaz)
* Migrate color button to GtkColorDialog (Óscar Fernández Díaz)
* Add one column per group of 32 core labels !144 (Yannis Guyon)
* Various interface improvements to match HIG (Óscar Fernández Díaz)

Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants