5 Commits

Author SHA1 Message Date
0ac55bd0e1 Fix typo in README 2025-06-01 21:07:17 +03:00
17cfddfd5c Fix typo in README 2025-06-01 21:03:49 +03:00
3a492c1592 Remove unused package deps 2025-06-01 20:59:01 +03:00
975a94dfe8 1.0.1 2025-06-01 14:40:20 +03:00
748729dfa3 Update README.md
Update manual installation instructions in README

Clarified the manual installation process
2025-06-01 04:48:07 +03:00
5 changed files with 14 additions and 14 deletions

View File

@@ -14,8 +14,8 @@ A plugin for [Obsidian](https://obsidian.md/) that enables you to create Markdow
## Installation ## Installation
1. **Manual Installation** 1. **Manual Installation**
- Download the plugin files (`main.ts`, `settings.ts`, `styles.css`) and build them using your preferred TypeScript build process. - Download the latest release of the plugin from the [GitHub Releases](https://github.com/maksim77/obsidian-jira/releases) page.
- Place the compiled files in your Obsidian vault's `.obsidian/plugins/your-plugin-folder/` directory. - Place the downloaded file into a subfolder within your Obsidian vaults .obsidian/plugins/ directory.
2. **Via Community Plugins** 2. **Via Community Plugins**
- (Not yet available in the community plugins list.) - (Not yet available in the community plugins list.)
@@ -52,7 +52,7 @@ You can explore the available data fields by performing a `curl` request to your
curl -u your-username:password https://jira.example.com/rest/api/2/issue/PROJ-123 curl -u your-username:password https://jira.example.com/rest/api/2/issue/PROJ-123
``` ```
The template uses [Nunjucks](https://mozilla.github.io/nunjucks/) syntax. Example: The template uses [Nunjucks](https://mozilla.github.io/nunjucks/) syntax.
### Example template ### Example template
```nunjucks ```nunjucks

View File

@@ -1,7 +1,7 @@
{ {
"id": "jira-issue-notes", "id": "jira-issue-notes",
"name": "Jira Issue Notes", "name": "Jira Issue Notes",
"version": "1.0.0", "version": "1.0.1",
"minAppVersion": "0.15.0", "minAppVersion": "0.15.0",
"description": "Plugin for fetching and managing Jira issues directly from your notes", "description": "Plugin for fetching and managing Jira issues directly from your notes",
"author": "Maxim Syomochkin", "author": "Maxim Syomochkin",

10
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "obsidian-sample-plugin", "name": "jira-issue-notes",
"version": "1.0.0", "version": "1.0.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "obsidian-sample-plugin", "name": "jira-issue-notes",
"version": "1.0.0", "version": "1.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"node-fetch": "^3.3.2", "node-fetch": "^3.3.2",
@@ -20,7 +20,6 @@
"builtin-modules": "3.3.0", "builtin-modules": "3.3.0",
"esbuild": "0.17.3", "esbuild": "0.17.3",
"obsidian": "latest", "obsidian": "latest",
"punycode": "^2.3.1",
"tslib": "2.4.0", "tslib": "2.4.0",
"typescript": "4.7.4" "typescript": "4.7.4"
} }
@@ -2171,6 +2170,7 @@
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"peer": true,
"engines": { "engines": {
"node": ">=6" "node": ">=6"
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "jira-issue-notes", "name": "jira-issue-notes",
"version": "1.0.0", "version": "1.0.1",
"description": "Plugin for fetching and managing Jira issues directly from your notes.", "description": "Plugin for fetching and managing Jira issues directly from your notes.",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
@@ -19,7 +19,6 @@
"builtin-modules": "3.3.0", "builtin-modules": "3.3.0",
"esbuild": "0.17.3", "esbuild": "0.17.3",
"obsidian": "latest", "obsidian": "latest",
"punycode": "^2.3.1",
"tslib": "2.4.0", "tslib": "2.4.0",
"typescript": "4.7.4" "typescript": "4.7.4"
}, },

View File

@@ -1,3 +1,4 @@
{ {
"1.0.0": "0.15.0" "1.0.0": "0.15.0",
"1.0.1": "0.15.0"
} }