mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
small fixes
This commit is contained in:
parent
d4a277321c
commit
920d71a5a6
23
electron.js
23
electron.js
@ -21,26 +21,6 @@ let mainWindow;
|
|||||||
|
|
||||||
require('electron-dl')({ saveAs: true });
|
require('electron-dl')({ saveAs: true });
|
||||||
|
|
||||||
// contextMenu({
|
|
||||||
// menu: (actions, params, browserWindow) => [
|
|
||||||
// actions.cut(),
|
|
||||||
// actions.copy(),
|
|
||||||
// actions.copyLink(),
|
|
||||||
// actions.paste(),
|
|
||||||
// {
|
|
||||||
// label: 'Search DuckDuckGo for “{selection}”',
|
|
||||||
// // Only show it when right-clicking text
|
|
||||||
// visible: params.selectionText.trim().length > 0,
|
|
||||||
// click: () => {
|
|
||||||
// const {shell} = require('electron');
|
|
||||||
//
|
|
||||||
// shell.openExternal(`https://duckduckgo.com?q=${encodeURIComponent(params.selectionText)}`);
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
// actions.inspect()
|
|
||||||
// ]
|
|
||||||
// });
|
|
||||||
|
|
||||||
function onClosed() {
|
function onClosed() {
|
||||||
// Dereference the window
|
// Dereference the window
|
||||||
// For multiple windows store them in an array
|
// For multiple windows store them in an array
|
||||||
@ -104,6 +84,9 @@ app.on('window-all-closed', () => {
|
|||||||
if (process.platform !== 'darwin') {
|
if (process.platform !== 'darwin') {
|
||||||
app.quit();
|
app.quit();
|
||||||
}
|
}
|
||||||
|
else if (process.platform === 'win32') {
|
||||||
|
app.exit(0); // attempt to fix the issue when app.quite() won't terminate processes on windows
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.on('activate', () => {
|
app.on('activate', () => {
|
||||||
|
@ -732,6 +732,7 @@ div[data-notify="container"] {
|
|||||||
|
|
||||||
.fancytree-loading span.fancytree-expander:after {
|
.fancytree-loading span.fancytree-expander:after {
|
||||||
content: " ";
|
content: " ";
|
||||||
|
color: inherit !important;
|
||||||
display: block;
|
display: block;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border-color: #000 transparent #000 transparent;
|
border-color: #000 transparent #000 transparent;
|
||||||
|
@ -370,7 +370,8 @@ async function findLogicIssues() {
|
|||||||
async ({noteRevisionId}, autoFix) => {
|
async ({noteRevisionId}, autoFix) => {
|
||||||
if (autoFix) {
|
if (autoFix) {
|
||||||
const noteRevision = await repository.getNoteRevision(noteRevisionId);
|
const noteRevision = await repository.getNoteRevision(noteRevisionId);
|
||||||
await noteRevision.setContent('');
|
noteRevision.isErased = true;
|
||||||
|
await noteRevision.save();
|
||||||
|
|
||||||
logFix(`Note revision ${noteRevisionId} content was set to empty string since it was null even though it is not erased`);
|
logFix(`Note revision ${noteRevisionId} content was set to empty string since it was null even though it is not erased`);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user