Merge branch 'master' into dependabot/npm_and_yarn/npm_and_yarn-ccf428d6d1

This commit is contained in:
ClaudiaFang 2026-06-16 12:20:15 +08:00 committed by GitHub
commit 9a15eca7d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 16 additions and 5 deletions

View file

@ -15,7 +15,7 @@ on:
jobs:
CI:
uses: firstsun-dev/.github/.github/workflows/obsidian-plugin-ci.yml@main
uses: firstsun-dev/.github/.github/workflows/obsidian-plugin-ci.yml@v1
with:
plugin-id: "git-file-sync"
skip-sonar: ${{ vars.ENABLE_CI_SONAR != 'true' }}

View file

@ -18,6 +18,7 @@
{ "type": "build", "release": false },
{ "type": "ci", "release": false },
{ "type": "chore", "scope": "deps", "release": "patch" },
{ "type": "chore", "scope": "deps-dev", "release": "patch" },
{ "type": "chore", "release": false },
{ "breaking": true, "release": "major" }
]

View file

@ -1,3 +1,9 @@
## [1.1.1](https://github.com/firstsun-dev/git-files-sync/compare/1.1.0...1.1.1) (2026-06-16)
### Bug Fixes
* **ci:** switch to shared workflow v1 and fix repository url ([3a0f99e](https://github.com/firstsun-dev/git-files-sync/commit/3a0f99e3832e5e288ad586ed856252f829a828ec))
## [1.1.0](https://github.com/firstsun-dev/git-files-sync/compare/1.0.6...1.1.0) (2026-06-16)
### Features

View file

@ -1,7 +1,7 @@
{
"id": "git-file-sync",
"name": "Git File Sync",
"version": "1.1.0",
"version": "1.1.1",
"minAppVersion": "1.12.7",
"description": "Selectively sync individual notes with GitLab or GitHub. Push, pull, diff, and resolve conflicts — file by file, on mobile and desktop.",
"author": "ClaudiaFang",

View file

@ -1,11 +1,14 @@
{
"name": "git-file-sync",
"version": "1.1.0",
"version": "1.1.1",
"description": "Selectively sync individual notes with GitLab or GitHub. Push, pull, diff, and resolve conflicts — file by file, on mobile and desktop.",
"main": "main.js",
"type": "module",
"author": "ClaudiaFang",
"repository": "github:firstsun-dev/git-files-sync",
"repository": {
"type": "git",
"url": "git+https://github.com/firstsun-dev/git-files-sync.git"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",

View file

@ -2,5 +2,6 @@
"1.0.0": "0.15.0",
"1.1.0": "1.12.7",
"1.0.5": "1.12.7",
"1.0.6": "1.12.7"
"1.0.6": "1.12.7",
"1.1.1": "1.12.7"
}