summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-02-10Merge pull request #7 from hardinfo2/dmifixhwspeedy
devices/dmi: value was left uninitialized in one switch case
2024-02-10FIX Packaging for experimental versions, minor fixeshwspeedy
2024-02-10devices/dmi: value was left uninitialized in one switch caseOndrej Čerman
2024-02-10FIX tools cleaning toolbigbear
2024-02-09FIX new project domain www.hardinfo2.orghwspeedy
2024-02-09DOC Update README.mdhwspeedy
2024-02-09DOC update README.md with server repohwspeedy
2024-02-08VERSION to 2.0.2hwspeedy
2024-02-08DOC readme to pre-release 2.0.1release-2.0.1prehwspeedy
2024-02-08FIX Change to hardinfo2.pnghwspeedy
2024-02-08ADD readd clean tool - tools/rm_hardinfo.shhwspeedy
2024-02-08FIX added missing GTK3 fix from PRbigbear
2024-02-08Update README.md for organisationhwspeedy
2024-02-08FIX QLcode - sscanf incorrect checkbigbear
2024-02-08Version to 2.0.1bigbear
2024-02-08Created workflow CodeQLhwspeedy
2024-02-08Created workflowhwspeedy
2024-02-08Update readme for prerelease 2.0.0hwspeedy
2024-02-08Pre-Release v2.0.0hwspeedy
2024-02-08FIX settings folders missing, set APIbigbear
2024-02-08FIX Crash vendorbigbear
2024-02-08FIX new benchmarks working for slow & fast machinesbigbear
2024-02-08FIX sha1 crashbigbear
2024-02-08FIX back port save settings older glibbigbear
2024-02-08FIX back port for threadsbigbear
2024-02-08FIX back portsbigbear
2024-02-08FIX new benchmarking dialogbigbear
2024-02-08FIX Name/Desc syncbigbear
2024-02-08FIX GCC warnings - always truebigbear
2024-02-08FIX - missing includesbigbear
2024-02-08CLEANUP - remove old stuffbigbear
2024-02-08FIX DeviceTree Crash Odroid C2 Armbianbigbear
2024-02-08FIX GCC Warningsbigbear
2024-02-08FIX uber-graph GLIB privatebigbear
2024-02-08FIX GCC Compatibilitybigbear
2024-02-08FIX Missing icons, menu about, cleaningbigbear
2024-02-08ADD LibSoup3 (EXPERIMENTAL)bigbear
2024-02-08FIX CodeQL warningsbigbear
2024-02-08FIX Cleanup about credit boxbigbear
2024-02-08PR665 - fix numa node uninitializedbigbear
2024-02-08PR681 - implicit function declarationbigbear
2024-02-08PR696 - module loading orderbigbear
2024-02-08PR405 - icons for computer/securitybigbear
2024-02-08FIX Project license to GPL2+hwspeedy
Both Project and GPL2 source code is changed to GPL2+. See https://github.com/hwspeedy/hardinfo2/commit/8e8fc40665844405084bc1319fb20e05fff0b106
2024-02-08ADD Package building for hardinfo2bigbear
2024-02-08LICENSE Changed to GPL2+ for project and source code According to approval ↵bigbear
from copyright holders - see: https://github.com/lpereira/hardinfo/issues/530 https://github.com/lpereira/hardinfo/issues/707
2024-02-08Clean - HARDINFO2 BASEbigbear
2023-10-27Fix build without libsouprezso
2023-10-13Here is the environment cinfiguration: cpu - atom, sd card as bootable disk, ↵Alexey Berezhok
loist of devices: /sys/block/zram0 /sys/block/mmcblk0boot0 /sys/block/mmcblk0boot1 /sys/block/mmcblk2 /sys/block/mmcblk0 Hardinfo got nex pathes for reading for the report: 1) # cat /sys/block/mmcblk0/device/oemid 0x0103 2) # cat /sys/block/mmcblk2/device/oemid 0x534d 3) # cat /sys/block/mmcblk0boot0/device/oemid cat: /sys/block/mmcblk0boot0/device/oemid: No such file or directory 4) # cat /sys/block/mmcblk0boot1/device/oemid cat: /sys/block/mmcblk0boot1/device/oemid: No such file or directory In the code no checks if files from previous step for device was read and pointer not NULL: gchar *oemid_path = g_strdup_printf("/sys/block/%s/device/oemid", e->d->block_dev); gchar *manfid_path = g_strdup_printf("/sys/block/%s/device/manfid", e->d->block_dev); gchar *oemid = NULL, *manfid = NULL; g_file_get_contents(oemid_path, &oemid, NULL, NULL); g_file_get_contents(manfid_path, &manfid, NULL, NULL); unsigned int id = strtol(oemid, NULL, 16); ... id = strtol(manfid, NULL, 16); Before srttol need check for NULL
2023-08-14Update copyright year to 2023L. Pereira