Skip to content

Commit

Permalink
Merge branch 'master' into interactive_ui_poc
Browse files Browse the repository at this point in the history
  • Loading branch information
muness authored Jun 11, 2024
2 parents 7ab6b68 + 1b53372 commit 6831146
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "cloud-atlas",
"name": "Cloud Atlas",
"version": "1.1.1",
"minAppVersion": "1.5.11",
"version": "1.1.2",
"minAppVersion": "1.5.12",
"description": "Cloud Atlas provides a unique way to use content from your vault with ChatGPT. Reference a note and it (optionally) gets resolved and sent along. We also provide a Canvas interface for ChatGPT. Advanced features include chaining results and batching.",
"author": "Cloud Atlas",
"authorUrl": "https://cloud-atlas.ai",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloud-atlas",
"version": "1.1.1",
"version": "1.1.2",
"description": "Interoperability between Obsidian and Cloud Atlas",
"main": "dist/main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ export default class CloudAtlasPlugin extends Plugin {

if (metadata?.frontmatter) {
const frontmatter = metadata?.frontmatter;
const links = frontmatter["ca-url"];
links.map((link: string) => {
const links = frontmatter["ca-url"];//handle ca-url being undefined
links && links.map((link: string) => {
additionalContext[link] = link;
});

Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"0.9.0": "1.5.3",
"0.9.1mobile": "1.5.3",
"0.9.1": "1.5.3",
"1.1.1": "1.5.11"
"1.1.1": "1.5.11",
"1.1.2": "1.5.12"
}

0 comments on commit 6831146

Please sign in to comment.