Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"eg2.tslint"
"ms-vscode.vscode-typescript-tslint-plugin"
]
}
12 changes: 10 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
"out": false,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"cSpell.words": [
"RRGGBB",
"updatefrequencyms"
]
}
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,37 @@
# Change Log

## [1.0.8]

- Fixed readme typos, code typos, set CPU Frequency to have a leading 0 if less than 10% issue: [#33](https://github.com/Njanderson/resmon/issues/33), removed a small [vulnerability](https://www.npmjs.com/advisories/1179), added option for issue: [#23](https://github.com/Njanderson/resmon/issues/230), and updated recommended VS Code module.

## [1.0.7]

- Changed underlying CPU frequency API, added hiding battery/CPU temp information if the device lacks a battery/doesn't support CPU temp sensing, added some clarifications about CPU frequency behavior on Windows.

## [1.0.6]

- Added DiskSpace, CPU Temperature. Adjusted battery icon.

## [1.0.5]

- Refactored code heavily, addressed Github issue with memory.used versus memory.active.

## [1.0.4]

- Added icon for store.

## [1.0.3]
- Changed icons. Added choosable units.

- Changed icons. Added selectable units.

## [1.0.2]

- Actually properly added systeminformation as a real dependency.

## [1.0.1]

- Properly added systeminformation as a real dependency

## [1.0.0]
- Initial release

- Initial release
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Just the system information node module.
- `resmon.show.battery`: Show battery percentage remaining.
- `resmon.show.disk`: Show disk space information.
- `resmon.show.cputemp`: Show CPU temperature. May not work without the lm-sensors module on Linux. May require running VS Code as admin on Windows.
- `resmon.disk.format`: Configures how the disk space is displayed (percentage remaining/used, absolute remaining, used out of totel).
- `resmon.disk.format`: Configures how the disk space is displayed (percentage remaining/used, absolute remaining, used out of total).
- `resmon.disk.drives`: Drives to show. For example, 'C:' on Windows, and '/dev/sda1' on Linux.
- `resmon.updatefrequencyms`: How frequently to query systeminformation. The minimum is 200 ms as to prevent accidentally updating so fast as to freeze up your machine.
- `resmon.freq.unit`: Unit used for the CPU frequency (GHz-Hz).
Expand All @@ -36,7 +36,12 @@ A better solution for Windows CPU Usage would be great. I investigated alternati

## Change Log

### [1.0.8]

- Fixed readme typos, code typos, set CPU Frequency to have a leading 0 if less than 10% issue: [#33](https://github.com/Njanderson/resmon/issues/33), removed a small [vulnerability](https://www.npmjs.com/advisories/1179), added option for issue: [#23](https://github.com/Njanderson/resmon/issues/230), and updated recommended VS Code module.

### [1.0.7]

- Changed underlying CPU frequency API, added hiding battery/CPU temp information if the device lacks a battery/doesn't support CPU temp sensing, added some clarifications about CPU frequency behavior on Windows.

### [1.0.6]
Expand All @@ -53,7 +58,7 @@ A better solution for Windows CPU Usage would be great. I investigated alternati

### [1.0.3]

- Changed icons. Added choosable units.
- Changed icons. Added selectable units.

### [1.0.2]

Expand Down
Loading