Skip to content

Commit

Permalink
7.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Dec 11, 2019
1 parent 788bd64 commit cd1b78d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
5 changes: 2 additions & 3 deletions I-Nex/i-nex/.project
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Gambas Project File 3.0
# Compiled with Gambas 3.8.4
Title=I-Nex
Startup=MStart
Icon=logo/i-nex.0.4.x.png
Version=7.6.0
Version=7.6.1
Component=gb.image
Component=gb.qt5
Component=gb.form
Component=gb.desktop.x11
Component=gb.desktop
Component=gb.desktop.x11
Description="I-Nex is an application that gathers information for hardware components available on your system and displays it using an user interface similar to the popular Windows tool CPU-Z.\n\nI-Nex can display information for the following components: CPU, GPU, Motherboard, Sound, Hard disks, RAM, Network and USB as well as some system info like the hostname, Linux distribution and version, Xorg, GCC, GLX versions and Linux Kernel info.\n\n\nThe difference between I-Nex and the other hardware information GUI tools available for Linux is that the information is better organized and is displayed faster (than lshw-gtk for instance). Also, the hardware information is presented in a way that’s easier to understand than other such tools.\n\nBesides being able to display hardware information, I-Nex can also generate an advanced report for which you can select what to include and optionally send the report to a service such as Pastebin (and others). It also features an option to take a screenshot of the I-Nex window directly from the application."
Authors="eloaders"
Environment="LANG=C\nLC_ALL=C\nLIBOVERLAY_SCROLLBAR=0\nAPPMENU_DISPLAY_BOTH=1"
Expand Down
3 changes: 2 additions & 1 deletion I-Nex/i-nex/.settings
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Geometry=[236,249,180,180]

[Executable]
Path="/home/michal/Pulpit/i-nex.gambas"
DoNotIncrementVersion=False

[FFind]
SearchIn="Module"
Expand All @@ -30,7 +31,7 @@ SearchString=True
[OpenFile]
File[1]=".src/MAIN/Finfosys.form"
File[2]=".src/Battery/battery.module:15.70"
File[3]=".src/Drives/Disk_Drives.module:107.107"
File[3]=".src/Drives/Disk_Drives.module:104.107"
File[4]=".src/ScreenShot.form"
File[5]=".src/ScreenShot.class:5.23"
File[6]=".src/Drives/USB_Drives.module:44.6"
Expand Down
4 changes: 2 additions & 2 deletions I-Nex/i-nex/.src/Drives/Disk_Drives.module
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ Function _init_2()
Logs("Add Drives to ComboBox..", Logger.Info)
Finfosys.ComboBox3.Clear
For count = 1 To Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "sd*").Count
Finfosys.ComboBox3.Add(Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "" & Left$(Finfosys.ComboBox4.Text, - 1) & "*")[count - 1])
Finfosys.ComboBox3.Add(Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "" & Left$(Finfosys.ComboBox4.Text, -1) & "*")[count - 1])
Next

For count = 1 To Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "sr*").Count
Finfosys.ComboBox3.Add(Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "" & Left$(Finfosys.ComboBox4.Text, - 1) & "*")[count - 1])
Finfosys.ComboBox3.Add(Dir("/sys/block/" & Finfosys.ComboBox4.Text & "", "" & Left$(Finfosys.ComboBox4.Text, -1) & "*")[count - 1])
Next
Finfosys.ComboBox3.Index = 0
End
Expand Down
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.src/Modules/FFileDialog.class
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Private Sub SetExtension(sPath As String) As String
If Not sExt Then Continue
If sExt = "*" Then Continue
If sPath Ends "." & sExt Then
sPath = Left$(sPath, - Len(sExt) - 1)
sPath = Left$(sPath, -Len(sExt) - 1)
bGotIt = True
Break
Endif
Expand Down
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.startup
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ I-Nex
gb.image
gb.qt5
gb.form
gb.desktop.x11
gb.desktop
gb.desktop.x11

0 comments on commit cd1b78d

Please sign in to comment.