remove checkForUpdates from login screen

This commit is contained in:
zadam 2022-07-20 00:11:12 +02:00
parent 0e41f9d1bc
commit d825a1a45a
3 changed files with 7 additions and 13 deletions

View File

@ -157,14 +157,14 @@ export default class GlobalMenuWidget extends BasicWidget {
}
async updateVersionStatus() {
if (options.get("checkForUpdates") == 'true') {
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.`);
if (options.get("checkForUpdates") !== 'true') {
return;
}
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() {

View File

@ -5,7 +5,6 @@ const optionService = require('../services/options');
const myScryptService = require('../services/my_scrypt');
const log = require('../services/log');
const passwordService = require("../services/password");
const options = require('../services/options');
function loginPage(req, res) {
res.render('login', { failedAuth: false });
@ -37,7 +36,6 @@ function setPassword(req, res) {
return;
}
options.setOption("checkForUpdates", req.body['check-for-updates'] == 'on');
passwordService.setPassword(password1);
res.redirect('login');

View File

@ -33,10 +33,6 @@
<input id="password" name="password2" placeholder="" class="form-control" type="password">
</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">
<button class="btn btn-success">Set password</button>