mirror of https://github.com/keeweb/keeweb
commit
0a025d807b
|
@ -248,12 +248,6 @@ const Launcher = {
|
|||
|
||||
window.cordova.exec(onFileSelected, callback, 'FileChooser', 'choose');
|
||||
},
|
||||
getCookies(callback) {
|
||||
// TODO
|
||||
},
|
||||
setCookies(cookies) {
|
||||
// TODO
|
||||
},
|
||||
|
||||
fingerprints: {
|
||||
config: {
|
||||
|
|
|
@ -39,14 +39,13 @@ const Launcher = {
|
|||
const homePath = this.remReq('electron').app.getPath('userDesktop');
|
||||
defaultPath = this.joinPath(homePath, defaultPath);
|
||||
}
|
||||
this.remReq('electron').dialog.showSaveDialog(
|
||||
{
|
||||
this.remReq('electron')
|
||||
.dialog.showSaveDialog({
|
||||
title: Locale.launcherSave,
|
||||
defaultPath,
|
||||
filters: [{ name: Locale.launcherFileFilter, extensions: ['kdbx'] }]
|
||||
},
|
||||
callback
|
||||
);
|
||||
})
|
||||
.then(res => callback(res.filePath));
|
||||
},
|
||||
getUserDataPath(fileName) {
|
||||
if (!this.userDataPath) {
|
||||
|
@ -272,17 +271,6 @@ const Launcher = {
|
|||
});
|
||||
return ps;
|
||||
},
|
||||
getCookies(callback) {
|
||||
this.electron().remote.session.defaultSession.cookies.get({}, callback);
|
||||
},
|
||||
setCookies(cookies) {
|
||||
if (cookies && cookies.length) {
|
||||
const session = this.electron().remote.session.defaultSession;
|
||||
for (const cookie of cookies) {
|
||||
session.cookies.set(cookie, noop);
|
||||
}
|
||||
}
|
||||
},
|
||||
checkOpenFiles() {
|
||||
this.readyToOpenFiles = true;
|
||||
if (this.pendingFileToOpen) {
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
font-weight: bold;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
min-width: 0;
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -363,6 +363,8 @@ function setMenu() {
|
|||
electron.Menu.setApplicationMenu(menu);
|
||||
} else {
|
||||
mainWindow.setMenuBarVisibility(false);
|
||||
mainWindow.setMenu(null);
|
||||
electron.Menu.setApplicationMenu(null);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.12.2",
|
||||
"version": "1.12.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.12.2",
|
||||
"version": "1.12.3",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "main.js",
|
||||
"homepage": "https://keeweb.info",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.12.2",
|
||||
"version": "1.12.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.12.2",
|
||||
"version": "1.12.3",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "Gruntfile.js",
|
||||
"private": true,
|
||||
|
|
|
@ -4,6 +4,11 @@ Release notes
|
|||
`-` fix #1323: version in the About dialog
|
||||
`-` fix #734: OTP secrets with spaces
|
||||
|
||||
##### v1.12.3 (2019-11-06)
|
||||
`-` fix #1335: removed the menubar on Windows and Linux
|
||||
`-` fix #1334: saving new files not working
|
||||
`-` fixed entry title input size
|
||||
|
||||
##### v1.12.2 (2019-11-03)
|
||||
`-` fixed non-working updater
|
||||
`-` fix #1336: saving disabled storage option
|
||||
|
|
Loading…
Reference in New Issue