updted docs

This commit is contained in:
Sebastian Hildebrandt 2019-05-31 23:09:46 +02:00
parent 60f30e46c0
commit 70124596cd
4 changed files with 42 additions and 36 deletions

View File

@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
| Version | Date | Comment | | Version | Date | Comment |
| -------------- | -------------- | -------- | | -------------- | -------------- | -------- |
| 4.8.1 | 2019-05-31 | updated docs |
| 4.8.0 | 2019-05-31 | added `vboxInfo()` detailed virtual box info | | 4.8.0 | 2019-05-31 | added `vboxInfo()` detailed virtual box info |
| 4.7.3 | 2019-05-30 | updated typescript typings | | 4.7.3 | 2019-05-30 | updated typescript typings |
| 4.7.2 | 2019-05-30 | `versions()` added virtualbox, java popup fix macos | | 4.7.2 | 2019-05-30 | `versions()` added virtualbox, java popup fix macos |

View File

@ -551,40 +551,40 @@ I also created a nice little command line tool called [mmon][mmon-github-url] (
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments | | Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- | | --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
| si.vboxInfo(cb) | {...} | X | X | X | X | X | returns general virtual box info | | si.vboxInfo(cb) | [{...}] | X | X | X | X | X | returns array general virtual box info |
| | id | X | X | X | X | X | virtual box ID | | | [0].id | X | X | X | X | X | virtual box ID |
| | name | X | X | X | X | X | name | | | [0].name | X | X | X | X | X | name |
| | running | X | X | X | X | X | vbox is running | | | [0].running | X | X | X | X | X | vbox is running |
| | runningSince | X | X | X | X | X | running since (secs) | | | [0].runningSince | X | X | X | X | X | running since (secs) |
| | guestOS | X | X | X | X | X | Guest OK | | | [0].guestOS | X | X | X | X | X | Guest OK |
| | hardwareUUID | X | X | X | X | X | Hardware UUID | | | [0].hardwareUUID | X | X | X | X | X | Hardware UUID |
| | memory | X | X | X | X | X | Memory in MB | | | [0].memory | X | X | X | X | X | Memory in MB |
| | vram | X | X | X | X | X | VRAM in MB | | | [0].vram | X | X | X | X | X | VRAM in MB |
| | cpus | X | X | X | X | X | CPUs | | | [0].cpus | X | X | X | X | X | CPUs |
| | cpuExepCap | X | X | X | X | X | CPU exec cap | | | [0].cpuExepCap | X | X | X | X | X | CPU exec cap |
| | cpuProfile | X | X | X | X | X | CPU profile | | | [0].cpuProfile | X | X | X | X | X | CPU profile |
| | chipset | X | X | X | X | X | chipset | | | [0].chipset | X | X | X | X | X | chipset |
| | firmware | X | X | X | X | X | firmware | | | [0].firmware | X | X | X | X | X | firmware |
| | pageFusion | X | X | X | X | X | page fusion | | | [0].pageFusion | X | X | X | X | X | page fusion |
| | configFile | X | X | X | X | X | config file | | | [0].configFile | X | X | X | X | X | config file |
| | snapshotFolder | X | X | X | X | X | snapshot folder | | | [0].snapshotFolder | X | X | X | X | X | snapshot folder |
| | logFolder | X | X | X | X | X | log folder path | | | [0].logFolder | X | X | X | X | X | log folder path |
| | HPET | X | X | X | X | X | HPET | | | [0].HPET | X | X | X | X | X | HPET |
| | PAE | X | X | X | X | X | PAE | | | [0].PAE | X | X | X | X | X | PAE |
| | longMode | X | X | X | X | X | long mode | | | [0].longMode | X | X | X | X | X | long mode |
| | tripleFaultReset | X | X | X | X | X | triple fault reset | | | [0].tripleFaultReset | X | X | X | X | X | triple fault reset |
| | APIC | X | X | X | X | X | APIC | | | [0].APIC | X | X | X | X | X | APIC |
| | X2APIC | X | X | X | X | X | X2APIC | | | [0].X2APIC | X | X | X | X | X | X2APIC |
| | ACPI | X | X | X | X | X | ACPI | | | [0].ACPI | X | X | X | X | X | ACPI |
| | IOAPIC | X | X | X | X | X | IOAPIC | | | [0].IOAPIC | X | X | X | X | X | IOAPIC |
| | biosAPICmode | X | X | X | X | X | BIOS APIC mode | | | [0].biosAPICmode | X | X | X | X | X | BIOS APIC mode |
| | bootMenuMode | X | X | X | X | X | boot menu Mode | | | [0].bootMenuMode | X | X | X | X | X | boot menu Mode |
| | bootDevice1 | X | X | X | X | X | bootDevice1 | | | [0].bootDevice1 | X | X | X | X | X | bootDevice1 |
| | bootDevice2 | X | X | X | X | X | bootDevice2 | | | [0].bootDevice2 | X | X | X | X | X | bootDevice2 |
| | bootDevice3 | X | X | X | X | X | bootDevice3 | | | [0].bootDevice3 | X | X | X | X | X | bootDevice3 |
| | bootDevice4 | X | X | X | X | X | bootDevice4 | | | [0].bootDevice4 | X | X | X | X | X | bootDevice4 |
| | timeOffset | X | X | X | X | X | time Offset | | | [0].timeOffset | X | X | X | X | X | time Offset |
| | RTC | X | X | X | X | X | RTC | | | [0].RTC | X | X | X | X | X | RTC |
#### 13. "Get All at once" - functions #### 13. "Get All at once" - functions

View File

@ -80,6 +80,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">4.8.1</th>
<td>2019-05-31</td>
<td>updated docs</td>
</tr>
<tr> <tr>
<th scope="row">4.8.0</th> <th scope="row">4.8.0</th>
<td>2019-05-31</td> <td>2019-05-31</td>

View File

@ -170,7 +170,7 @@
<img class="logo" src="assets/logo.png"> <img class="logo" src="assets/logo.png">
<div class="title">systeminformation</div> <div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span></div> <div class="subtitle"><span id="typed"></span></div>
<div class="version">Current Version: <span id="version">4.7.3</span></div> <div class="version">Current Version: <span id="version">4.8.1</span></div>
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button> <button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
</div> </div>
<div class="down"> <div class="down">
@ -193,7 +193,7 @@
</div> </div>
<div class="row number-section"> <div class="row number-section">
<div class="col-xl-4 col-lg-4 col-md-4 col-12"> <div class="col-xl-4 col-lg-4 col-md-4 col-12">
<div class="numbers">8,556</div> <div class="numbers">8,665</div>
<div class="title">Lines of code</div> <div class="title">Lines of code</div>
</div> </div>
<div class="col-xl-4 col-lg-4 col-md-4 col-12"> <div class="col-xl-4 col-lg-4 col-md-4 col-12">