mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | d616a77d6b | ||
|  | 5b679930de | ||
|  | 067ca9ab16 | ||
|  | 70708b36ef | 
| @@ -2,7 +2,7 @@ | ||||
|   "name": "trilium", | ||||
|   "productName": "Trilium Notes", | ||||
|   "description": "Trilium Notes", | ||||
|   "version": "0.45.9", | ||||
|   "version": "0.45.10", | ||||
|   "license": "AGPL-3.0-only", | ||||
|   "main": "electron.js", | ||||
|   "bin": { | ||||
|   | ||||
| @@ -14,8 +14,17 @@ function setupSplit(left, right) { | ||||
|         return; | ||||
|     } | ||||
|  | ||||
|     const leftPaneWidth = options.getInt('leftPaneWidth'); | ||||
|     const rightPaneWidth = options.getInt('rightPaneWidth'); | ||||
|     let leftPaneWidth = options.getInt('leftPaneWidth'); | ||||
|     if (!leftPaneWidth || leftPaneWidth < 5) { | ||||
|         leftPaneWidth = 5; | ||||
|     } | ||||
|  | ||||
|     let rightPaneWidth = options.getInt('rightPaneWidth'); | ||||
|     if (!rightPaneWidth || rightPaneWidth < 5) { | ||||
|         rightPaneWidth = 5; | ||||
|     } | ||||
|  | ||||
|     console.log(leftPaneWidth, rightPaneWidth); | ||||
|  | ||||
|     if (left && right) { | ||||
|         instance = Split(['#left-pane', '#center-pane', '#right-pane'], { | ||||
| @@ -49,4 +58,4 @@ function setupSplit(left, right) { | ||||
|  | ||||
| export default { | ||||
|     setupSplit | ||||
| }; | ||||
| }; | ||||
|   | ||||
| @@ -1 +1 @@ | ||||
| module.exports = { buildDate:"2021-02-05T21:38:32+01:00", buildRevision: "9d7d79ef94bc7734393ae7f89993e76bbc7d97e3" }; | ||||
| module.exports = { buildDate:"2021-02-11T23:05:48+01:00", buildRevision: "5b679930de787efc2f70dfe7961cd1677ec2fa0f" }; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user