Skip to content

Commit 53b47c5

Browse files
committed
Update manifest for release.
1 parent 57ae938 commit 53b47c5

File tree

5 files changed

+37
-8
lines changed

5 files changed

+37
-8
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@
77
* @markdown-confluence/lib bumped from 3.0.4 to 3.0.0
88
* @markdown-confluence/mermaid-electron-renderer bumped from 3.0.4 to 3.0.0
99

10+
## [4.7.0](https://github.com/markdown-confluence/markdown-confluence/compare/obsidian-confluence-v4.6.4...obsidian-confluence-v4.7.0) (2023-04-28)
11+
12+
13+
### Features
14+
15+
* Add links to updated pages on Completed Dialog ([65c1a42](https://github.com/markdown-confluence/markdown-confluence/commit/65c1a42b7b039512d5582b055f8adfb4f25333c8))
16+
17+
18+
### Bug Fixes
19+
20+
* fmt ([91ff4e9](https://github.com/markdown-confluence/markdown-confluence/commit/91ff4e99135b90709ab3f185873b98ce94eb7242))
21+
22+
23+
### Documentation
24+
25+
* Update repo and org names to match new names ([404a85b](https://github.com/markdown-confluence/markdown-confluence/commit/404a85b206704873d57c233131ba4f564c4ccd86))
26+
27+
28+
### Dependencies
29+
30+
* The following workspace dependencies were updated
31+
* dependencies
32+
* @markdown-confluence/lib bumped from 4.6.4 to 4.7.0
33+
* @markdown-confluence/mermaid-electron-renderer bumped from 4.6.4 to 4.7.0
34+
1035
## [4.6.4](https://github.com/markdown-confluence/markdown-confluence/compare/obsidian-confluence-v4.6.3...obsidian-confluence-v4.6.4) (2023-04-28)
1136

1237

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Obsidian Confluence Integration Plugin
22

3-
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/obsidian-confluence/obsidian-confluence/badge)](https://api.securityscorecards.dev/projects/github.com/obsidian-confluence/obsidian-confluence)
3+
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/markdown-confluence/markdown-confluence/badge)](https://api.securityscorecards.dev/projects/github.com/markdown-confluence/markdown-confluence)
44

55
Copyright (c) 2022 Atlassian Pty Ltd
66

@@ -23,7 +23,7 @@ Copyright (c) 2022 Atlassian US, Inc.
2323
> If you would like to use the plugin currently you will need to use [Alternative Installation](https://obsidian-confluence.com/getting-started/installation-brat.html) instructions.
2424
2525

26-
1. Install the `obsidian-confluence` plugin from Obsidian's community plugins browser.
26+
1. Install the `confluence-integration` plugin from Obsidian's community plugins browser.
2727
2. Open the plugin settings and configure the following fields:
2828

2929
- `Confluence Base URL`: The base URL of your Atlassian Confluence instance (e.g., `https://your-domain.atlassian.net`)
@@ -60,7 +60,7 @@ connie-publish: true
6060
```
6161

6262
### Example Workflow
63-
1. Install and configure the obsidian-confluence plugin.
63+
1. Install and configure the `confluence-integration` plugin.
6464
2. Create a folder in your Obsidian vault named "Confluence Pages" (or the folder name you specified in the settings).
6565
3. Add notes to this folder or add the connie-publish frontmatter to other notes.
6666
4. Click the cloud icon in the ribbon or use the "Publish All to Confluence" command to publish your notes to Confluence.

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "confluence-integration",
33
"name": "Confluence Integration",
4-
"version": "4.6.4",
4+
"version": "4.7.0",
55
"minAppVersion": "1.0.0",
66
"description": "This plugin allows you to publish your notes to Confluence",
77
"author": "andymac4182",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-confluence",
3-
"version": "4.6.4",
3+
"version": "4.7.0",
44
"description": "This library allows you to publish your notes to Confluence",
55
"main": "main.js",
66
"type": "module",
@@ -32,8 +32,8 @@
3232
"react": "^16.14.0",
3333
"react-dom": "^16.14.0",
3434
"react-intl-next": "npm:react-intl@^5.18.1",
35-
"@markdown-confluence/lib": "4.6.4",
36-
"@markdown-confluence/mermaid-electron-renderer": "4.6.4"
35+
"@markdown-confluence/lib": "4.7.0",
36+
"@markdown-confluence/mermaid-electron-renderer": "4.7.0"
3737
},
3838
"resolutions": {
3939
"prosemirror-model": "1.14.3"

src/CompletedModal.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ const CompletedView: React.FC<UploadResultsProps> = ({ uploadResults }) => {
3838
return filesUploadResult
3939
.filter((result) => result[`${type}Result`] === "updated")
4040
.map((result, index) => (
41-
<li key={index}>{result.adfFile.absoluteFilePath}</li>
41+
<li key={index}>
42+
<a href={result.adfFile.pageUrl}>
43+
{result.adfFile.absoluteFilePath}
44+
</a>
45+
</li>
4246
));
4347
};
4448

0 commit comments

Comments
 (0)