mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
remove checkForUpdates from login screen
This commit is contained in:
parent
0e41f9d1bc
commit
d825a1a45a
@ -157,14 +157,14 @@ export default class GlobalMenuWidget extends BasicWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async updateVersionStatus() {
|
async updateVersionStatus() {
|
||||||
if (options.get("checkForUpdates") == 'true') {
|
if (options.get("checkForUpdates") !== 'true') {
|
||||||
const latestVersion = await this.fetchLatestVersion();
|
return;
|
||||||
|
|
||||||
this.updateAvailableWidget.updateVersionStatus(latestVersion);
|
|
||||||
|
|
||||||
this.$updateToLatestVersionButton.toggle(latestVersion > glob.triliumVersion);
|
|
||||||
this.$updateToLatestVersionButton.find(".version-text").text(`Version ${latestVersion} is available, click to download.`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const latestVersion = await this.fetchLatestVersion();
|
||||||
|
this.updateAvailableWidget.updateVersionStatus(latestVersion);
|
||||||
|
this.$updateToLatestVersionButton.toggle(latestVersion > glob.triliumVersion);
|
||||||
|
this.$updateToLatestVersionButton.find(".version-text").text(`Version ${latestVersion} is available, click to download.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
async fetchLatestVersion() {
|
async fetchLatestVersion() {
|
||||||
|
@ -5,7 +5,6 @@ const optionService = require('../services/options');
|
|||||||
const myScryptService = require('../services/my_scrypt');
|
const myScryptService = require('../services/my_scrypt');
|
||||||
const log = require('../services/log');
|
const log = require('../services/log');
|
||||||
const passwordService = require("../services/password");
|
const passwordService = require("../services/password");
|
||||||
const options = require('../services/options');
|
|
||||||
|
|
||||||
function loginPage(req, res) {
|
function loginPage(req, res) {
|
||||||
res.render('login', { failedAuth: false });
|
res.render('login', { failedAuth: false });
|
||||||
@ -37,7 +36,6 @@ function setPassword(req, res) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
options.setOption("checkForUpdates", req.body['check-for-updates'] == 'on');
|
|
||||||
passwordService.setPassword(password1);
|
passwordService.setPassword(password1);
|
||||||
|
|
||||||
res.redirect('login');
|
res.redirect('login');
|
||||||
|
@ -33,10 +33,6 @@
|
|||||||
<input id="password" name="password2" placeholder="" class="form-control" type="password">
|
<input id="password" name="password2" placeholder="" class="form-control" type="password">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
<input checked id="check-for-updates" type="checkbox" name="check-for-updates">
|
|
||||||
<label for="check-for-updates">Check for updates automatically</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<button class="btn btn-success">Set password</button>
|
<button class="btn btn-success">Set password</button>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user