mirror of
https://github.com/markusmo3/obsidian-private-mode.git
synced 2026-07-22 05:42:42 +00:00
fixed manifest id
This commit is contained in:
parent
4b4137b8a6
commit
ab786bc109
5 changed files with 7 additions and 7 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
- name: Build plugin
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
PLUGIN_NAME: ${{ github.event.repository.name }}
|
||||
PLUGIN_NAME: private-mode
|
||||
run: |
|
||||
npm install
|
||||
npm run build
|
||||
|
|
|
|||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -24,5 +24,5 @@ data.json
|
|||
.DS_Store
|
||||
|
||||
# Exclude release
|
||||
obsidian-private-mode/
|
||||
obsidian-private-mode.zip
|
||||
private-mode/
|
||||
private-mode.zip
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"id": "obsidian-private-mode",
|
||||
"id": "private-mode",
|
||||
"name": "Private Mode",
|
||||
"version": "1.1.2",
|
||||
"minAppVersion": "1.6.0",
|
||||
|
|
@ -7,4 +7,4 @@
|
|||
"author": "markusmo3",
|
||||
"authorUrl": "https://github.com/markusmo3",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
"scripts": {
|
||||
"dev": "node esbuild.config.mjs",
|
||||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && sass styles.scss styles.css",
|
||||
"make-release": "npm run build && bash ./.github/make_release.sh obsidian-private-mode",
|
||||
"make-release": "npm run build && bash ./.github/make_release.sh private-mode",
|
||||
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
||||
"lint": "eslint --cache --fix"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -56,6 +56,6 @@ body:not(.private-mode-reveal-all) .callout[data-callout="private"]:not(.is-coll
|
|||
filter: none;
|
||||
}
|
||||
|
||||
body.private-mode-unprotected-screenshare .status-bar-item.plugin-obsidian-private-mode {
|
||||
body.private-mode-unprotected-screenshare .status-bar-item.plugin-private-mode {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue