mirror of
https://github.com/shumadrid/obsidian-git-changelog.git
synced 2026-07-22 05:42:16 +00:00
0.3.0
This commit is contained in:
parent
c872ed88c8
commit
aacbfc1ab0
5 changed files with 20 additions and 5 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
|||
# CHANGELOG
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Features
|
||||
|
||||
- Add "Copy commit hash" context menu item.
|
||||
- Add "Git changelog: Exclude/Reinclude" context menu item.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Show loading state when status bar stats are computing.
|
||||
- Improve ExcludeFilesAndFolders parsing logic.
|
||||
- Fix faulty status bar's queue logic that was sabotaging other tasks.
|
||||
- Revert faulty "is binary file" check.
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@
|
|||
"id": "git-changelog",
|
||||
"isDesktopOnly": true,
|
||||
"name": "Git Changelog",
|
||||
"version": "0.2.1",
|
||||
"version": "0.3.0",
|
||||
"minAppVersion": "1.7.2"
|
||||
}
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "git-changelog",
|
||||
"version": "0.2.1",
|
||||
"version": "0.3.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "git-changelog",
|
||||
"version": "0.2.1",
|
||||
"version": "0.3.0",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.21.0",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "git-changelog",
|
||||
"version": "0.2.1",
|
||||
"version": "0.3.0",
|
||||
"description": "Uses Git to display dynamic vault and file changelogs in the sidebar, useful for spotting data loss.",
|
||||
"keywords": [],
|
||||
"license": "MIT",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"0.1.0": "1.7.2",
|
||||
"0.2.0": "1.7.2",
|
||||
"0.2.1": "1.7.2"
|
||||
"0.2.1": "1.7.2",
|
||||
"0.3.0": "1.7.2"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue