Skip to content

Commit

Permalink
Version 1.8.0
Browse files Browse the repository at this point in the history
- Change settings dynamically #38
- Icon in side bar (use of svg) #48
- Icon for treeView (use of vscode builtin icons) #95
- Fix use of character ~ on linux system #47
- Use of fs.mkdirSync, fs.copyFile inplace of third library usage #75
- local-history.treeLocation not working #98
- Remove commands for tree in the command panel #94
  • Loading branch information
zabel-xyz committed Feb 15, 2020
1 parent 1bc2d14 commit 3c859af
Show file tree
Hide file tree
Showing 15 changed files with 272 additions and 203 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*.map
*.vsix

.history/*
**/.history/*
node_modules/*
out/*
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
##1.8.0
### Improvements
* Change settings dynamically [#38](https://github.com/zabel-xyz/local-history/issues/38)
* Icon in side bar (use of svg) [#48](https://github.com/zabel-xyz/local-history/issues/48)
* Icon for treeView (use of vscode builtin icons) [#95](https://github.com/zabel-xyz/local-history/issues/95)
### Bugs fixed
* Fix use of character ~ on linux system [#47](https://github.com/zabel-xyz/local-history/issues/47)
* Use of fs.mkdirSync, fs.copyFile inplace of third library usage [#75](https://github.com/zabel-xyz/local-history/issues/75)
* local-history.treeLocation not working [#98](https://github.com/zabel-xyz/local-history/issues/98)
* Remove commands for tree in the command panel [#94](https://github.com/zabel-xyz/local-history/issues/94)

##1.7.0
### New features
* 3 different history views (current, all, specific)
Expand Down
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,18 @@ The files displayed depend on setting `local-history.maxDisplay` to see more, us
"local-history.dateLocale": // The locale to use when displaying date (e.g.: "fr-CH" or "en-GB" or ...)

"local-history.path": // Specify another location for .history folder (null: use workspaceFolder)
This settings must be an abolute path. You can also start your path with:
This settings must be an absolute path.

You can start your path with:
${workspaceFolder}: current workspace folder
e.g. ${workspaceFolder}/.vscode to save in each workspace folder .vscode/.history
${workspaceFolder: 0}: first workspace folder
e.g. workspace folders A, B, C. But save always in A/.history
${workspaceFolder: index}: specific workspace index
e.g. workspace folders A, B, C. But save always in A/.history => ${workspaceFolder: 0}

Your can also use specific variable in path:
- %variable%: an environnement variable (e.g. %AppData%)
- ~: the home directory (linux)

"local-history.absolute": // Save absolute or relative path in local-history.path
true: (absolute) // <local-history.path>/.history/<absolutePath>
false: (relative) // (default) <local-history.path>/.history/<workspaceFolder.basename>/<relativePath>
Expand Down
Loading

0 comments on commit 3c859af

Please sign in to comment.