Skip to content

Commit

Permalink
chore: release v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoluoboding committed Sep 10, 2020
1 parent a705b56 commit 5c94aef
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 3 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## [0.0.3](https://github.com/xiaoluoboding/vscode-folder-size/compare/v0.0.2...v0.0.3) (2020-09-10)


### Features

* hide status bar when fire closeFileEvent ([a705b56](https://github.com/xiaoluoboding/vscode-folder-size/commit/a705b56975c5eb7f806f414d41750105782aaed8))



## [0.0.2](https://github.com/xiaoluoboding/vscode-folder-size/compare/v0.0.1...v0.0.2) (2020-09-09)



## [0.0.1](https://github.com/xiaoluoboding/vscode-folder-size/compare/8b44bcfda2c8525a249a01f56007a34149b57036...v0.0.1) (2020-09-06)


### Features

* add countup recursive directory file size ([25b1cba](https://github.com/xiaoluoboding/vscode-folder-size/commit/25b1cbacb70da2e6d8498c91efee93867ab6912d))
* add preview image ([4fd4366](https://github.com/xiaoluoboding/vscode-folder-size/commit/4fd4366ae89c2abb3f822a71fe250775b9b20945))
* add the logo ([3252edd](https://github.com/xiaoluoboding/vscode-folder-size/commit/3252eddf0b73ac1481232816b04633b0cc5d0b00))
* change the counting folder size event ([0a18ab6](https://github.com/xiaoluoboding/vscode-folder-size/commit/0a18ab615f46e18cb3941a3a7fad03e2a2706f8d))
* countup files in dir size ([06df266](https://github.com/xiaoluoboding/vscode-folder-size/commit/06df2664d95c260f45bdee5fc3a30ec8a9be1ba7))
* finish countup file size feature ([8b44bcf](https://github.com/xiaoluoboding/vscode-folder-size/commit/8b44bcfda2c8525a249a01f56007a34149b57036))
* use command show information ([7fe7fa5](https://github.com/xiaoluoboding/vscode-folder-size/commit/7fe7fa5ffa9e0da487084d23ba7709cca31bc767))
* use map cache readed directory ([7dd4c2d](https://github.com/xiaoluoboding/vscode-folder-size/commit/7dd4c2d1300c8f130cfe2b989735087ef4ed3ddd))



14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,18 @@
## Usage

Select the code file(TextDocument), Extension will counting [file | folder] size.
### Counting [File | Folder] Size

Select / Save the code file(TextDocument), Extension will counting [file | folder] size.

![preview](./images/preview.gif)

### Counting Number of Files in Folder

Click The [File | Folder] Status Bar, Extension will show you the number of files in the folder.

![files-number](./images/files-number.png)

## Configuration

The Folders Not Counting, default is: `"node_modules|.git"`
Expand All @@ -23,6 +31,10 @@ The Folders Not Counting, default is: `"node_modules|.git"`
}
```

## Changelog

[CHANGELOG](./CHANGELOG.md)

## License

MIT [@xiaoluoboding](https://github.com/xiaoluoboding)
Binary file added images/files-number.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-folder-size",
"displayName": "Folder Size",
"description": "Shows the current file | folder size in the status bar",
"version": "0.0.2",
"version": "0.0.3",
"publisher": "xiaoluoboding",
"icon": "images/logo.png",
"repository": {
Expand Down Expand Up @@ -40,7 +40,8 @@
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"package": "vsce package"
"package": "vsce package",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"@types/node": "^14.6.3",
Expand Down

0 comments on commit 5c94aef

Please sign in to comment.