mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	Compare commits
	
		
			11 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | fb3d5f25ac | ||
|  | 9d7d79ef94 | ||
|  | ba33a0d330 | ||
|  | aea81c9872 | ||
|  | 806ab22fa8 | ||
|  | 9c2b98915e | ||
|  | f2ca9276d6 | ||
|  | 48b697f408 | ||
|  | e1e185e5db | ||
|  | e06c5703ee | ||
|  | fe3bb2c5f6 | 
| @@ -5,6 +5,9 @@ instanceName= | |||||||
| # set to true to allow using Trilium without authentication (makes sense for server build only, desktop build doesn't need password) | # set to true to allow using Trilium without authentication (makes sense for server build only, desktop build doesn't need password) | ||||||
| noAuthentication=false | noAuthentication=false | ||||||
|  |  | ||||||
|  | # set to true to disable backups (e.g. because of limited space on server) | ||||||
|  | noBackup=false | ||||||
|  |  | ||||||
| # Disable automatically generating desktop icon | # Disable automatically generating desktop icon | ||||||
| # noDesktopIcon=true | # noDesktopIcon=true | ||||||
|  |  | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ | |||||||
|   "name": "trilium", |   "name": "trilium", | ||||||
|   "productName": "Trilium Notes", |   "productName": "Trilium Notes", | ||||||
|   "description": "Trilium Notes", |   "description": "Trilium Notes", | ||||||
|   "version": "0.45.8", |   "version": "0.45.9", | ||||||
|   "license": "AGPL-3.0-only", |   "license": "AGPL-3.0-only", | ||||||
|   "main": "electron.js", |   "main": "electron.js", | ||||||
|   "bin": { |   "bin": { | ||||||
|   | |||||||
| @@ -234,6 +234,8 @@ export default class AttributeDetailWidget extends TabAwareWidget { | |||||||
|  |  | ||||||
|         this.$inputName = this.$widget.find('.attr-input-name'); |         this.$inputName = this.$widget.find('.attr-input-name'); | ||||||
|         this.$inputName.on('keyup', () => this.userEditedAttribute()); |         this.$inputName.on('keyup', () => this.userEditedAttribute()); | ||||||
|  |         this.$inputName.on('change', () => this.userEditedAttribute()); | ||||||
|  |         this.$inputName.on('autocomplete:closed', () => this.userEditedAttribute()); | ||||||
|  |  | ||||||
|         this.$inputName.on('focus', () => { |         this.$inputName.on('focus', () => { | ||||||
|             attributeAutocompleteService.initAttributeNameAutocomplete({ |             attributeAutocompleteService.initAttributeNameAutocomplete({ | ||||||
|   | |||||||
| @@ -59,6 +59,7 @@ export default class NotePathsWidget extends TabAwareWidget { | |||||||
|  |  | ||||||
|         this.$currentPath = this.$widget.find('.current-path'); |         this.$currentPath = this.$widget.find('.current-path'); | ||||||
|         this.$dropdown = this.$widget.find(".dropdown"); |         this.$dropdown = this.$widget.find(".dropdown"); | ||||||
|  |         this.$dropdownToggle = this.$widget.find('.dropdown-toggle'); | ||||||
|  |  | ||||||
|         this.$notePathList = this.$dropdown.find(".note-path-list"); |         this.$notePathList = this.$dropdown.find(".note-path-list"); | ||||||
|  |  | ||||||
| @@ -100,6 +101,8 @@ export default class NotePathsWidget extends TabAwareWidget { | |||||||
|  |  | ||||||
|             parentNoteId = noteId; |             parentNoteId = noteId; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|  |         this.$dropdownToggle.dropdown('hide'); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     async renderDropdown() { |     async renderDropdown() { | ||||||
| @@ -141,20 +144,20 @@ export default class NotePathsWidget extends TabAwareWidget { | |||||||
|     async addPath(notePath, isCurrent) { |     async addPath(notePath, isCurrent) { | ||||||
|         const title = await treeService.getNotePathTitle(notePath); |         const title = await treeService.getNotePathTitle(notePath); | ||||||
|  |  | ||||||
|         const noteLink = await linkService.createNoteLink(notePath, {title}); |         const $noteLink = await linkService.createNoteLink(notePath, {title}); | ||||||
|  |  | ||||||
|         noteLink |         $noteLink | ||||||
|             .addClass("dropdown-item"); |             .addClass("dropdown-item"); | ||||||
|  |  | ||||||
|         noteLink |         $noteLink | ||||||
|             .find('a') |             .find('a') | ||||||
|             .addClass("no-tooltip-preview"); |             .addClass("no-tooltip-preview"); | ||||||
|  |  | ||||||
|         if (isCurrent) { |         if (isCurrent) { | ||||||
|             noteLink.addClass("current"); |             $noteLink.addClass("current"); | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         this.$notePathList.append(noteLink); |         this.$notePathList.append($noteLink); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     entitiesReloadedEvent({loadResults}) { |     entitiesReloadedEvent({loadResults}) { | ||||||
|   | |||||||
| @@ -1198,7 +1198,25 @@ export default class NoteTreeWidget extends TabAwareWidget { | |||||||
|         this.clearSelectedNodes(); |         this.clearSelectedNodes(); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     canBeMovedUpOrDown(node) { | ||||||
|  |         if (node.data.noteId === 'root') { | ||||||
|  |             return false; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         const parentNote = treeCache.getNoteFromCache(node.getParent().data.noteId); | ||||||
|  |  | ||||||
|  |         if (parentNote && parentNote.hasLabel('sorted')) { | ||||||
|  |             return false; | ||||||
|  |         } | ||||||
|  |  | ||||||
|  |         return true; | ||||||
|  |     } | ||||||
|  |  | ||||||
|     moveNoteUpCommand({node}) { |     moveNoteUpCommand({node}) { | ||||||
|  |         if (!this.canBeMovedUpOrDown(node)) { | ||||||
|  |             return; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         const beforeNode = node.getPrevSibling(); |         const beforeNode = node.getPrevSibling(); | ||||||
|  |  | ||||||
|         if (beforeNode !== null) { |         if (beforeNode !== null) { | ||||||
| @@ -1207,7 +1225,12 @@ export default class NoteTreeWidget extends TabAwareWidget { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     moveNoteDownCommand({node}) { |     moveNoteDownCommand({node}) { | ||||||
|  |         if (!this.canBeMovedUpOrDown(node)) { | ||||||
|  |             return; | ||||||
|  |         } | ||||||
|  |  | ||||||
|         const afterNode = node.getNextSibling(); |         const afterNode = node.getNextSibling(); | ||||||
|  |  | ||||||
|         if (afterNode !== null) { |         if (afterNode !== null) { | ||||||
|             branchService.moveAfterBranch([node.data.branchId], afterNode.data.branchId); |             branchService.moveAfterBranch([node.data.branchId], afterNode.data.branchId); | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -41,6 +41,9 @@ export default class NoteTypeWidget extends TabAwareWidget { | |||||||
|         this.$noteTypeDropdown = this.$widget.find(".note-type-dropdown"); |         this.$noteTypeDropdown = this.$widget.find(".note-type-dropdown"); | ||||||
|         this.$noteTypeButton = this.$widget.find(".note-type-button"); |         this.$noteTypeButton = this.$widget.find(".note-type-button"); | ||||||
|         this.$noteTypeDesc = this.$widget.find(".note-type-desc"); |         this.$noteTypeDesc = this.$widget.find(".note-type-desc"); | ||||||
|  |  | ||||||
|  |         this.$widget.on('click', '.dropdown-item', | ||||||
|  |             () => this.$widget.find('.dropdown-toggle').dropdown('toggle')); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     async refreshWithNote(note) { |     async refreshWithNote(note) { | ||||||
| @@ -64,8 +67,6 @@ export default class NoteTypeWidget extends TabAwareWidget { | |||||||
|                     const noteType = NOTE_TYPES.find(nt => nt.type === type); |                     const noteType = NOTE_TYPES.find(nt => nt.type === type); | ||||||
|  |  | ||||||
|                     this.save(noteType.type, noteType.mime); |                     this.save(noteType.type, noteType.mime); | ||||||
|  |  | ||||||
|                     this.$widget.find('.dropdown-toggle').dropdown('toggle'); |  | ||||||
|                 }); |                 }); | ||||||
|  |  | ||||||
|             if (this.note.type === noteType.type) { |             if (this.note.type === noteType.type) { | ||||||
|   | |||||||
| @@ -67,6 +67,11 @@ export default class ReadOnlyTextTypeWidget extends AbstractTextTypeWidget { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     async doRefresh(note) { |     async doRefresh(note) { | ||||||
|  |         // we load CKEditor also for read only notes because they contain content styles required for correct rendering of even read only notes | ||||||
|  |         // we could load just ckeditor-content.css but that causes CSS conflicts when both build CSS and this content CSS is loaded at the same time | ||||||
|  |         // (see https://github.com/zadam/trilium/issues/1590 for example of such conflict) | ||||||
|  |         await libraryLoader.requireLibrary(libraryLoader.CKEDITOR); | ||||||
|  |  | ||||||
|         const noteComplement = await treeCache.getNoteComplement(note.noteId); |         const noteComplement = await treeCache.getNoteComplement(note.noteId); | ||||||
|  |  | ||||||
|         this.$content.html(noteComplement.content); |         this.$content.html(noteComplement.content); | ||||||
|   | |||||||
| @@ -703,6 +703,7 @@ a.external:not(.no-arrow):after, a[href^="http://"]:not(.no-arrow):after, a[href | |||||||
|     padding: 10px; |     padding: 10px; | ||||||
|     border-radius: 10px; |     border-radius: 10px; | ||||||
|     background-color: var(--accented-background-color); |     background-color: var(--accented-background-color); | ||||||
|  |     clear: both; | ||||||
| } | } | ||||||
|  |  | ||||||
| .include-note.ck-placeholder::before { /* remove placeholder in otherwise empty note */ | .include-note.ck-placeholder::before { /* remove placeholder in otherwise empty note */ | ||||||
|   | |||||||
| @@ -54,12 +54,22 @@ function getBundlesWithLabel(label, value) { | |||||||
| } | } | ||||||
|  |  | ||||||
| function getStartupBundles() { | function getStartupBundles() { | ||||||
|  |     if (!process.env.TRILIUM_SAFE_MODE) { | ||||||
|         return getBundlesWithLabel("run", "frontendStartup"); |         return getBundlesWithLabel("run", "frontendStartup"); | ||||||
|     } |     } | ||||||
|  |     else { | ||||||
|  |         return []; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
| function getWidgetBundles() { | function getWidgetBundles() { | ||||||
|  |     if (!process.env.TRILIUM_SAFE_MODE) { | ||||||
|         return getBundlesWithLabel("widget"); |         return getBundlesWithLabel("widget"); | ||||||
|     } |     } | ||||||
|  |     else { | ||||||
|  |         return []; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
| function getRelationBundles(req) { | function getRelationBundles(req) { | ||||||
|     const noteId = req.params.noteId; |     const noteId = req.params.noteId; | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| module.exports = { buildDate:"2021-01-11T22:29:31+01:00", buildRevision: "369274ead75947a68bf7bbb5ab1e784e81521030" }; | module.exports = { buildDate:"2021-02-05T21:38:32+01:00", buildRevision: "9d7d79ef94bc7734393ae7f89993e76bbc7d97e3" }; | ||||||
|   | |||||||
| @@ -3,6 +3,7 @@ const scriptService = require('./script'); | |||||||
| const treeService = require('./tree'); | const treeService = require('./tree'); | ||||||
| const noteService = require('./notes'); | const noteService = require('./notes'); | ||||||
| const repository = require('./repository'); | const repository = require('./repository'); | ||||||
|  | const noteCache = require('./note_cache/note_cache'); | ||||||
| const Attribute = require('../entities/attribute'); | const Attribute = require('../entities/attribute'); | ||||||
|  |  | ||||||
| function runAttachedRelations(note, relationName, originEntity) { | function runAttachedRelations(note, relationName, originEntity) { | ||||||
| @@ -22,11 +23,15 @@ eventService.subscribe(eventService.NOTE_TITLE_CHANGED, note => { | |||||||
|     runAttachedRelations(note, 'runOnNoteTitleChange', note); |     runAttachedRelations(note, 'runOnNoteTitleChange', note); | ||||||
|  |  | ||||||
|     if (!note.isRoot()) { |     if (!note.isRoot()) { | ||||||
|         const parents = note.getParentNotes(); |         const noteFromCache = noteCache.notes[note.noteId]; | ||||||
|  |  | ||||||
|         for (const parent of parents) { |         if (!noteFromCache) { | ||||||
|             if (parent.hasOwnedLabel("sorted")) { |             return; | ||||||
|                 treeService.sortNotesAlphabetically(parent.noteId); |         } | ||||||
|  |  | ||||||
|  |         for (const parentNote of noteFromCache.parents) { | ||||||
|  |             if (parentNote.hasLabel("sorted")) { | ||||||
|  |                 treeService.sortNotesAlphabetically(parentNote.noteId); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| @@ -80,6 +85,16 @@ eventService.subscribe(eventService.ENTITY_CREATED, ({ entityName, entity }) => | |||||||
|         } |         } | ||||||
|         else if (entity.type === 'label' && entity.name === 'sorted') { |         else if (entity.type === 'label' && entity.name === 'sorted') { | ||||||
|             treeService.sortNotesAlphabetically(entity.noteId); |             treeService.sortNotesAlphabetically(entity.noteId); | ||||||
|  |  | ||||||
|  |             if (entity.isInheritable) { | ||||||
|  |                 const note = noteCache.notes[entity.noteId]; | ||||||
|  |  | ||||||
|  |                 if (note) { | ||||||
|  |                     for (const noteId of note.subtreeNoteIds) { | ||||||
|  |                         treeService.sortNotesAlphabetically(noteId); | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     else if (entityName === 'notes') { |     else if (entityName === 'notes') { | ||||||
|   | |||||||
| @@ -133,6 +133,14 @@ class Note { | |||||||
|         return !!this.attributes.find(attr => attr.type === type && attr.name === name); |         return !!this.attributes.find(attr => attr.type === type && attr.name === name); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     hasLabel(name) { | ||||||
|  |         return this.hasAttribute('label', name); | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     hasRelation(name) { | ||||||
|  |         return this.hasAttribute('relation', name); | ||||||
|  |     } | ||||||
|  |  | ||||||
|     getLabelValue(name) { |     getLabelValue(name) { | ||||||
|         const label = this.attributes.find(attr => attr.type === 'label' && attr.name === name); |         const label = this.attributes.find(attr => attr.type === 'label' && attr.name === name); | ||||||
|  |  | ||||||
| @@ -275,6 +283,11 @@ class Note { | |||||||
|         return arr.flat(); |         return arr.flat(); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /** @return {String[]} */ | ||||||
|  |     get subtreeNoteIds() { | ||||||
|  |         return this.subtreeNotes.map(note => note.noteId); | ||||||
|  |     } | ||||||
|  |  | ||||||
|     get parentCount() { |     get parentCount() { | ||||||
|         return this.parents.length; |         return this.parents.length; | ||||||
|     } |     } | ||||||
|   | |||||||
| @@ -1,9 +1,5 @@ | |||||||
| "use strict"; | "use strict"; | ||||||
|  |  | ||||||
| const Note = require('./entities/note'); |  | ||||||
| const Branch = require('./entities/branch'); |  | ||||||
| const Attribute = require('./entities/attribute'); |  | ||||||
|  |  | ||||||
| class NoteCache { | class NoteCache { | ||||||
|     constructor() { |     constructor() { | ||||||
|         this.reset(); |         this.reset(); | ||||||
|   | |||||||
| @@ -101,10 +101,10 @@ function initStartupOptions() { | |||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     if (process.env.TRILIUM_START_NOTE_ID) { |     if (process.env.TRILIUM_START_NOTE_ID || process.env.TRILIUM_SAFE_MODE) { | ||||||
|         optionService.setOption('openTabs', JSON.stringify([ |         optionService.setOption('openTabs', JSON.stringify([ | ||||||
|             { |             { | ||||||
|                 notePath: process.env.TRILIUM_START_NOTE_ID, |                 notePath: process.env.TRILIUM_START_NOTE_ID || 'root', | ||||||
|                 active: true |                 active: true | ||||||
|             } |             } | ||||||
|         ])); |         ])); | ||||||
|   | |||||||
| @@ -22,9 +22,11 @@ function runNotesWithLabel(runAttrValue) { | |||||||
| } | } | ||||||
|  |  | ||||||
| sqlInit.dbReady.then(() => { | sqlInit.dbReady.then(() => { | ||||||
|  |     if (!process.env.TRILIUM_SAFE_MODE) { | ||||||
|         setTimeout(cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000); |         setTimeout(cls.wrap(() => runNotesWithLabel('backendStartup')), 10 * 1000); | ||||||
|  |  | ||||||
|         setInterval(cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000); |         setInterval(cls.wrap(() => runNotesWithLabel('hourly')), 3600 * 1000); | ||||||
|  |  | ||||||
|         setInterval(cls.wrap(() => runNotesWithLabel('daily')), 24 * 3600 * 1000); |         setInterval(cls.wrap(() => runNotesWithLabel('daily')), 24 * 3600 * 1000); | ||||||
|  |     } | ||||||
| }); | }); | ||||||
|   | |||||||
| @@ -1,4 +1,3 @@ | |||||||
| const sql = require('./sql'); |  | ||||||
| const ScriptContext = require('./script_context'); | const ScriptContext = require('./script_context'); | ||||||
| const repository = require('./repository'); | const repository = require('./repository'); | ||||||
| const cls = require('./cls'); | const cls = require('./cls'); | ||||||
|   | |||||||
| @@ -9,6 +9,7 @@ const Option = require('../entities/option'); | |||||||
| const TaskContext = require('./task_context.js'); | const TaskContext = require('./task_context.js'); | ||||||
| const migrationService = require('./migration'); | const migrationService = require('./migration'); | ||||||
| const cls = require('./cls'); | const cls = require('./cls'); | ||||||
|  | const config = require('./config'); | ||||||
|  |  | ||||||
| const dbReady = utils.deferred(); | const dbReady = utils.deferred(); | ||||||
|  |  | ||||||
| @@ -131,6 +132,12 @@ function setDbAsInitialized() { | |||||||
| } | } | ||||||
|  |  | ||||||
| dbReady.then(() => { | dbReady.then(() => { | ||||||
|  |     if (config.General && config.General.noBackup === true) { | ||||||
|  |         log.info("Disabling scheduled backups."); | ||||||
|  |  | ||||||
|  |         return; | ||||||
|  |     } | ||||||
|  |  | ||||||
|     setInterval(() => require('./backup').regularBackup(), 4 * 60 * 60 * 1000); |     setInterval(() => require('./backup').regularBackup(), 4 * 60 * 60 * 1000); | ||||||
|  |  | ||||||
|     // kickoff first backup soon after start up |     // kickoff first backup soon after start up | ||||||
|   | |||||||
| @@ -63,8 +63,6 @@ | |||||||
| <link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | <link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||||||
| <script src="libraries/bootstrap/js/bootstrap.bundle.min.js"></script> | <script src="libraries/bootstrap/js/bootstrap.bundle.min.js"></script> | ||||||
|  |  | ||||||
| <link href="libraries/ckeditor/ckeditor-content.css" rel="stylesheet"> |  | ||||||
|  |  | ||||||
| <!-- Include Fancytree skin and library --> | <!-- Include Fancytree skin and library --> | ||||||
| <link href="libraries/fancytree/skin-win8/ui.fancytree.css" rel="stylesheet"> | <link href="libraries/fancytree/skin-win8/ui.fancytree.css" rel="stylesheet"> | ||||||
| <script src="libraries/fancytree/jquery.fancytree-all-deps.min.js"></script> | <script src="libraries/fancytree/jquery.fancytree-all-deps.min.js"></script> | ||||||
|   | |||||||
| @@ -127,8 +127,6 @@ | |||||||
| <link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | <link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||||||
| <script src="libraries/bootstrap/js/bootstrap.bundle.min.js"></script> | <script src="libraries/bootstrap/js/bootstrap.bundle.min.js"></script> | ||||||
|  |  | ||||||
| <link href="libraries/ckeditor/ckeditor-content.css" rel="stylesheet"> |  | ||||||
|  |  | ||||||
| <script src="app/mobile.js" crossorigin type="module"></script> | <script src="app/mobile.js" crossorigin type="module"></script> | ||||||
|  |  | ||||||
| <link href="stylesheets/themes.css" rel="stylesheet"> | <link href="stylesheets/themes.css" rel="stylesheet"> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user