Skip to content

Commit 143a54f

Browse files
committed
0.1.4
1 parent a7e8104 commit 143a54f

File tree

5 files changed

+52
-38
lines changed

5 files changed

+52
-38
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
9+
## [0.1.4] - 2025-03-05
10+
11+
### Changes
12+
13+
- Fine tune settings tab
14+
- Check if titles are already synced
15+
- Fine tune spacing before first header
16+
- Handle empty first header
17+
- Add test scripts
18+
- Add initial version
19+
- Initial commit
20+
821
## [0.1.3] - 2025-03-05
922

1023
### Added

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"id": "file-title-updater",
33
"name": "File Title Updater",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"minAppVersion": "1.0.0",
66
"description": "Synchronize titles between filename, frontmatter, and first heading in Obsidian notes",
77
"author": "wenlzhang",
88
"authorUrl": "https://github.com/wenlzhang",
99
"fundingUrl": {
10-
"Buy Me a Coffee": "https://ko-fi.com/f84556"
11-
},
10+
"Buy Me a Coffee": "https://ko-fi.com/f84556"
11+
},
1212
"isDesktopOnly": false
1313
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "file-title-updater",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Synchronize titles between filename, frontmatter, and first heading in Obsidian notes",
55
"main": "main.js",
66
"scripts": {
7-
"dev": "node esbuild.config.mjs",
8-
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true",
9-
"pretest": "eslint src/",
10-
"test": "jest --passWithNoTests",
11-
"prettier": "prettier -w 'src/**/*.ts'",
12-
"preversion": "npm run build && npm run test",
13-
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
14-
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)"
15-
},
7+
"dev": "node esbuild.config.mjs",
8+
"build": "npm run prettier && node esbuild.config.mjs production && cp manifest.json build && [ -f styles.css ] && cp styles.css build/ || true",
9+
"pretest": "eslint src/",
10+
"test": "jest --passWithNoTests",
11+
"prettier": "prettier -w 'src/**/*.ts'",
12+
"preversion": "npm run build && npm run test",
13+
"version": "node version-bump.mjs && node version-changelog.mjs && git add manifest.json versions.json CHANGELOG.md && cp manifest.json build/",
14+
"postversion": "git push && git push --tags && gh release create $npm_package_version -F CHANGELOG.md --draft build/main.js manifest.json $([ -f styles.css ] && echo 'styles.css' || true)"
15+
},
1616
"version-tag-prefix": "",
1717
"keywords": [
1818
"obsidian",
@@ -23,25 +23,25 @@
2323
],
2424
"author": "wenlzhang",
2525
"devDependencies": {
26-
"@eslint/js": "^9.16.0",
27-
"@types/jest": "^29.5.14",
28-
"@types/node": "^16.11.7",
29-
"@typescript-eslint/eslint-plugin": "^5.40.1",
30-
"@typescript-eslint/parser": "^5.40.1",
31-
"builtin-modules": "^4.0.0",
32-
"esbuild": "^0.13.15",
33-
"eslint": "^8.24.0",
34-
"eslint-config-standard": "^17.0.0",
35-
"eslint-plugin-import": "^2.26.0",
36-
"eslint-plugin-node": "^11.1.0",
37-
"eslint-plugin-promise": "^6.0.0",
38-
"jest": "^29.7.0",
39-
"obsidian": "latest",
40-
"prettier": "^3.4.2",
41-
"ts-jest": "^29.2.5",
42-
"typescript": "^4.9.5"
43-
},
44-
"dependencies": {
45-
"tslib": "^2.8.1"
46-
}
26+
"@eslint/js": "^9.16.0",
27+
"@types/jest": "^29.5.14",
28+
"@types/node": "^16.11.7",
29+
"@typescript-eslint/eslint-plugin": "^5.40.1",
30+
"@typescript-eslint/parser": "^5.40.1",
31+
"builtin-modules": "^4.0.0",
32+
"esbuild": "^0.13.15",
33+
"eslint": "^8.24.0",
34+
"eslint-config-standard": "^17.0.0",
35+
"eslint-plugin-import": "^2.26.0",
36+
"eslint-plugin-node": "^11.1.0",
37+
"eslint-plugin-promise": "^6.0.0",
38+
"jest": "^29.7.0",
39+
"obsidian": "latest",
40+
"prettier": "^3.4.2",
41+
"ts-jest": "^29.2.5",
42+
"typescript": "^4.9.5"
43+
},
44+
"dependencies": {
45+
"tslib": "^2.8.1"
46+
}
4747
}

versions.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"0.1.0": "1.0.0",
33
"0.1.1": "1.0.0",
44
"0.1.2": "1.0.0",
5-
"0.1.3": "1.0.0"
6-
}
5+
"0.1.3": "1.0.0",
6+
"0.1.4": "1.0.0"
7+
}

0 commit comments

Comments
 (0)