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
|
## 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 vault’s .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
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"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",
|
||||||
"authorUrl": "https://mak-sim.ru",
|
"authorUrl": "https://mak-sim.ru",
|
||||||
"isDesktopOnly": true
|
"isDesktopOnly": true
|
||||||
}
|
}
|
||||||
10
package-lock.json
generated
10
package-lock.json
generated
@@ -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"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -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