vault backup: 2026-01-30 12:29:13
This commit is contained in:
@@ -3,3 +3,9 @@
|
|||||||
/.obsidian/plugins/recent-files-obsidian/data.json
|
/.obsidian/plugins/recent-files-obsidian/data.json
|
||||||
/.obsidian/plugins/novel-word-count/data.json
|
/.obsidian/plugins/novel-word-count/data.json
|
||||||
/out/
|
/out/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Ignore Smart Environment folder
|
||||||
|
.smart-env
|
||||||
Vendored
+3
-1
@@ -22,5 +22,7 @@
|
|||||||
"spellcheck-toggler",
|
"spellcheck-toggler",
|
||||||
"obsidian-pandoc",
|
"obsidian-pandoc",
|
||||||
"obsidian-tasks-plugin",
|
"obsidian-tasks-plugin",
|
||||||
"digitalgarden"
|
"digitalgarden",
|
||||||
|
"pdf-plus",
|
||||||
|
"obsidian-tracker"
|
||||||
]
|
]
|
||||||
+2
-2
@@ -123,8 +123,8 @@
|
|||||||
"mdBorderColor": "Black",
|
"mdBorderColor": "Black",
|
||||||
"mdCSS": "",
|
"mdCSS": "",
|
||||||
"scriptEngineSettings": {},
|
"scriptEngineSettings": {},
|
||||||
"previousRelease": "2.19.2",
|
"previousRelease": "2.20.0",
|
||||||
"showReleaseNotes": true,
|
"showReleaseNotes": false,
|
||||||
"compareManifestToPluginVersion": true,
|
"compareManifestToPluginVersion": true,
|
||||||
"showNewVersionNotification": false,
|
"showNewVersionNotification": false,
|
||||||
"latexBoilerplate": "\\color{blue}",
|
"latexBoilerplate": "\\color{blue}",
|
||||||
|
|||||||
+3
-3
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-excalidraw-plugin",
|
"id": "obsidian-excalidraw-plugin",
|
||||||
"name": "Excalidraw",
|
"name": "Excalidraw",
|
||||||
"version": "2.19.2",
|
"version": "2.20.0",
|
||||||
"minAppVersion": "1.5.7",
|
"minAppVersion": "1.5.7",
|
||||||
"description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
|
"description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
|
||||||
"author": "Zsolt Viczian",
|
"author": "Zsolt Viczian",
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+4
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "obsidian-tracker",
|
||||||
|
"name": "Tracker",
|
||||||
|
"version": "1.17.0",
|
||||||
|
"minAppVersion": "0.9.12",
|
||||||
|
"description": "A plugin tracks occurrences and numbers in your notes",
|
||||||
|
"author": "pyrochlore",
|
||||||
|
"authorUrl": "",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
+182
@@ -0,0 +1,182 @@
|
|||||||
|
.theme-light {
|
||||||
|
--color-title: #000000;
|
||||||
|
--color-axis: #000000;
|
||||||
|
--color-axis-label: #000000;
|
||||||
|
--color-tick-label: #000000;
|
||||||
|
--color-line: #000000;
|
||||||
|
|
||||||
|
--color-legend-border: #000000;
|
||||||
|
|
||||||
|
--color-dot-fill: #69b3a2;
|
||||||
|
--color-dot-stroke: none;
|
||||||
|
|
||||||
|
--color-bar-fill: #69b3a2;
|
||||||
|
--color-bar-border: none;
|
||||||
|
|
||||||
|
--color-tooltip-bg: #ffffff;
|
||||||
|
--color-tooltip-border: #000000;
|
||||||
|
--color-tooltip-label: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-dark {
|
||||||
|
--color-title: #ffffff;
|
||||||
|
--color-axis: #ffffff;
|
||||||
|
--color-axis-label: #ffffff;
|
||||||
|
--color-tick-label: #ffffff;
|
||||||
|
--color-line: #ffffff;
|
||||||
|
|
||||||
|
--color-legend-border: #ffffff;
|
||||||
|
|
||||||
|
--color-dot-fill: #69b3a2;
|
||||||
|
--color-dot-stroke: none;
|
||||||
|
|
||||||
|
--color-bar-fill: #69b3a2;
|
||||||
|
--color-bar-border: none;
|
||||||
|
|
||||||
|
--color-tooltip-bg: #ffffff;
|
||||||
|
--color-tooltip-border: #000000;
|
||||||
|
--color-tooltip-label: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-title {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-title-small {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-axis {
|
||||||
|
fill: none;
|
||||||
|
stroke: var(--color-axis);
|
||||||
|
stroke-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-axis-label {
|
||||||
|
fill: var(--color-axis-label);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 14px;
|
||||||
|
stroke: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-tick-label {
|
||||||
|
fill: var(--color-tick-label);
|
||||||
|
stroke: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-line {
|
||||||
|
fill: none;
|
||||||
|
stroke: var(--color-line);
|
||||||
|
stroke-width: 1.5px;
|
||||||
|
stroke-linecap: round;
|
||||||
|
stroke-linejoin: round;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-dot {
|
||||||
|
fill: var(--color-dot-fill);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-tooltip {
|
||||||
|
fill: var(--color-tooltip-bg);
|
||||||
|
stroke: var(--color-tooltip-border);
|
||||||
|
stroke-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-tooltip-label {
|
||||||
|
fill: var(--color-tooltip-label);
|
||||||
|
stroke: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-legend {
|
||||||
|
fill: none;
|
||||||
|
stroke: var(--color-legend-border);
|
||||||
|
stroke-width: 0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-legend-label {
|
||||||
|
font-size: 14px;
|
||||||
|
text-anchor: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-bar {
|
||||||
|
fill: var(--color-bar-fill);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-header-year {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: start;
|
||||||
|
font-size: 22px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-header-month {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: start;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-dividing-line {
|
||||||
|
fill: var(--color-bar-fill);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-title-arrow {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-title-rotator {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-title-monitor {
|
||||||
|
fill: var(--color-title);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-weekday {
|
||||||
|
fill: var(--color-tick-label);
|
||||||
|
stroke: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-today-circle {
|
||||||
|
fill: none;
|
||||||
|
stroke: "white";
|
||||||
|
stroke-width: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-selected-circle {
|
||||||
|
fill: none;
|
||||||
|
stroke: "red";
|
||||||
|
stroke-width: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-label {
|
||||||
|
fill: var(--color-axis-label);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 14px;
|
||||||
|
stroke: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-month-annotation {
|
||||||
|
fill: var(--color-axis-label);
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 10px;
|
||||||
|
stroke: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tracker-pie-label {
|
||||||
|
fill: var(--color-tick-label);
|
||||||
|
stroke: none;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
Vendored
+326
@@ -0,0 +1,326 @@
|
|||||||
|
{
|
||||||
|
"displayTextFormats": [
|
||||||
|
{
|
||||||
|
"name": "Title & page",
|
||||||
|
"template": "{{file.basename}}, p.{{pageLabel}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Page",
|
||||||
|
"template": "p.{{pageLabel}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Text",
|
||||||
|
"template": "{{text}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Emoji",
|
||||||
|
"template": "📖"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "None",
|
||||||
|
"template": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"defaultDisplayTextFormatIndex": 0,
|
||||||
|
"syncDisplayTextFormat": true,
|
||||||
|
"syncDefaultDisplayTextFormat": false,
|
||||||
|
"copyCommands": [
|
||||||
|
{
|
||||||
|
"name": "Quote",
|
||||||
|
"template": "> ({{linkWithDisplay}})\n> {{text}}\n"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Link",
|
||||||
|
"template": "{{linkWithDisplay}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Embed",
|
||||||
|
"template": "!{{link}}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Callout",
|
||||||
|
"template": "> [!{{calloutType}}|{{color}}] {{linkWithDisplay}}\n> {{text}}\n"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Quote in callout",
|
||||||
|
"template": "> [!{{calloutType}}|{{color}}] {{linkWithDisplay}}\n> > {{text}}\n> \n> "
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"useAnotherCopyTemplateWhenNoSelection": false,
|
||||||
|
"copyTemplateWhenNoSelection": "{{linkToPageWithDisplay}}",
|
||||||
|
"trimSelectionEmbed": false,
|
||||||
|
"embedMargin": 50,
|
||||||
|
"noSidebarInEmbed": true,
|
||||||
|
"noSpreadModeInEmbed": true,
|
||||||
|
"embedUnscrollable": false,
|
||||||
|
"singleTabForSinglePDF": true,
|
||||||
|
"highlightExistingTab": false,
|
||||||
|
"existingTabHighlightOpacity": 0.5,
|
||||||
|
"existingTabHighlightDuration": 0.75,
|
||||||
|
"paneTypeForFirstPDFLeaf": "left",
|
||||||
|
"openLinkNextToExistingPDFTab": true,
|
||||||
|
"openPDFWithDefaultApp": false,
|
||||||
|
"openPDFWithDefaultAppAndObsidian": true,
|
||||||
|
"focusObsidianAfterOpenPDFWithDefaultApp": true,
|
||||||
|
"syncWithDefaultApp": false,
|
||||||
|
"dontActivateAfterOpenPDF": true,
|
||||||
|
"dontActivateAfterOpenMD": true,
|
||||||
|
"highlightDuration": 0.75,
|
||||||
|
"noTextHighlightsInEmbed": false,
|
||||||
|
"noAnnotationHighlightsInEmbed": true,
|
||||||
|
"persistentTextHighlightsInEmbed": true,
|
||||||
|
"persistentAnnotationHighlightsInEmbed": false,
|
||||||
|
"highlightBacklinks": true,
|
||||||
|
"selectionBacklinkVisualizeStyle": "highlight",
|
||||||
|
"dblclickEmbedToOpenLink": true,
|
||||||
|
"highlightBacklinksPane": true,
|
||||||
|
"highlightOnHoverBacklinkPane": true,
|
||||||
|
"backlinkHoverColor": "",
|
||||||
|
"colors": {
|
||||||
|
"Yellow": "#ffd000",
|
||||||
|
"Red": "#ea5252",
|
||||||
|
"Note": "#086ddd",
|
||||||
|
"Important": "#bb61e5"
|
||||||
|
},
|
||||||
|
"defaultColor": "",
|
||||||
|
"defaultColorPaletteItemIndex": 0,
|
||||||
|
"syncColorPaletteItem": true,
|
||||||
|
"syncDefaultColorPaletteItem": false,
|
||||||
|
"colorPaletteInToolbar": true,
|
||||||
|
"noColorButtonInColorPalette": true,
|
||||||
|
"colorPaletteInEmbedToolbar": false,
|
||||||
|
"quietColorPaletteTooltip": false,
|
||||||
|
"showStatusInToolbar": true,
|
||||||
|
"highlightColorSpecifiedOnly": false,
|
||||||
|
"doubleClickHighlightToOpenBacklink": true,
|
||||||
|
"hoverHighlightAction": "preview",
|
||||||
|
"paneTypeForFirstMDLeaf": "right",
|
||||||
|
"singleMDLeafInSidebar": true,
|
||||||
|
"alwaysUseSidebar": true,
|
||||||
|
"ignoreExistingMarkdownTabIn": [],
|
||||||
|
"defaultColorPaletteActionIndex": 4,
|
||||||
|
"syncColorPaletteAction": true,
|
||||||
|
"syncDefaultColorPaletteAction": false,
|
||||||
|
"proxyMDProperty": "PDF",
|
||||||
|
"hoverPDFLinkToOpen": false,
|
||||||
|
"ignoreHeightParamInPopoverPreview": true,
|
||||||
|
"filterBacklinksByPageDefault": true,
|
||||||
|
"showBacklinkToPage": true,
|
||||||
|
"enableHoverPDFInternalLink": true,
|
||||||
|
"recordPDFInternalLinkHistory": true,
|
||||||
|
"alwaysRecordHistory": true,
|
||||||
|
"renderMarkdownInStickyNote": false,
|
||||||
|
"enablePDFEdit": false,
|
||||||
|
"author": "",
|
||||||
|
"writeHighlightToFileOpacity": 0.2,
|
||||||
|
"defaultWriteFileToggle": false,
|
||||||
|
"syncWriteFileToggle": true,
|
||||||
|
"syncDefaultWriteFileToggle": false,
|
||||||
|
"enableAnnotationDeletion": true,
|
||||||
|
"warnEveryAnnotationDelete": false,
|
||||||
|
"warnBacklinkedAnnotationDelete": true,
|
||||||
|
"enableAnnotationContentEdit": true,
|
||||||
|
"enableEditEncryptedPDF": false,
|
||||||
|
"pdfLinkColor": "#04a802",
|
||||||
|
"pdfLinkBorder": false,
|
||||||
|
"replaceContextMenu": true,
|
||||||
|
"showContextMenuOnMouseUpIf": "Mod",
|
||||||
|
"contextMenuConfig": [
|
||||||
|
{
|
||||||
|
"id": "action",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "selection",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "write-file",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "annotation",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "modify-annotation",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "link",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "text",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "search",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "speech",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "page",
|
||||||
|
"visible": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "settings",
|
||||||
|
"visible": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"selectionProductMenuConfig": [
|
||||||
|
"color",
|
||||||
|
"copy-format",
|
||||||
|
"display"
|
||||||
|
],
|
||||||
|
"writeFileProductMenuConfig": [
|
||||||
|
"color",
|
||||||
|
"copy-format",
|
||||||
|
"display"
|
||||||
|
],
|
||||||
|
"annotationProductMenuConfig": [
|
||||||
|
"copy-format",
|
||||||
|
"display"
|
||||||
|
],
|
||||||
|
"updateColorPaletteStateFromContextMenu": true,
|
||||||
|
"mobileCopyAction": "pdf-plus",
|
||||||
|
"showContextMenuOnTablet": false,
|
||||||
|
"executeBuiltinCommandForOutline": true,
|
||||||
|
"executeBuiltinCommandForZoom": true,
|
||||||
|
"executeFontSizeAdjusterCommand": true,
|
||||||
|
"closeSidebarWithShowCommandIfExist": true,
|
||||||
|
"autoHidePDFSidebar": false,
|
||||||
|
"defaultSidebarView": 1,
|
||||||
|
"outlineDrag": true,
|
||||||
|
"outlineContextMenu": true,
|
||||||
|
"outlineLinkDisplayTextFormat": "{{file.basename}}, {{text}}",
|
||||||
|
"outlineLinkCopyFormat": "{{linkWithDisplay}}",
|
||||||
|
"recordHistoryOnOutlineClick": true,
|
||||||
|
"popoverPreviewOnOutlineHover": true,
|
||||||
|
"thumbnailDrag": true,
|
||||||
|
"thumbnailContextMenu": true,
|
||||||
|
"thumbnailLinkDisplayTextFormat": "{{file.basename}}, p.{{pageLabel}}",
|
||||||
|
"thumbnailLinkCopyFormat": "{{linkWithDisplay}}",
|
||||||
|
"recordHistoryOnThumbnailClick": true,
|
||||||
|
"popoverPreviewOnThumbnailHover": true,
|
||||||
|
"annotationPopupDrag": true,
|
||||||
|
"showAnnotationPopupOnHover": true,
|
||||||
|
"useCallout": true,
|
||||||
|
"calloutType": "PDF",
|
||||||
|
"calloutIcon": "highlighter",
|
||||||
|
"highlightBacklinksInEmbed": false,
|
||||||
|
"highlightBacklinksInHoverPopover": false,
|
||||||
|
"highlightBacklinksInCanvas": true,
|
||||||
|
"clickPDFInternalLinkWithModifierKey": true,
|
||||||
|
"clickOutlineItemWithModifierKey": true,
|
||||||
|
"clickThumbnailWithModifierKey": true,
|
||||||
|
"focusEditorAfterAutoPaste": true,
|
||||||
|
"clearSelectionAfterAutoPaste": true,
|
||||||
|
"respectCursorPositionWhenAutoPaste": true,
|
||||||
|
"blankLineAboveAppendedContent": true,
|
||||||
|
"autoCopy": false,
|
||||||
|
"autoFocus": false,
|
||||||
|
"autoPaste": false,
|
||||||
|
"autoFocusTarget": "last-active-and-open-then-last-paste",
|
||||||
|
"autoPasteTarget": "last-active-and-open-then-last-paste",
|
||||||
|
"openAutoFocusTargetIfNotOpened": true,
|
||||||
|
"howToOpenAutoFocusTargetIfNotOpened": "right",
|
||||||
|
"closeHoverEditorWhenLostFocus": true,
|
||||||
|
"closeSidebarWhenLostFocus": false,
|
||||||
|
"openAutoFocusTargetInEditingView": true,
|
||||||
|
"executeCommandWhenTargetNotIdentified": true,
|
||||||
|
"commandToExecuteWhenTargetNotIdentified": "switcher:open",
|
||||||
|
"autoPasteTargetDialogTimeoutSec": 20,
|
||||||
|
"autoCopyToggleRibbonIcon": true,
|
||||||
|
"autoCopyIconName": "highlighter",
|
||||||
|
"autoFocusToggleRibbonIcon": true,
|
||||||
|
"autoFocusIconName": "zap",
|
||||||
|
"autoPasteToggleRibbonIcon": true,
|
||||||
|
"autoPasteIconName": "clipboard-paste",
|
||||||
|
"viewSyncFollowPageNumber": true,
|
||||||
|
"viewSyncPageDebounceInterval": 0.3,
|
||||||
|
"openAfterExtractPages": true,
|
||||||
|
"howToOpenExtractedPDF": "tab",
|
||||||
|
"warnEveryPageDelete": false,
|
||||||
|
"warnBacklinkedPageDelete": true,
|
||||||
|
"extractPageInPlace": false,
|
||||||
|
"askExtractPageInPlace": true,
|
||||||
|
"pageLabelUpdateWhenInsertPage": "keep",
|
||||||
|
"pageLabelUpdateWhenDeletePage": "keep",
|
||||||
|
"pageLabelUpdateWhenExtractPage": "keep",
|
||||||
|
"askPageLabelUpdateWhenInsertPage": true,
|
||||||
|
"askPageLabelUpdateWhenDeletePage": true,
|
||||||
|
"askPageLabelUpdateWhenExtractPage": true,
|
||||||
|
"copyOutlineAsListFormat": "{{linkWithDisplay}}",
|
||||||
|
"copyOutlineAsListDisplayTextFormat": "{{text}}",
|
||||||
|
"copyOutlineAsHeadingsFormat": "{{text}}\n\n{{linkWithDisplay}}",
|
||||||
|
"copyOutlineAsHeadingsDisplayTextFormat": "p.{{pageLabel}}",
|
||||||
|
"copyOutlineAsHeadingsMinLevel": 2,
|
||||||
|
"newFileNameFormat": "",
|
||||||
|
"newFileTemplatePath": "",
|
||||||
|
"newPDFLocation": "current",
|
||||||
|
"newPDFFolderPath": "",
|
||||||
|
"rectEmbedStaticImage": false,
|
||||||
|
"rectImageFormat": "file",
|
||||||
|
"rectImageExtension": "webp",
|
||||||
|
"zoomToFitRect": false,
|
||||||
|
"rectFollowAdaptToTheme": true,
|
||||||
|
"rectEmbedResolution": 100,
|
||||||
|
"includeColorWhenCopyingRectLink": true,
|
||||||
|
"backlinkIconSize": 50,
|
||||||
|
"showBacklinkIconForSelection": false,
|
||||||
|
"showBacklinkIconForAnnotation": false,
|
||||||
|
"showBacklinkIconForOffset": true,
|
||||||
|
"showBacklinkIconForRect": false,
|
||||||
|
"showBoundingRectForBacklinkedAnnot": false,
|
||||||
|
"hideReplyAnnotation": false,
|
||||||
|
"hideStampAnnotation": false,
|
||||||
|
"searchLinkHighlightAll": "true",
|
||||||
|
"searchLinkCaseSensitive": "true",
|
||||||
|
"searchLinkMatchDiacritics": "default",
|
||||||
|
"searchLinkEntireWord": "false",
|
||||||
|
"dontFitWidthWhenOpenPDFLink": true,
|
||||||
|
"preserveCurrentLeftOffsetWhenOpenPDFLink": false,
|
||||||
|
"defaultZoomValue": "page-width",
|
||||||
|
"scrollModeOnLoad": 0,
|
||||||
|
"spreadModeOnLoad": 0,
|
||||||
|
"usePageUpAndPageDown": true,
|
||||||
|
"hoverableDropdownMenuInToolbar": true,
|
||||||
|
"zoomLevelInputBoxInToolbar": true,
|
||||||
|
"popoverPreviewOnExternalLinkHover": true,
|
||||||
|
"actionOnCitationHover": "pdf-plus-bib-popover",
|
||||||
|
"enableBibInEmbed": false,
|
||||||
|
"enableBibInHoverPopover": false,
|
||||||
|
"enableBibInCanvas": true,
|
||||||
|
"citationIdPatterns": "^cite.\n^bib\\d+$",
|
||||||
|
"copyAsSingleLine": true,
|
||||||
|
"removeWhitespaceBetweenCJChars": true,
|
||||||
|
"dummyFileFolderPath": "",
|
||||||
|
"externalURIPatterns": [
|
||||||
|
".*\\.pdf$",
|
||||||
|
"https://arxiv.org/pdf/.*"
|
||||||
|
],
|
||||||
|
"modifierToDropExternalPDFToCreateDummy": [
|
||||||
|
"Shift"
|
||||||
|
],
|
||||||
|
"vim": false,
|
||||||
|
"vimrcPath": "",
|
||||||
|
"vimVisualMotion": true,
|
||||||
|
"vimScrollSize": 40,
|
||||||
|
"vimLargerScrollSizeWhenZoomIn": true,
|
||||||
|
"vimContinuousScrollSpeed": 1.2,
|
||||||
|
"vimSmoothScroll": true,
|
||||||
|
"vimHlsearch": true,
|
||||||
|
"vimIncsearch": true,
|
||||||
|
"enableVimInContextMenu": true,
|
||||||
|
"enableVimOutlineMode": true,
|
||||||
|
"vimSmoothOutlineMode": true,
|
||||||
|
"vimHintChars": "hjklasdfgyuiopqwertnmzxcvb",
|
||||||
|
"vimHintArgs": "all",
|
||||||
|
"PATH": "",
|
||||||
|
"autoCheckForUpdates": true,
|
||||||
|
"fixObsidianTextSelectionBug": true
|
||||||
|
}
|
||||||
Vendored
+161
File diff suppressed because one or more lines are too long
+15
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"id": "pdf-plus",
|
||||||
|
"name": "PDF++",
|
||||||
|
"version": "0.40.31",
|
||||||
|
"minAppVersion": "1.5.8",
|
||||||
|
"description": "The most Obsidian-native PDF annotation tool ever.",
|
||||||
|
"author": "Ryota Ushio",
|
||||||
|
"authorUrl": "https://github.com/RyotaUshio",
|
||||||
|
"fundingUrl": {
|
||||||
|
"GitHub Sponsor": "https://github.com/sponsors/RyotaUshio",
|
||||||
|
"Buy Me a Coffee": "https://www.buymeacoffee.com/ryotaushio",
|
||||||
|
"Ko-fi": "https://ko-fi.com/ryotaushio"
|
||||||
|
},
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
||||||
+694
@@ -0,0 +1,694 @@
|
|||||||
|
/* @settings
|
||||||
|
|
||||||
|
name: PDF++
|
||||||
|
id: pdf-plus
|
||||||
|
settings:
|
||||||
|
-
|
||||||
|
id: pdf-highlight
|
||||||
|
title: Highlights
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: pdf-plus-highlight-opacity
|
||||||
|
title: Highlight opacity
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
step: 0.01
|
||||||
|
default: 0.2
|
||||||
|
-
|
||||||
|
id: pdf-plus-highlight-padding-vertical-em
|
||||||
|
title: Highlight padding (top & bottom)
|
||||||
|
description: Boldness of highlights (em)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
step: 0.01
|
||||||
|
default: 0.05
|
||||||
|
format: em
|
||||||
|
-
|
||||||
|
id: pdf-plus-highlight-padding-horizontal-em
|
||||||
|
title: Highlight padding (left & right)
|
||||||
|
description: Boldness of highlights (em)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
step: 0.01
|
||||||
|
default: 0.05
|
||||||
|
format: em
|
||||||
|
-
|
||||||
|
id: pdf-plus-highlight-border-radius
|
||||||
|
title: Highlight edge roundness
|
||||||
|
description: Radius of the highlight edge (em). 0 for sharp edges and 0.5 for rounded edges.
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 0
|
||||||
|
max: 0.5
|
||||||
|
step: 0.01
|
||||||
|
default: 0.1
|
||||||
|
format: em
|
||||||
|
-
|
||||||
|
id: pdf-rect
|
||||||
|
title: Rectanglular selection
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: pdf-plus-rect-highlight-opacity
|
||||||
|
title: Rectangle highlight opacity
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
step: 0.01
|
||||||
|
default: 1
|
||||||
|
-
|
||||||
|
id: pdf-plus-rect-highlight-border-width
|
||||||
|
title: Rectangle highlight border width (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 1
|
||||||
|
max: 10
|
||||||
|
step: 1
|
||||||
|
default: 2
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: hover-popover
|
||||||
|
title: Hover popovers
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: pdf-plus-backlink-popover
|
||||||
|
title: Backlink popovers
|
||||||
|
description: Styles for popovers displayed when hovering over backlinked highlights or rectangular selections in PDF viewer
|
||||||
|
type: heading
|
||||||
|
level: 3
|
||||||
|
-
|
||||||
|
id: pdf-plus-backlink-popover-width
|
||||||
|
title: Backlink popover width (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 100
|
||||||
|
max: 1000
|
||||||
|
step: 10
|
||||||
|
default: 450
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: pdf-plus-backlink-popover-height
|
||||||
|
title: Backlink popover height (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 100
|
||||||
|
max: 1000
|
||||||
|
step: 10
|
||||||
|
default: 400
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: pdf-plus-pdf-link-like-popover
|
||||||
|
title: PDF internal link popovers
|
||||||
|
description: Styles for popovers displayed when hovering over internal links, outline items or thumbnails in PDF viewer
|
||||||
|
type: heading
|
||||||
|
level: 3
|
||||||
|
-
|
||||||
|
id: pdf-plus-pdf-link-like-popover-width
|
||||||
|
title: PDF internal link popover width (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 100
|
||||||
|
max: 1000
|
||||||
|
step: 10
|
||||||
|
default: 450
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: pdf-plus-pdf-link-like-popover-height
|
||||||
|
title: PDF internal link popover height (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 100
|
||||||
|
max: 1000
|
||||||
|
step: 10
|
||||||
|
default: 400
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: pdf-toolbar
|
||||||
|
title: PDF toolbars
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: hide-pdf-embed-toolbar
|
||||||
|
title: Hide toolbar in PDF embeds with a page specified
|
||||||
|
type: class-toggle
|
||||||
|
default: true
|
||||||
|
-
|
||||||
|
id: hide-pdf-toolbar-in-hover-editor
|
||||||
|
title: Hide PDF toolbar in Hover Editor
|
||||||
|
type: class-toggle
|
||||||
|
default: true
|
||||||
|
-
|
||||||
|
id: pdf-sidebar
|
||||||
|
title: PDF sidebars
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: pdf-plus-sidebar-width
|
||||||
|
title: Sidebar width (px)
|
||||||
|
type: variable-number-slider
|
||||||
|
min: 100
|
||||||
|
max: 1000
|
||||||
|
step: 10
|
||||||
|
default: 140
|
||||||
|
format: px
|
||||||
|
-
|
||||||
|
id: pdf-plus-vim
|
||||||
|
title: Vim keybindings
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
-
|
||||||
|
id: pdf-plus-vim-hin
|
||||||
|
title: Hint mode
|
||||||
|
type: heading
|
||||||
|
level: 3
|
||||||
|
-
|
||||||
|
id: pdf-plus-vim-hint-inverted
|
||||||
|
title: Inverted color scheme
|
||||||
|
type: class-toggle
|
||||||
|
default: false
|
||||||
|
*/
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--pdf-plus-highlight-padding-default-em: 0.05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hide-pdf-embed-toolbar .pdf-embed[src*="#"] .pdf-toolbar,
|
||||||
|
.hide-pdf-embed-toolbar .popover.hover-popover.hover-editor .pdf-embed[src*="#"] .pdf-toolbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hide-pdf-toolbar-in-hover-editor .popover.hover-popover.hover-editor .view-content>.pdf-toolbar {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* When hovering over a highlighted text in PDF viewer, highlight the corresponding item in backlink pane */
|
||||||
|
.backlink-pane .search-result-file-match.hovered-backlink,
|
||||||
|
.backlink-pane .search-result-file-matches:has(.better-search-views-tree) .better-search-views-file-match.hovered-backlink:not(:hover) {
|
||||||
|
background-color: var(--text-selection);
|
||||||
|
}
|
||||||
|
|
||||||
|
.setting-item.no-border,
|
||||||
|
.pdf-plus-settings.vertical-tab-content .setting-item.no-border {
|
||||||
|
border-top: none;
|
||||||
|
|
||||||
|
&.small-padding {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.setting-item-control input.error {
|
||||||
|
border-color: var(--background-modifier-error);
|
||||||
|
}
|
||||||
|
|
||||||
|
.setting-item-description.error {
|
||||||
|
color: var(--background-modifier-error);
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-mobile,
|
||||||
|
.is-tablet {
|
||||||
|
.pdf-plus-color-palette .pdf-plus-color-palette-item-inner {
|
||||||
|
width: calc(var(--swatch-width) * 0.85);
|
||||||
|
height: calc(var(--swatch-width) * 0.85);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-color-palette {
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.pdf-plus-color-palette-item {
|
||||||
|
/* Avoid text selections to be cleared when tapping on a color palette item on the mobile app */
|
||||||
|
/* https://github.com/RyotaUshio/obsidian-pdf-plus/issues/169 */
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
|
.pdf-plus-color-palette-item-inner {
|
||||||
|
width: var(--swatch-width);
|
||||||
|
height: var(--swatch-width);
|
||||||
|
border-radius: 50%;
|
||||||
|
border: var(--input-border-width) solid var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-color-palette-status-container {
|
||||||
|
padding: var(--size-2-2) var(--size-2-3);
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: var(--font-ui-small);
|
||||||
|
text-wrap: nowrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu .menu-item.pdf-plus-color-menu-item {
|
||||||
|
padding-left: 0;
|
||||||
|
|
||||||
|
.pdf-plus-color-indicator {
|
||||||
|
border-radius: 50%;
|
||||||
|
border-width: 0;
|
||||||
|
height: var(--size-4-3);
|
||||||
|
width: var(--size-4-3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-toolbar .clickable-icon.is-disabled {
|
||||||
|
background-color: inherit;
|
||||||
|
|
||||||
|
&>svg {
|
||||||
|
color: var(--text-faint);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .pdf-page-input, */
|
||||||
|
.pdf-zoom-level-input {
|
||||||
|
width: 6ch;
|
||||||
|
text-align: right;
|
||||||
|
font-variant-numeric: tabular-nums;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-zoom-level-percent {
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-right: var(--size-4-1);
|
||||||
|
font-size: var(--font-ui-small);
|
||||||
|
font-variant-numeric: tabular-nums;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings.vertical-tab-content {
|
||||||
|
--pdf-plus-settings-header-height: var(--size-4-12);
|
||||||
|
|
||||||
|
padding-top: 0;
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings.vertical-tab-content .header-container {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 10;
|
||||||
|
height: var(--pdf-plus-settings-header-height);
|
||||||
|
line-height: var(--pdf-plus-settings-header-height);
|
||||||
|
text-align: center;
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
border-bottom: 1px solid var(--divider-color);
|
||||||
|
padding: 0 var(--size-4-4);
|
||||||
|
|
||||||
|
overflow-x: scroll;
|
||||||
|
overflow-y: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.header {
|
||||||
|
line-height: normal;
|
||||||
|
|
||||||
|
.header-title {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings.vertical-tab-content .content {
|
||||||
|
padding-top: var(--size-4-8);
|
||||||
|
padding-bottom: var(--size-4-16);
|
||||||
|
padding-left: var(--size-4-12);
|
||||||
|
padding-right: var(--size-4-12);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings.vertical-tab-content .spacer {
|
||||||
|
height: var(--pdf-plus-settings-header-height);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings.vertical-tab-content .top-note {
|
||||||
|
min-height: var(--pdf-plus-settings-header-height);
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: var(--font-ui-smaller);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings .setting-item-description,
|
||||||
|
.pdf-plus-modal .setting-item-description {
|
||||||
|
&>p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&>p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-settings .ignore-split-setting.setting-item {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.annotationLayer .popupContent {
|
||||||
|
&>p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&>p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer .pdf-plus-backlink {
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
box-sizing: content-box;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer .rect-highlight {
|
||||||
|
background-color: rgb(var(--text-highlight-bg-rgb));
|
||||||
|
border-radius: var(--radius-m);
|
||||||
|
opacity: 0.2;
|
||||||
|
}
|
||||||
|
|
||||||
|
body:not(.pdf-plus-backlink-selection-underline) .pdf-plus-backlink-highlight-layer .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
background-color: rgb(from var(--pdf-plus-color) r g b / var(--pdf-plus-highlight-opacity, 0.2));
|
||||||
|
padding: var(--pdf-plus-highlight-padding-vertical-em, var(--pdf-plus-highlight-padding-default-em)) var(--pdf-plus-highlight-padding-horizontal-em, var(--pdf-plus-highlight-padding-default-em));
|
||||||
|
margin: calc(var(--pdf-plus-highlight-padding-vertical-em, var(--pdf-plus-highlight-padding-default-em)) * -1) calc(var(--pdf-plus-highlight-padding-horizontal-em, var(--pdf-plus-highlight-padding-default-em)) * -1);
|
||||||
|
border-radius: var(--pdf-plus-highlight-border-radius, 0.1em);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.pdf-plus-backlink-selection-underline {
|
||||||
|
.pdf-plus-backlink-highlight-layer .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
opacity: 1.0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer[data-main-rotation="0"] .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
border-bottom: 0.1em solid var(--pdf-plus-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer[data-main-rotation="90"] .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
border-right: 0.1em solid var(--pdf-plus-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer[data-main-rotation="180"] .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
border-top: 0.1em solid var(--pdf-plus-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer[data-main-rotation="270"] .pdf-plus-backlink.pdf-plus-backlink-selection {
|
||||||
|
border-left: 0.1em solid var(--pdf-plus-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-highlight-layer .pdf-plus-backlink.pdf-plus-backlink-fit-r {
|
||||||
|
border: dashed rgb(from var(--pdf-plus-rect-color) r g b / var(--pdf-plus-rect-highlight-opacity, 1)) var(--pdf-plus-rect-highlight-border-width, 2px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-backlink-icon {
|
||||||
|
position: absolute;
|
||||||
|
--icon-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-main-rotation="90"] .pdf-plus-backlink-icon {
|
||||||
|
transform: rotate(270deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-main-rotation="180"] .pdf-plus-backlink-icon {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-main-rotation="270"] .pdf-plus-backlink-icon {
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-annotation-edit-modal {
|
||||||
|
.desc {
|
||||||
|
margin-bottom: var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.preview-container {
|
||||||
|
background: var(--background-modifier-form-field);
|
||||||
|
border: var(--input-border-width) solid var(--background-modifier-border);
|
||||||
|
border-radius: var(--input-radius);
|
||||||
|
padding: var(--size-4-1) var(--size-4-2);
|
||||||
|
text-align: left;
|
||||||
|
|
||||||
|
&>p:first-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&>p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Arrange two children of .setting-item, namely .setting-item-info and .setting-item-contrl, vertically */
|
||||||
|
.setting-item:last-child:has(textarea) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: left;
|
||||||
|
align-items: flex-start;
|
||||||
|
|
||||||
|
.setting-item-control {
|
||||||
|
width: 100%;
|
||||||
|
padding-top: var(--size-4-2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-annotation-edit-modal-save-instructions {
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: calc(var(--font-text-size) * 0.65);
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.popupWrapper {
|
||||||
|
--pdf-popup-width: 310px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-annotation-icon-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
margin-right: calc(var(--size-4-1) * -1);
|
||||||
|
margin-left: calc(var(--size-2-1) * -1);
|
||||||
|
|
||||||
|
.clickable-icon {
|
||||||
|
margin-right: 0;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-draggable .popup {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pdf-plus-funding {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: left;
|
||||||
|
align-items: flex-end;
|
||||||
|
|
||||||
|
.setting-item-control {
|
||||||
|
padding-top: var(--size-4-4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#pdf-plus-funding-icon-info-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
/* justify-content: left; */
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pdf-plus-funding-icon {
|
||||||
|
margin-right: var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-label-range:first-of-type {
|
||||||
|
margin-top: var(--size-4-4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-label-range:not(:first-of-type) {
|
||||||
|
margin-top: var(--size-4-9);
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-page-label-modal {
|
||||||
|
z-index: var(--he-popover-layer-inactive, var(--layer-popover));
|
||||||
|
|
||||||
|
.page-labels-loading {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: center;
|
||||||
|
margin: var(--size-4-4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-restore-default-modal {
|
||||||
|
user-select: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-content-container {
|
||||||
|
--sidebar-width: var(--pdf-plus-sidebar-width, 140px);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
--container-pdf-cropped-width: var(--line-width);
|
||||||
|
--container-pdf-cropped-max-width: var(--max-width);
|
||||||
|
}
|
||||||
|
|
||||||
|
.internal-embed.pdf-cropped-embed {
|
||||||
|
width: var(--container-pdf-cropped-width);
|
||||||
|
max-width: var(--container-pdf-cropped-max-width);
|
||||||
|
|
||||||
|
img {
|
||||||
|
cursor: text !important;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.popover.hover-popover>.pdf-cropped-embed img {
|
||||||
|
max-height: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-selecting * {
|
||||||
|
cursor: crosshair !important;
|
||||||
|
|
||||||
|
.textLayer {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-container .pdf-plus-select-box {
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1000;
|
||||||
|
border: dashed var(--background-modifier-border) 2px;
|
||||||
|
background-color: hsla(var(--interactive-accent-hsl), 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* From Obsidian's app.css (.annotationLayer .mod-focused / .annotationLayer .boundingRect)*/
|
||||||
|
.pdf-plus-annotation-bounding-rect {
|
||||||
|
background-color: rgba(var(--text-highlight-bg-rgb), 0.1);
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
box-shadow: var(--shadow-s);
|
||||||
|
box-sizing: content-box;
|
||||||
|
margin: calc(var(--size-4-2) * -1);
|
||||||
|
border: var(--size-4-1) solid rgba(var(--text-highlight-bg-rgb), 0.8);
|
||||||
|
padding: var(--size-4-1);
|
||||||
|
z-index: 0;
|
||||||
|
/* Avoid preventing annotation click */
|
||||||
|
position: absolute;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popover.hover-popover.pdf-plus-backlink-popover {
|
||||||
|
--popover-width: var(--pdf-plus-backlink-popover-width, 450px);
|
||||||
|
--popover-height: var(--pdf-plus-backlink-popover-height, 400px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.popover.hover-popover.pdf-plus-pdf-link-like-popover {
|
||||||
|
--popover-pdf-width: var(--pdf-plus-pdf-link-like-popover-width, 450px);
|
||||||
|
--popover-pdf-height: var(--pdf-plus-pdf-link-like-popover-height, 400px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.popover.hover-popover.pdf-plus-bib-popover {
|
||||||
|
--popover-width: 400px;
|
||||||
|
--pdf-plus-bib-metadata-font-size: var(--font-ui-small);
|
||||||
|
|
||||||
|
/* Workaround to prevent bib popovers from being covered by Hover Editor
|
||||||
|
when the bib popover is spawned from a hover editor
|
||||||
|
(https://github.com/RyotaUshio/obsidian-pdf-plus/issues/459).
|
||||||
|
Hover Editor decides z-index based on --layer-slides, so we need to set a higher z-index. */
|
||||||
|
z-index: calc(var(--layer-slides) + 1);
|
||||||
|
|
||||||
|
.pdf-plus-bib {
|
||||||
|
padding: var(--size-4-3);
|
||||||
|
font-size: var(--font-ui-medium);
|
||||||
|
|
||||||
|
/* Make text inside citation hover selectable (https://github.com/RyotaUshio/obsidian-pdf-plus/issues/252) */
|
||||||
|
-moz-user-select: text;
|
||||||
|
-webkit-user-select: text;
|
||||||
|
user-select: text;
|
||||||
|
|
||||||
|
.bib-title {
|
||||||
|
font-weight: bold;
|
||||||
|
padding-bottom: var(--size-4-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bib-author-year {
|
||||||
|
color: var(--text-muted);
|
||||||
|
text-align: left;
|
||||||
|
font-size: var(--pdf-plus-bib-metadata-font-size);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bib-container-title {
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-style: italic;
|
||||||
|
text-align: left;
|
||||||
|
font-size: var(--pdf-plus-bib-metadata-font-size);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container {
|
||||||
|
margin-top: 1em;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: var(--size-4-2);
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.pdf-plus-vim-command {
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
/* height: var(--size-4-8); */
|
||||||
|
font-family: monospace;
|
||||||
|
|
||||||
|
input {
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
font-family: monospace;
|
||||||
|
white-space: pre;
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page.pdf-plus-vim-hint-mode [data-pdf-plus-vim-hint]::after {
|
||||||
|
content: attr(data-pdf-plus-vim-hint);
|
||||||
|
color: var(--pdf-plus-vim-hint-color);
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: var(--font-ui-medium);
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: var(--pdf-plus-vim-hint-background-color);
|
||||||
|
border: var(--size-2-1) solid hsl(var(--accent-h), var(--accent-s), var(--accent-l));
|
||||||
|
border-radius: 10%;
|
||||||
|
padding: 0 var(--size-2-2);
|
||||||
|
position: relative;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
--pdf-plus-vim-hint-color: var(--text-normal);
|
||||||
|
--pdf-plus-vim-hint-background-color: var(--background-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.pdf-plus-vim-hint-inverted {
|
||||||
|
--pdf-plus-vim-hint-color: var(--text-on-accent);
|
||||||
|
--pdf-plus-vim-hint-background-color: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
|
||||||
|
}
|
||||||
Vendored
+17
-2
@@ -1,10 +1,12 @@
|
|||||||
{
|
{
|
||||||
"choices": [],
|
"choices": [],
|
||||||
"inputPrompt": "single-line",
|
"inputPrompt": "single-line",
|
||||||
|
"persistInputPromptDrafts": true,
|
||||||
|
"useSelectionAsCaptureValue": true,
|
||||||
"devMode": false,
|
"devMode": false,
|
||||||
"templateFolderPath": "",
|
"templateFolderPath": "",
|
||||||
"announceUpdates": "none",
|
"announceUpdates": "none",
|
||||||
"version": "2.9.4",
|
"version": "2.10.0",
|
||||||
"globalVariables": {},
|
"globalVariables": {},
|
||||||
"onePageInputEnabled": false,
|
"onePageInputEnabled": false,
|
||||||
"disableOnlineFeatures": true,
|
"disableOnlineFeatures": true,
|
||||||
@@ -12,6 +14,17 @@
|
|||||||
"showCaptureNotification": true,
|
"showCaptureNotification": true,
|
||||||
"showInputCancellationNotification": false,
|
"showInputCancellationNotification": false,
|
||||||
"enableTemplatePropertyTypes": false,
|
"enableTemplatePropertyTypes": false,
|
||||||
|
"dateAliases": {
|
||||||
|
"t": "today",
|
||||||
|
"tm": "tomorrow",
|
||||||
|
"yd": "yesterday",
|
||||||
|
"nw": "next week",
|
||||||
|
"nm": "next month",
|
||||||
|
"ny": "next year",
|
||||||
|
"lw": "last week",
|
||||||
|
"lm": "last month",
|
||||||
|
"ly": "last year"
|
||||||
|
},
|
||||||
"ai": {
|
"ai": {
|
||||||
"defaultModel": "Ask me",
|
"defaultModel": "Ask me",
|
||||||
"defaultSystemPrompt": "As an AI assistant within Obsidian, your primary goal is to help users manage their ideas and knowledge more effectively. Format your responses using Markdown syntax. Please use the [[Obsidian]] link format. You can write aliases for the links by writing [[Obsidian|the alias after the pipe symbol]]. To use mathematical notation, use LaTeX syntax. LaTeX syntax for larger equations should be on separate lines, surrounded with double dollar signs ($$). You can also inline math expressions by wrapping it in $ symbols. For example, use $$w_{ij}^{\text{new}}:=w_{ij}^{\text{current}}+etacdotdelta_jcdot x_{ij}$$ on a separate line, but you can write \"($eta$ = learning rate, $delta_j$ = error term, $x_{ij}$ = input)\" inline.",
|
"defaultSystemPrompt": "As an AI assistant within Obsidian, your primary goal is to help users manage their ideas and knowledge more effectively. Format your responses using Markdown syntax. Please use the [[Obsidian]] link format. You can write aliases for the links by writing [[Obsidian|the alias after the pipe symbol]]. To use mathematical notation, use LaTeX syntax. LaTeX syntax for larger equations should be on separate lines, surrounded with double dollar signs ($$). You can also inline math expressions by wrapping it in $ symbols. For example, use $$w_{ij}^{\text{new}}:=w_{ij}^{\text{current}}+etacdotdelta_jcdot x_{ij}$$ on a separate line, but you can write \"($eta$ = learning rate, $delta_j$ = error term, $x_{ij}$ = input)\" inline.",
|
||||||
@@ -99,6 +112,8 @@
|
|||||||
"addDefaultAIProviders": true,
|
"addDefaultAIProviders": true,
|
||||||
"removeMacroIndirection": true,
|
"removeMacroIndirection": true,
|
||||||
"migrateFileOpeningSettings": true,
|
"migrateFileOpeningSettings": true,
|
||||||
"setProviderModelDiscoveryMode": true
|
"setProviderModelDiscoveryMode": true,
|
||||||
|
"backfillFileOpeningDefaults": true,
|
||||||
|
"migrateProviderApiKeysToSecretStorage": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Vendored
+78
-73
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"id": "quickadd",
|
"id": "quickadd",
|
||||||
"name": "QuickAdd",
|
"name": "QuickAdd",
|
||||||
"version": "2.9.4",
|
"version": "2.10.0",
|
||||||
"minAppVersion": "1.6.0",
|
"minAppVersion": "1.11.4",
|
||||||
"description": "Quickly add new pages or content to your vault.",
|
"description": "Quickly add new pages or content to your vault.",
|
||||||
"author": "Christian B. B. Houmann",
|
"author": "Christian B. B. Houmann",
|
||||||
"authorUrl": "https://bagerbach.com",
|
"authorUrl": "https://bagerbach.com",
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -1,20 +1,21 @@
|
|||||||
---
|
---
|
||||||
id:
|
id:
|
||||||
aliases: []
|
aliases: []
|
||||||
|
title: 2025-06-13
|
||||||
tags:
|
tags:
|
||||||
- authorship/original
|
- authorship/original
|
||||||
- destiny/fleeting
|
- destiny/permanent
|
||||||
- status/incomplete
|
- status/draft
|
||||||
- topic/automation
|
- type/daily
|
||||||
- topic/organization
|
|
||||||
- topic/software
|
|
||||||
- type/idea
|
|
||||||
title: Automating Estimating Project Creation
|
|
||||||
dg-publish: true
|
dg-publish: true
|
||||||
---
|
---
|
||||||
# Automating Estimating Project Creation
|
# 2025-06-13
|
||||||
|
|
||||||
## Extract from Bid Boards
|
## 2025-06-13 ??:??
|
||||||
|
|
||||||
|
### Automating Estimating Project Creation
|
||||||
|
|
||||||
|
#### Extract from Bid Boards
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
> jobHandler --new project --from-web https://app.buildingconnected.com/opportunities/66fab32654ef4e1affd178e0/info
|
> jobHandler --new project --from-web https://app.buildingconnected.com/opportunities/66fab32654ef4e1affd178e0/info
|
||||||
@@ -25,4 +26,4 @@ dg-publish: true
|
|||||||
> jobHandler --select project freezpak
|
> jobHandler --select project freezpak
|
||||||
jobHandler\FreezPak Cold Storage> --add-details --from-web https://app.buildingconnected.com/opportunities/66fab32654ef4e1affd178e0/info
|
jobHandler\FreezPak Cold Storage> --add-details --from-web https://app.buildingconnected.com/opportunities/66fab32654ef4e1affd178e0/info
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
id:
|
||||||
|
aliases: []
|
||||||
|
title: 2025-08-22
|
||||||
|
tags:
|
||||||
|
- authorship/original
|
||||||
|
- destiny/permanent
|
||||||
|
- status/draft
|
||||||
|
- type/daily
|
||||||
|
dg-publish: true
|
||||||
|
---
|
||||||
|
# 2025-08-22
|
||||||
|
|
||||||
|
## 2025-08-22 ??:??
|
||||||
|
|
||||||
|
### Getting Historical Material Pricing
|
||||||
|
|
||||||
|
Aggregate SupplierLink.xml files from Accubid job folders.
|
||||||
@@ -1,16 +1,19 @@
|
|||||||
---
|
---
|
||||||
id:
|
id:
|
||||||
aliases: []
|
aliases: []
|
||||||
|
title: 2025-08-26
|
||||||
tags:
|
tags:
|
||||||
- destiny/fleeting
|
|
||||||
- topic/software
|
|
||||||
- type/idea
|
|
||||||
- authorship/original
|
- authorship/original
|
||||||
- status/incomplete
|
- destiny/permanent
|
||||||
title: Pathfinding
|
- status/draft
|
||||||
|
- type/daily
|
||||||
dg-publish: true
|
dg-publish: true
|
||||||
---
|
---
|
||||||
# Pathfinding
|
# 2025-08-26
|
||||||
|
|
||||||
|
## 2025-08-26 ??:??
|
||||||
|
|
||||||
|
### Pathfinding
|
||||||
|
|
||||||
```c
|
```c
|
||||||
struct point {
|
struct point {
|
||||||
@@ -28,4 +31,4 @@ p1.y = 6.0d;
|
|||||||
|
|
||||||
// ??? = Pathfinder.Taxicab(p1, p2)
|
// ??? = Pathfinder.Taxicab(p1, p2)
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -43,6 +43,23 @@ where instrumental methods are presented as if they were realist,
|
|||||||
causing confusion when the methods are,
|
causing confusion when the methods are,
|
||||||
as judged from a realist perspective, wrong.
|
as judged from a realist perspective, wrong.
|
||||||
|
|
||||||
|
## 2025-11-13 ??:??
|
||||||
|
|
||||||
|
### Questions for Bid Estimators
|
||||||
|
|
||||||
|
Questions for [[pdi-estimating#Bid Estimating|PDI Bid Estimators]].
|
||||||
|
|
||||||
|
#### Exclusions
|
||||||
|
|
||||||
|
When we send proposals with significant exclusions
|
||||||
|
(no lighting control, no demo, no submetering,
|
||||||
|
even when designed and shown on drawings):
|
||||||
|
|
||||||
|
Is there a conversation happening with our customers
|
||||||
|
before they receive our proposal?
|
||||||
|
|
||||||
|
Is it clear they understand what we're excluding?
|
||||||
|
|
||||||
## 2025-11-13 20:41
|
## 2025-11-13 20:41
|
||||||
|
|
||||||
#topic/hobbies/shorthand
|
#topic/hobbies/shorthand
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
---
|
---
|
||||||
id:
|
id:
|
||||||
aliases: []
|
aliases: []
|
||||||
title: Extracting PDF Panel Schedules
|
title: 2025-11-24
|
||||||
tags:
|
tags:
|
||||||
- authorship/original
|
- authorship/original
|
||||||
- destiny/fleeting
|
- destiny/permanent
|
||||||
- status/incomplete
|
- status/draft
|
||||||
- topic/automation
|
- type/daily
|
||||||
- type/idea
|
|
||||||
dg-publish: true
|
dg-publish: true
|
||||||
---
|
---
|
||||||
|
# 2025-11-24
|
||||||
|
|
||||||
|
## 2025-11-24 ??:??
|
||||||
|
|
||||||
# Extracting PDF Panel Schedules
|
# Extracting PDF Panel Schedules
|
||||||
|
|
||||||
Extract relevant pages
|
Extract relevant pages
|
||||||
+1
-1
@@ -45,7 +45,7 @@ to which Josh agreed.
|
|||||||
|
|
||||||
2021 IECC applies.
|
2021 IECC applies.
|
||||||
|
|
||||||
Josh wants [[pre-takeoff-confirmation]]
|
Josh wants [[pdi-pre-takeoff-confirmation]]
|
||||||
to ask if lighting control is "as shown" or "to code",
|
to ask if lighting control is "as shown" or "to code",
|
||||||
I objected that "to code" as interpreted by Bid
|
I objected that "to code" as interpreted by Bid
|
||||||
is not necessarily _to code_ in truth.
|
is not necessarily _to code_ in truth.
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
id:
|
||||||
|
aliases: []
|
||||||
|
title: 2026-01-30
|
||||||
|
tags:
|
||||||
|
- authorship/original
|
||||||
|
- destiny/permanent
|
||||||
|
- status/draft
|
||||||
|
- type/daily
|
||||||
|
dg-publish: true
|
||||||
|
---
|
||||||
|
# 2026-01-30
|
||||||
|
|
||||||
|
## 2026-01-30 08:44
|
||||||
|
|
||||||
|
Follow-up to [[2026-01-28#2026-01-28 10:02]].
|
||||||
|
|
||||||
|
I really would like to implement timestamped notes,
|
||||||
|
especially while it's still somewhat practical to split my old dailies.
|
||||||
|
|
||||||
|
Only the lack of plugin support stops me.
|
||||||
|
|
||||||
|
## 2026-01-30 09:06
|
||||||
|
|
||||||
|
I tried the Smart Connections community plugin.
|
||||||
|
I can't imagine who it could be useful for.
|
||||||
|
It seems to just identify large blocks of similar content,
|
||||||
|
which means that every daily note is connected to every other.
|
||||||
+1
-1
@@ -63,7 +63,7 @@ Upload extracted drawings to LiveCount
|
|||||||
|
|
||||||
### Setup Breakdowns
|
### Setup Breakdowns
|
||||||
|
|
||||||
Replace the `Area`s with those created in [[project-setup#Setup WBS]]
|
Replace the `Area`s with those created in [[pdi-conest-project-setup#Setup WBS]]
|
||||||
|
|
||||||
> [!important]
|
> [!important]
|
||||||
> Do not copy Systems from WBS Accubid Setup.
|
> Do not copy Systems from WBS Accubid Setup.
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
id:
|
||||||
|
aliases: []
|
||||||
|
title: E-Ink Tablet
|
||||||
|
tags:
|
||||||
|
- authorship/original
|
||||||
|
- destiny/permanent
|
||||||
|
- type/task
|
||||||
|
- status/incomplete
|
||||||
|
---
|
||||||
|
# E-Ink Tablet
|
||||||
|
|
||||||
|
~11 in screen
|
||||||
|
|
||||||
|
monochrome
|
||||||
|
|
||||||
|
writing features (pressure levels)
|
||||||
|
|
||||||
|
probably Boox
|
||||||
+2
-2
@@ -20,9 +20,9 @@ dg-publish: true
|
|||||||
|
|
||||||
### 1. Preparation
|
### 1. Preparation
|
||||||
|
|
||||||
1. [[project-setup]]
|
1. [[pdi-conest-project-setup]]
|
||||||
2. [[pre-takeoff-research]]
|
2. [[pre-takeoff-research]]
|
||||||
3. [[pre-takeoff-confirmation]]
|
3. [[pdi-pre-takeoff-confirmation]]
|
||||||
|
|
||||||
### 2. Takeoff
|
### 2. Takeoff
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
id:
|
|
||||||
aliases: []
|
|
||||||
tags:
|
|
||||||
- destiny/fleeting
|
|
||||||
- status/complete
|
|
||||||
- topic/automation
|
|
||||||
- topic/estimating
|
|
||||||
- type/idea
|
|
||||||
- authorship/original
|
|
||||||
title: Getting Historical Material Pricing
|
|
||||||
dg-publish: true
|
|
||||||
---
|
|
||||||
# Getting Historical Material Pricing
|
|
||||||
|
|
||||||
Aggregate SupplierLink.xml files from Accubid job folders.
|
|
||||||
+1
-1
@@ -28,7 +28,7 @@ The role of ConEst is to provide context to Bid estimates.
|
|||||||
|
|
||||||
* [[design-build-budget]]
|
* [[design-build-budget]]
|
||||||
* [[full-takeoff]]
|
* [[full-takeoff]]
|
||||||
* [[project-start-notification]]
|
* [[pdi-project-start-notification]]
|
||||||
|
|
||||||
#### ConEst Terminology
|
#### ConEst Terminology
|
||||||
|
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
id:
|
|
||||||
aliases: []
|
|
||||||
title: Questions for Bid Estimators
|
|
||||||
tags:
|
|
||||||
- authorship/original
|
|
||||||
- destiny/fleeting
|
|
||||||
- occupational
|
|
||||||
- status/incomplete
|
|
||||||
- type/idea
|
|
||||||
dg-publish: true
|
|
||||||
---
|
|
||||||
# Questions for Bid Estimators
|
|
||||||
|
|
||||||
Questions for [[pdi-estimating#Bid Estimating|PDI Bid Estimators]].
|
|
||||||
|
|
||||||
## Exclusions
|
|
||||||
|
|
||||||
When we send proposals with significant exclusions
|
|
||||||
(no lighting control, no demo, no submetering,
|
|
||||||
even when designed and shown on drawings):
|
|
||||||
|
|
||||||
Is there a conversation happening with our customers
|
|
||||||
before they receive our proposal?
|
|
||||||
|
|
||||||
Is it clear they understand what we're excluding?
|
|
||||||
@@ -79,7 +79,13 @@ On the subject of lightweight scripts
|
|||||||
that could reduce redundancy in processes,
|
that could reduce redundancy in processes,
|
||||||
without requiring fundamental change.
|
without requiring fundamental change.
|
||||||
|
|
||||||
### #topic/construction/electrical
|
### #topic/construction
|
||||||
|
|
||||||
|
Relating to the construction industry
|
||||||
|
including trade methods
|
||||||
|
as well as business concerns.
|
||||||
|
|
||||||
|
#### #topic/construction/electrical
|
||||||
|
|
||||||
Relating to electrical installation,
|
Relating to electrical installation,
|
||||||
including:
|
including:
|
||||||
@@ -106,6 +112,14 @@ Relating to mathematical and abstract concepts of [[risk]].
|
|||||||
On the subject of [[optimal-patterns]] for processes
|
On the subject of [[optimal-patterns]] for processes
|
||||||
of varying importance.
|
of varying importance.
|
||||||
|
|
||||||
|
### #topic/ambiguity
|
||||||
|
|
||||||
|
### #topic/transparency
|
||||||
|
|
||||||
|
### #topic/hobbies
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### #topic/other
|
### #topic/other
|
||||||
|
|
||||||
Notes relating to subjects not relevant to this notebook's [[supertopics]],
|
Notes relating to subjects not relevant to this notebook's [[supertopics]],
|
||||||
@@ -138,6 +152,9 @@ in the wider industry.
|
|||||||
|
|
||||||
### #type/idea
|
### #type/idea
|
||||||
|
|
||||||
|
> [!danger] Deprecated Tag
|
||||||
|
> Use of this tag has been deprecated in favor of [[daily-notes]].
|
||||||
|
|
||||||
Items of `#type/idea` are recommendation
|
Items of `#type/idea` are recommendation
|
||||||
that I do something in the future,
|
that I do something in the future,
|
||||||
possibly including some details of how to go about it,
|
possibly including some details of how to go about it,
|
||||||
@@ -165,11 +182,11 @@ use exact language, and include citations.
|
|||||||
They describe concepts as they are,
|
They describe concepts as they are,
|
||||||
not as they should be.
|
not as they should be.
|
||||||
|
|
||||||
### #type/encyclopedia
|
### #type/encyclopedia-entry
|
||||||
|
|
||||||
Items of `#type/encyclopedia-entry`
|
Items of `#type/encyclopedia-entry`
|
||||||
are children of a `#type/encyclopedia`,
|
are children of a `#type/encyclopedia`.
|
||||||
either though the parent may not yet exist.
|
The parent may or may not yet exist.
|
||||||
|
|
||||||
### #type/philosophy
|
### #type/philosophy
|
||||||
|
|
||||||
@@ -222,3 +239,11 @@ Content from other sources is properly cited.
|
|||||||
Items of `#authorship/other` are not my own work.
|
Items of `#authorship/other` are not my own work.
|
||||||
They may be of one source or a collection of several
|
They may be of one source or a collection of several
|
||||||
without significant commentary.
|
without significant commentary.
|
||||||
|
|
||||||
|
### #authorship/other-for-now
|
||||||
|
|
||||||
|
Items of `#authorship/other-for-now`
|
||||||
|
will eventually be [[#authorship/original]],
|
||||||
|
but that do not yet include original work.
|
||||||
|
|
||||||
|
They are always of [[tags#status/not-started]].
|
||||||
+1
-1
@@ -12,7 +12,7 @@ dg-publish: true
|
|||||||
---
|
---
|
||||||
# Unit Takeoff
|
# Unit Takeoff
|
||||||
|
|
||||||
[[project-setup#Create Unit Matrix|Create Unit Matrix]]
|
[[pdi-conest-project-setup#Create Unit Matrix|Create Unit Matrix]]
|
||||||
[[accubid-setup#Create Unit Typicals|Create Unit Typicals]]
|
[[accubid-setup#Create Unit Typicals|Create Unit Typicals]]
|
||||||
|
|
||||||
> [!important]
|
> [!important]
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
id:
|
|
||||||
aliases: []
|
|
||||||
title: Wiring Method Parser
|
|
||||||
tags:
|
|
||||||
- authorship/original
|
|
||||||
- destiny/fleeting
|
|
||||||
- status/incomplete
|
|
||||||
- topic/automation
|
|
||||||
- topic/construction/electrical
|
|
||||||
- type/idea
|
|
||||||
dg-publish: true
|
|
||||||
---
|
|
||||||
# Wiring Method Parser
|
|
||||||
+8
-1
@@ -6,8 +6,15 @@ tags:
|
|||||||
- authorship/original
|
- authorship/original
|
||||||
- destiny/permanent
|
- destiny/permanent
|
||||||
- status/draft
|
- status/draft
|
||||||
|
dg-publish: true
|
||||||
---
|
---
|
||||||
# Wishlist
|
# Wishlist
|
||||||
|
|
||||||
* [ ] hand sewing thread
|
## Cheap
|
||||||
|
|
||||||
|
* [ ] hand sewing thread set (multiple colors)
|
||||||
* [ ] quality aux cable
|
* [ ] quality aux cable
|
||||||
|
|
||||||
|
## Pricier
|
||||||
|
|
||||||
|
* [ ] [[e-ink-tablet]]
|
||||||
Reference in New Issue
Block a user