Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Release request changes #8

Merged
merged 4 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "vare",
"name": "VARE",
"minAppVersion": "0.15.0",
"description": "Now you can easily manage your plugins and themes inside Obsidian. Simply select the version you want to install or install unlisted ones from GitHub. Or if you want to test the new beta of your favorite plugin, simply select the version you want, install it and switch back if necessary.",
"minAppVersion": "1.5.11",
"description": "Now you can easily manage your plugins and themes. Simply select the version you want or install unlisted versions from GitHub. You can also install beta version and switch back if necessary.",
"author": "4Source",
"authorUrl": "https://github.com/4Source",
"isDesktopOnly": true,
Expand Down
2 changes: 1 addition & 1 deletion src/settings/SettingsTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class VareSettingTab extends PluginSettingTab {
}
// Ensure contains dir
if (!manifest.dir) {
manifest.dir = plugin.id;
manifest.dir = this.app.vault.configDir + '/plugins/' + plugin.id;
}
// Get the version that should be installed
const version = plugin.targetVersion || manifest.version;
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"0.1.0": "0.15.0"
"0.1.0": "1.5.11"
}