hardinfo icon indicating copy to clipboard operation
hardinfo copied to clipboard

Hardinfo aborts in Arch Linux

Open emreovus33 opened this issue 2 years ago • 27 comments

On Arch Linux latest packages as of now. The program starts off fine. But after clicking to almost all sections results in an abort after a brief period of hardinfo scanning things. So far I found that only these sections result in a crash: Summary, Operating System, Kernel Modules, Filesystems, Display, Environment Variables, PCI Devices, DMI, and all of the benchmarks.

Attached is a strace output of me starting the program and after waiting for the "Computer" tab to load, clicking on "PCI Devices" section.

(Contrary to the end of the strace output, I do have gvfs installed.)

hardinfobug.txt

emreovus33 avatar Sep 10 '21 04:09 emreovus33

I also get reproducible crashes under Arch Linux, but for me it crashes whenever I click on anything in the menubar.

ntolazzi avatar Sep 30 '21 13:09 ntolazzi

The package is probably old; can you please try building from source and test again? I also use Arch and it's pretty solid here.

On Thu, Sep 30, 2021, 06:53 Nicolas Tolazzi @.***> wrote:

I also get reproducible crashes under Arch Linux, but for me it crashes whenever I click on anything in the menubar.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-931344360, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKRD3NJHUHFRN2CUSDUERTXDANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Sep 30 '21 14:09 lpereira

hardinfo-git package builds but when I run the program I get the following:


==28452==ERROR: AddressSanitizer: odr-violation (0x7f5fb776c100):
  [1] size=8 'lginterval' /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/computer.c:119:8   
  [2] size=8 'lginterval' /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/devices.c:129:8
These globals were registered at these points:
  [1]:
    #0 0x7f5fc12da3fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341
    #1 0x7f5fc1cc5e2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

  [2]:
    #0 0x7f5fc12da3fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341
    #1 0x7f5fc1cc5e2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

==28452==HINT: if you don't care about these errors you may set ASAN_OPTIONS=detect_odr_violation=0
SUMMARY: AddressSanitizer: odr-violation: global 'lginterval' at /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/computer.c:119:8
==28452==ABORTING

And when I try to build it by hand I get a compliant about hardinfo being a directory during a C linkage.

emreovus33 avatar Oct 01 '21 10:10 emreovus33

I'll try building at home this weekend and reproduce this, thanks.

(The error you're getting is because you're running cmake under the root directory for this repo. Create a directory under it ("mkdir build; cd build; cmake ..") and see if it explodes then.)

On Fri, Oct 1, 2021, 03:10 Emre Övüş @.***> wrote:

hardinfo-git package builds but when I run the program I get the following:

`==28452==ERROR: AddressSanitizer: odr-violation (0x7f5fb776c100): [1] size=8 'lginterval' /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/computer.c:119:8 [2] size=8 'lginterval' /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/devices.c:129:8 These globals were registered at these points: [1]: #0 0x7f5fc12da3fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341 #1 https://github.com/lpereira/hardinfo/pull/1 0x7f5fc1cc5e2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

[2]: #0 0x7f5fc12da3fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341 #1 https://github.com/lpereira/hardinfo/pull/1 0x7f5fc1cc5e2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

==28452==HINT: if you don't care about these errors you may set ASAN_OPTIONS=detect_odr_violation=0 SUMMARY: AddressSanitizer: odr-violation: global 'lginterval' at /home/emreovus33/.cache/yay/hardinfo-git/src/hardinfo/modules/computer.c:119:8 ==28452==ABORTING `

And when I try to build it by hand I get a compliant about hardinfo being a directory during a C linkage.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932099262, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKMSX4Y7BGMJX2HDK3UEWCK5ANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 01 '21 10:10 lpereira

Ok, I managed to build it this time. But now when I run ./hardinfo in the build directory, I get an ** (hardinfo:42235): ERROR **: 02:28:31.977: Failed to find runtime data. error.

emreovus33 avatar Oct 01 '21 23:10 emreovus33

(HardInfo needs to be installed to run: sudo make install to do it. Please uninstall the hardinfo-git package you installed first.)

On Fri, Oct 1, 2021 at 4:30 PM Emre Övüş @.***> wrote:

Ok, I managed to build it this time. But now when I run ./hardinfo in the build directory, I get an ** (hardinfo:42235): ERROR **: 02:28:31.977: Failed to find runtime data. error.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932632724, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGMO6XZV6FLOJDSDUD3UEZAARANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

-- Leandro

lpereira avatar Oct 01 '21 23:10 lpereira

It seems to be working fine now, but whenever I click to another section to navigate the program bunch of dialog screens with nothing in them spawns one after another, and only when I close them from their handles do the program proceed to print the info gradually. Is this a known bug?

Also returning to the summary page from any other page seems to crash the program after couple of dialog screens.

emreovus33 avatar Oct 02 '21 10:10 emreovus33

No, never seen this before! This seems super weird.

Does this happen with every section or just some specific section?

Do these windows have at least a title? Or are they completely empty?

On Sat, Oct 2, 2021, 03:33 Emre Övüş @.***> wrote:

It seems to be working fine now, but whenever I click to another section to navigate the program bunch of dialog screens with nothing in them spawns one after another, and only when I close them from their handles do the program proceed to print the info gradually. Is this a known bug?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932729397, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKV6QCBFYJB7T222Y3UE3NXRANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 14:10 lpereira

I uploaded a video testing things. You should bear with the video because as I do more stuff you will discover more details.

https://youtu.be/Xeqzun4hrwA

Tho the video is private, how can I invite you to watch it? I need a valid e-mail address according to YouTube, and the one in your account doesn't work.

emreovus33 avatar Oct 02 '21 17:10 emreovus33

The video is marked as private. Maybe it should be Unlisted?

On Sat, Oct 2, 2021, 10:37 Emre Övüş @.***> wrote:

I uploaded a video testing things. You should bear with the video because as I do more stuff you will discover more details.

https://youtu.be/Xeqzun4hrwA

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932790099, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGJMYRFGGIJMJOHXX4LUE47MHANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

It is intentional. The program is almost normal in network section and I show that in the video, but I don't want my IPs to get leaked or something lmao.

emreovus33 avatar Oct 02 '21 18:10 emreovus33

I can't watch the video if it's Private. If you'd like to send a link to my email instead so it's not public for everyone, it's @.***

On Sat, Oct 2, 2021, 11:10 Emre Övüş @.***> wrote:

It is intentional. The program is almost normal in network section and I show that in the video, but I don't want my IPs to get leaked or something lmao.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932796057, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGN3PBYFYQQTVQS6DO3UE5DJ5ANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

Uuuh, I can't see your address.

I am editing the video in YouTube Studio thing to blur that part instead, one sec.

emreovus33 avatar Oct 02 '21 18:10 emreovus33

Ok I just rewatched the video and for some reason my actual IP address never appears in it, so I just made the video not private.

emreovus33 avatar Oct 02 '21 18:10 emreovus33

(My email is leandro at hardinfo.org. It's kinda funny that you can't see it.)

On Sat, Oct 2, 2021, 11:20 Emre Övüş @.***> wrote:

Uuuh, I can't see your address.

I am editing the video in YouTube Studio thing to blur that part instead, one sec.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932797803, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGPFQSE5D37D7QCGCYDUE5EQBANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

Ah, perfect, thanks. Let me see what's happening there. Thanks for going through all this trouble!

On Sat, Oct 2, 2021, 11:32 Emre Övüş @.***> wrote:

Ok I just rewatched the video and for some reason my actual IP address never appears in it, so I just made the video not private.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932799881, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKNWQFISDWVFBFW3DDUE5F5DANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

I have no idea what's going on! This never happened to me. It's probably some program on your path that HardInfo is trying to open to fetch what it needs, but some of the things you showed do not require launching programs in the back. This is very curious!

I don't recognize the icon on the window, either. Is it from something else in your system you recognize?

On Sat, Oct 2, 2021, 11:33 Leandro Pereira @.***> wrote:

Ah, perfect, thanks. Let me see what's happening there. Thanks for going through all this trouble!

On Sat, Oct 2, 2021, 11:32 Emre Övüş @.***> wrote:

Ok I just rewatched the video and for some reason my actual IP address never appears in it, so I just made the video not private.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932799881, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKNWQFISDWVFBFW3DDUE5F5DANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

(My email is leandro at hardinfo.org. It's kinda funny that you can't see it.) On Sat, Oct 2, 2021, 11:20 Emre Övüş @.***> wrote: Uuuh, I can't see your address. I am editing the video in YouTube Studio thing to blur that part instead, one sec. — You are receiving this because you commented. Reply to this email directly, view it on GitHub <#610 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGPFQSE5D37D7QCGCYDUE5EQBANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lol I can see it in your profile, but in the comment you posted it appears with asterisks.

emreovus33 avatar Oct 02 '21 18:10 emreovus33

I have no idea what's going on! This never happened to me. It's probably some program on your path that HardInfo is trying to open to fetch what it needs, but some of the things you showed do not require launching programs in the back. This is very curious! I don't recognize the icon on the window, either. Is it from something else in your system you recognize? On Sat, Oct 2, 2021, 11:33 Leandro Pereira @.> wrote: Ah, perfect, thanks. Let me see what's happening there. Thanks for going through all this trouble! On Sat, Oct 2, 2021, 11:32 Emre Övüş @.> wrote: > Ok I just rewatched the video and for some reason my actual IP address > never appears in it, so I just made the video not private. > > — > You are receiving this because you commented. > Reply to this email directly, view it on GitHub > <#610 (comment)>, > or unsubscribe > https://github.com/notifications/unsubscribe-auth/AAADVGKNWQFISDWVFBFW3DDUE5F5DANCNFSM5DYQWBUQ > . > Triage notifications on the go with GitHub Mobile for iOS > https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 > or Android > https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. > >

The icon on the dialog boxes is the special icon supplied from my icon theme, as it is the same icon in my whisker menu for your program. If you are referring to the icon on the main window, it is the default icon, right?

emreovus33 avatar Oct 02 '21 18:10 emreovus33

Aaaaah, I figured it out! One of the windows had a text I could search for.

HardInfo is at fault here, as it creates a message box every time there's an error message thrown to the console. Your theme engine is probably generating warnings.

On Sat, Oct 2, 2021, 11:37 Leandro Pereira @.***> wrote:

I have no idea what's going on! This never happened to me. It's probably some program on your path that HardInfo is trying to open to fetch what it needs, but some of the things you showed do not require launching programs in the back. This is very curious!

I don't recognize the icon on the window, either. Is it from something else in your system you recognize?

On Sat, Oct 2, 2021, 11:33 Leandro Pereira @.***> wrote:

Ah, perfect, thanks. Let me see what's happening there. Thanks for going through all this trouble!

On Sat, Oct 2, 2021, 11:32 Emre Övüş @.***> wrote:

Ok I just rewatched the video and for some reason my actual IP address never appears in it, so I just made the video not private.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-932799881, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKNWQFISDWVFBFW3DDUE5F5DANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Oct 02 '21 18:10 lpereira

Isn't it weird that only one window had text while the others don't? And there are two different sizes of the boxes. Plus does this explain the crashings as well?

emreovus33 avatar Oct 02 '21 18:10 emreovus33

I just built from the latest commit using my hardinfo-git PKGBUILD. The Gtk 3 GUI won't open at all.

I noticed when building, the libs reference the $srcdir: /build/hardinfo-git/src/hardinfo/. Notice that path is referenced in the output.

==> WARNING: Package contains reference to $srcdir
usr/lib/hardinfo/modules/devices.so
usr/lib/hardinfo/modules/network.so
usr/lib/hardinfo/modules/benchmark.so
usr/lib/hardinfo/modules/computer.so
usr/bin/hardinfo
*** /build/hardinfo-git/src/hardinfo/hardinfo/hardinfo.c:41 (main) *** HardInfo version 0.6-alpha. Debug version.
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:284 (binreloc_init) *** initializing binreloc (hardcoded = 0)
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:307 (binreloc_init) *** done, trying to use binreloc paths.
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:318 (binreloc_init) *** searching for runtime data on these locations:
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:319 (binreloc_init) ***   lib: /usr/lib/hardinfo
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:320 (binreloc_init) ***  data: /usr/share/hardinfo
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:348 (binreloc_init) *** runtime data found!
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:558 (ui_init) *** initializing gtk+ UI
*** /build/hardinfo-git/src/hardinfo/hardinfo/hardinfo.c:114 (main) *** loading all modules
*** /build/hardinfo-git/src/hardinfo/shell/iconcache.c:27 (icon_cache_init) *** initializing icon cache
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:744 (module_load) *** gmodule resource for ``/usr/lib/hardinfo/modules/devices.so'' is 0x60400001f250 ((null))
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:762 (module_load) *** initializing module ``devices.so''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update PCI ID listing''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update USB ID listing''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update EDID vendor codes''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update IEEE OUI vendor codes''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update SD card manufacturer information''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Update CPU flags database''
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:808 (module_load) *** registering methods for module ``devices.so''
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:744 (module_load) *** gmodule resource for ``/usr/lib/hardinfo/modules/network.so'' is 0x604000022b10 ((null))
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:762 (module_load) *** initializing module ``network.so''
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:808 (module_load) *** registering methods for module ``network.so''
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:744 (module_load) *** gmodule resource for ``/usr/lib/hardinfo/modules/benchmark.so'' is 0x604000022f90 ((null))
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:762 (module_load) *** initializing module ``benchmark.so''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Send benchmark results''
*** /build/hardinfo-git/src/hardinfo/shell/syncmanager.c:105 (sync_manager_add_entry) *** registering syncmanager entry ''Receive benchmark results''
*** /build/hardinfo-git/src/hardinfo/hardinfo/util.c:808 (module_load) *** registering methods for module ``benchmark.so''
=================================================================
==1817034==ERROR: AddressSanitizer: odr-violation (0x7fdbabed7100):
  [1] size=8 'lginterval' /build/hardinfo-git/src/hardinfo/modules/computer.c:119:8
  [2] size=8 'lginterval' /build/hardinfo-git/src/hardinfo/modules/devices.c:129:8
These globals were registered at these points:
  [1]:
    #0 0x7fdbb59b23fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341
    #1 0x7fdbb639ee2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

  [2]:
    #0 0x7fdbb59b23fa in __asan_register_globals /build/gcc/src/gcc/libsanitizer/asan/asan_globals.cpp:341
    #1 0x7fdbb639ee2d in call_init (/lib64/ld-linux-x86-64.so.2+0xfe2d)

==1817034==HINT: if you don't care about these errors you may set ASAN_OPTIONS=detect_odr_violation=0
SUMMARY: AddressSanitizer: odr-violation: global 'lginterval' at /build/hardinfo-git/src/hardinfo/modules/computer.c:119:8
==1817034==ABORTING

debug log

yochananmarqos avatar Oct 11 '21 19:10 yochananmarqos

Hello. I am no longer seeing this bug after the update of my theme flat-remix-gtk from version 20201129 to 20211010 (https://github.com/daniruiz/flat-remix-gtk/blob/master/CHANGELOG). However it may be important to remind you that I am using the latest version that I build from this git repository. Both the version I built in October 2 and December 14 works. But I can't try the current versions in the Arch repos as I don't know how to uninstall a package that I installed by using sudo make install. Whenever I install hardinfo from the repos my git version never gets overwritten.

emreovus33 avatar Dec 14 '21 09:12 emreovus33

That's good to hear! I think it's better to leave this open for now so I don't forget to investigate further when I have disposition for that.

On Tue, Dec 14, 2021, 01:23 Emre Övüş @.***> wrote:

Hello. I am no longer seeing this bug after the update of my theme flat-remix-gtk from version 20201129 to 20211010 ( https://github.com/daniruiz/flat-remix-gtk/blob/master/CHANGELOG).

Tho I assume the issue can still happen. What should I do with this issue page?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-993339084, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGKFHRCQKWSE3NEFNS3UQ4EIXANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lpereira avatar Dec 14 '21 09:12 lpereira

Wasn't expecting you to be online lol. I modified my message.

emreovus33 avatar Dec 14 '21 09:12 emreovus33

Hi! Any plans on tagging a new stable release of hardinfo any time soon? I'd like to update the package in the Arch [community] repository, but we definitely try to stick to the latest stable versions of software for the official packages. Although hardinfo in Arch is currently based off of some old git version, it's dificult to know what git commits are safe to use as a base for packages for our official repositories. Cheers! J

svetlemodry avatar Jan 30 '22 17:01 svetlemodry

It's unlikely that a new stable release of HardInfo will be made soon. I'm rarely working on it these days. It is generally alright to grab any commit, though; it should be stable.

On Sun, Jan 30, 2022, 09:51 Jaroslav Lichtblau @.***> wrote:

Hi! Any plans on tagging a new stable release of hardinfo any time soon? I'd like to update the package in the Arch [community] repository, but we definitely try to stick to the latest stable versions of software for the official packages. Although hardinfo in Arch is currently based off of some old git version, it's dificult to know what git commits are safe to use as a base for packages for our official repositories. Cheers! J

— Reply to this email directly, view it on GitHub https://github.com/lpereira/hardinfo/issues/610#issuecomment-1025194508, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAADVGNTEOF5BFDNU4YIBUTUYV3AJANCNFSM5DYQWBUQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you commented.Message ID: @.***>

lpereira avatar Jan 30 '22 17:01 lpereira