Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
0ac55bd0e1
|
|||
|
17cfddfd5c
|
|||
|
3a492c1592
|
|||
|
975a94dfe8
|
|||
| 748729dfa3 |
@@ -14,8 +14,8 @@ A plugin for [Obsidian](https://obsidian.md/) that enables you to create Markdow
|
||||
## Installation
|
||||
|
||||
1. **Manual Installation**
|
||||
- Download the plugin files (`main.ts`, `settings.ts`, `styles.css`) and build them using your preferred TypeScript build process.
|
||||
- Place the compiled files in your Obsidian vault's `.obsidian/plugins/your-plugin-folder/` directory.
|
||||
- Download the latest release of the plugin from the [GitHub Releases](https://github.com/maksim77/obsidian-jira/releases) page.
|
||||
- Place the downloaded file into a subfolder within your Obsidian vault’s .obsidian/plugins/ directory.
|
||||
|
||||
2. **Via Community Plugins**
|
||||
- (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
|
||||
```
|
||||
|
||||
The template uses [Nunjucks](https://mozilla.github.io/nunjucks/) syntax. Example:
|
||||
The template uses [Nunjucks](https://mozilla.github.io/nunjucks/) syntax.
|
||||
|
||||
### Example template
|
||||
```nunjucks
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"id": "jira-issue-notes",
|
||||
"name": "Jira Issue Notes",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Plugin for fetching and managing Jira issues directly from your notes",
|
||||
"author": "Maxim Syomochkin",
|
||||
"authorUrl": "https://mak-sim.ru",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
}
|
||||
10
package-lock.json
generated
10
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "obsidian-sample-plugin",
|
||||
"version": "1.0.0",
|
||||
"name": "jira-issue-notes",
|
||||
"version": "1.0.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "obsidian-sample-plugin",
|
||||
"version": "1.0.0",
|
||||
"name": "jira-issue-notes",
|
||||
"version": "1.0.1",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"node-fetch": "^3.3.2",
|
||||
@@ -20,7 +20,6 @@
|
||||
"builtin-modules": "3.3.0",
|
||||
"esbuild": "0.17.3",
|
||||
"obsidian": "latest",
|
||||
"punycode": "^2.3.1",
|
||||
"tslib": "2.4.0",
|
||||
"typescript": "4.7.4"
|
||||
}
|
||||
@@ -2171,6 +2170,7 @@
|
||||
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"peer": true,
|
||||
"engines": {
|
||||
"node": ">=6"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "jira-issue-notes",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Plugin for fetching and managing Jira issues directly from your notes.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
@@ -19,7 +19,6 @@
|
||||
"builtin-modules": "3.3.0",
|
||||
"esbuild": "0.17.3",
|
||||
"obsidian": "latest",
|
||||
"punycode": "^2.3.1",
|
||||
"tslib": "2.4.0",
|
||||
"typescript": "4.7.4"
|
||||
},
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"1.0.0": "0.15.0"
|
||||
}
|
||||
"1.0.0": "0.15.0",
|
||||
"1.0.1": "0.15.0"
|
||||
}
|
||||
Reference in New Issue
Block a user