forked from Njanderson/resmon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typos, vulnerability fix, & features Njanderson#23 & Njanderson#33
- Loading branch information
1 parent
ea5ce25
commit b8beb9d
Showing
7 changed files
with
148 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.