1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Desktop: Fixes #4801: Do not allow update for plugins incompatible with current version (#7936)

This commit is contained in:
Julien
2023-03-17 16:50:51 +08:00
committed by GitHub
parent d9ba27a1ec
commit 71ea74d273
4 changed files with 15 additions and 9 deletions

View File

@ -108,6 +108,10 @@ export default class PluginService extends BaseService {
return this.isSafeMode_;
}
public get appVersion(): string {
return this.appVersion_;
}
public set isSafeMode(v: boolean) {
this.isSafeMode_ = v;
}