generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6750451
commit 8fa2b46
Showing
22 changed files
with
1,006 additions
and
1,720 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,40 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { defineConfig } from "vitepress"; | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "Obsidian Wikipedia Search", | ||
description: "An Obsidian plugin to search, link and open Wikipedia articles directly from the app.", | ||
lang: 'en-US', | ||
base: '/obsidian-wikipedia-search/', | ||
|
||
themeConfig: { | ||
nav: [ | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: 'Settings', link: '/settings' }, | ||
{ text: 'Commands', link: '/commands' }, | ||
], | ||
outline: [2,3], | ||
sidebar: [ | ||
{ | ||
text: '', | ||
items: [ | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: "Installation", link: '/installation' }, | ||
{ text: "Settings", link: '/settings' }, | ||
{ text: "Commands", link: '/commands' }, | ||
{ text: "Help", link: '/help' }, | ||
{ text: "Roadmap", link: '/roadmap' }, | ||
{ text: "Changelog", link: '/changelog' }, | ||
{ text: "Support", link: '/support' }, | ||
{ text: "License", link: '/license' }, | ||
|
||
] | ||
} | ||
], | ||
title: "Obsidian Wikipedia Search", | ||
description: "An Obsidian plugin to search, link and open Wikipedia articles directly from the app.", | ||
lang: "en-US", | ||
base: "/obsidian-wikipedia-search/", | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/StrangeGirlMurph/obsidian-wikipedia-search' } | ||
], | ||
themeConfig: { | ||
nav: [ | ||
{ text: "Getting Started", link: "/getting-started" }, | ||
{ text: "Settings", link: "/settings" }, | ||
{ text: "Commands", link: "/commands" }, | ||
], | ||
outline: [2, 3], | ||
sidebar: [ | ||
{ | ||
text: "", | ||
items: [ | ||
{ text: "Getting Started", link: "/getting-started" }, | ||
{ text: "Installation", link: "/installation" }, | ||
{ text: "Settings", link: "/settings" }, | ||
{ text: "Commands", link: "/commands" }, | ||
{ text: "Help", link: "/help" }, | ||
{ text: "Roadmap", link: "/roadmap" }, | ||
{ text: "Changelog", link: "/changelog" }, | ||
{ text: "Support", link: "/support" }, | ||
{ text: "License", link: "/license" }, | ||
], | ||
}, | ||
], | ||
|
||
editLink: { | ||
pattern: 'https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/edit/master/docs/:path' | ||
}, | ||
socialLinks: [{ icon: "github", link: "https://github.com/StrangeGirlMurph/obsidian-wikipedia-search" }], | ||
|
||
|
||
} | ||
}) | ||
editLink: { | ||
pattern: "https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/edit/master/docs/:path", | ||
}, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,109 +1,141 @@ | ||
# Changelog | ||
|
||
## [2.4.4](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.4.4) (15.03.2024) | ||
|
||
- Tweaks the auto cleanup for some more edge cases. | ||
|
||
## [2.4.3](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.4.3) (07.03.2024) | ||
|
||
- Fixes a forbidden characters in file name bug. (#30) | ||
- Fixes a bug with the directory search in the settings with the forced `/`. (#27) | ||
|
||
## [2.4.2](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.4.2) (07.03.2024) | ||
|
||
- Adds the `{thumbnailUrl}` option for the template strings. | ||
|
||
## [2.4.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.4.1) (23.02.2024) | ||
|
||
- Fixes a bug where a template still uses the specified template file without creating a note | ||
- Improves the auto-cleanup feature to also parse the LaTeX of a Wikipedia articles intro. | ||
|
||
## [2.4.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.4.0) (17.12.2023) | ||
|
||
- Fixes a big bug that made using template files with the link article command impossible. (#25) | ||
- Adds the option to use the parent folder of the currently active note to create new notes in. (#24) | ||
|
||
## [2.3.3](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.3.3) (02.12.2023) | ||
|
||
- Adds the template file option. | ||
- Adds the `Override files` setting | ||
- Fixes some bugs. | ||
|
||
## [2.3.2](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.3.2) (27.11.2023) | ||
|
||
- Adds the `Create article note` command. | ||
- Adds the `Open created article notes` setting. | ||
|
||
## [2.3.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.3.1) (18.11.2023) | ||
|
||
- Introduces the new documentation and links it from the settings page. | ||
|
||
## [2.3.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.3.0) (18.11.2023) | ||
|
||
- Fixes article redirect bugs and adds intro auto cleanup. | ||
|
||
## [2.2.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.2.1) (14.11.2023) | ||
|
||
- Fixes an IOS bug (#20). | ||
- Fixes typos and stuff. | ||
|
||
## [2.2.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.2.0) (16.10.2023) | ||
|
||
- Adds note creation for articles and improves a bunch of stuff. | ||
|
||
## [2.1.4](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.1.4) (29.09.2023) | ||
|
||
- Fixes a mobile bug with the surfing integration. | ||
|
||
## [2.1.2](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.1.2) (20.08.2023) | ||
|
||
- Adds the `{thumbnail}` option for the templates. | ||
|
||
## [2.1.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.1.1) (03.08.2023) | ||
|
||
- Small styling and functionality patch. | ||
|
||
## [2.1.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/2.1.0) (03.08.2023) | ||
|
||
- Changes `Open article` to use the surfing plugin. | ||
|
||
## [1.9.2](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.9.2) (19.07.2023) | ||
|
||
- Fixes links opening when offline. | ||
|
||
## [1.9.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.9.1) (12.07.2023) | ||
|
||
- Fixes file navigation bug (#14). | ||
|
||
## [1.9.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.9.0) (10.07.2023) | ||
|
||
- Adds an `Open article` command. | ||
|
||
## [1.8.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.8.1) (25.06.2023) | ||
|
||
- Fixes a small intro language bug. | ||
|
||
## [1.8.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.8.0) (14.06.2023) | ||
|
||
- Adds the option for multiple templates. | ||
- Adds a {language} and {languageCode} parameter for the templates. | ||
- Some smaller tweaks. | ||
|
||
## [1.7.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.7.1) (25.05.2023) | ||
|
||
- Adds a setting for choosing whether or not to use the articles title instead of the selected text for '{title}' parameter when hyperlinking. | ||
|
||
## [1.7.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.7.0) (25.05.2023) | ||
|
||
- Implements the option for the cursor placement (#7) | ||
- Adds the option to auto-select single response queries (#8) | ||
|
||
## [1.6.3](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.6.3) (21.04.2023) | ||
|
||
- Removes an unnecessary check. | ||
- Update the funding url. | ||
|
||
## [1.6.2](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.6.2) (15.04.2023) | ||
|
||
- Fixes a bug with some queries messing up the urls and therefore showing wrong descriptions. | ||
|
||
## [1.6.1](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.6.1) (31.03.2023) | ||
|
||
- Improves the offline error handling. A missing internet connection gets caught right away now. | ||
|
||
## [1.6.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.6.0) (31.03.2023) | ||
|
||
- Adds `{intro}` for the templates. | ||
- Improve the UX with better setting descriptions and so on. | ||
|
||
## [1.5.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.5.0) (31.03.2023) | ||
|
||
- Added quicksearching different languages. | ||
|
||
## [1.4.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.4.0) (31.03.2023) | ||
|
||
- Added hyperlinking. | ||
|
||
## [1.3.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.3.0) (29.03.2023) | ||
|
||
- Improve search with articles description. | ||
|
||
## [1.2.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.2.0) (23.03.2023) | ||
|
||
- Minor code and meta data changes. | ||
|
||
## [1.1.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.1.0) (20.03.2023) | ||
|
||
- Improved error handling when the user is offline. | ||
|
||
## [1.0.0](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/releases/tag/1.0.0) (15.03.2023) | ||
- Birth | ||
|
||
- Birth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Help | ||
|
||
If you tried finding an answer to your question in this documentation but still need help with something feel free to ask the community and me for help in the [Q&A in the GitHub Discussions Tab](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/discussions/categories/q-a). | ||
If you tried finding an answer to your question in this documentation but still need help with something feel free to ask the community and me for help in the [Q&A in the GitHub Discussions Tab](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/discussions/categories/q-a). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ hero: | |
text: Settings | ||
link: /settings | ||
- theme: alt | ||
text: Commands | ||
text: Commands | ||
link: /commands | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# License | ||
|
||
This project and documentation is licensed under the [Humane Software License](https://github.com/StrangeGirlMurph/The-Humane-Software-License) see [LICENSE](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/blob/master/LICENSE). | ||
This project and documentation is licensed under the [Humane Software License](https://github.com/StrangeGirlMurph/The-Humane-Software-License) see [LICENSE](https://github.com/StrangeGirlMurph/obsidian-wikipedia-search/blob/master/LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Roadmap | ||
|
||
For now this project is done. As long as there aren't any new ideas from the community or bugs found there isn't really anything to do. I am simply out of ideas and pretty happy with how everything is right now. If you have anything that needs to be done create an issue! | ||
For now this project is done. As long as there aren't any new ideas from the community or bugs found there isn't really anything to do. I am simply out of ideas and pretty happy with how everything is right now. If you have anything that needs to be done create an issue! |
Oops, something went wrong.