update
This commit is contained in:
+12725
-8503
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "breadcrumbs",
|
||||
"name": "Breadcrumbs",
|
||||
"version": "3.6.4",
|
||||
"version": "3.6.11",
|
||||
"minAppVersion": "0.15.2",
|
||||
"description": "Visualise & navigate your vault's structure",
|
||||
"author": "SkepticMystic",
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -2,7 +2,7 @@
|
||||
"id": "card-board",
|
||||
"name": "CardBoard",
|
||||
"description": "Display markdown tasks on kanban style boards.",
|
||||
"version": "0.7.4",
|
||||
"version": "0.7.6",
|
||||
"author": "roovo",
|
||||
"authorUrl": "https://github.com/roovo",
|
||||
"minAppVersion": "0.12.13",
|
||||
|
||||
+81
-20
@@ -24,7 +24,7 @@
|
||||
.card-board-view {
|
||||
height: 100%;
|
||||
background-color: var(--background-primary);
|
||||
font-size: var(--font-normal);
|
||||
font-size: var(--font-text-size);
|
||||
}
|
||||
|
||||
.mod-macos.is-hidden-frameless:not(.is-popout-window) .workspace .workspace-tabs.mod-top-right-space .card-board-view .workspace-tab-header-container {
|
||||
@@ -212,6 +212,7 @@ ul.card-board-column-list > li.card-board-card::before {
|
||||
display: grid;
|
||||
grid: "mark contents"
|
||||
/ 5px auto;
|
||||
font-family: var(--font-text);
|
||||
}
|
||||
|
||||
.card-board-card-highlight-area {
|
||||
@@ -262,16 +263,6 @@ ul.card-board-column-list > li.card-board-card::before {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.checkbox-container.is-mid-enabled {
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
.checkbox-container.is-mid-enabled:after {
|
||||
transform: translate3d(calc((var(--toggle-width) - var(--toggle-thumb-width) - var(--toggle-border-width)) / 2), 0, 0);
|
||||
}
|
||||
.checkbox-container.is-mid-enabled:active:after {
|
||||
left: -4px;
|
||||
}
|
||||
|
||||
.card-board-card-title {
|
||||
grid-area: title;
|
||||
margin: 0 0.2em;
|
||||
@@ -361,19 +352,58 @@ ul.card-board-column-list > li.card-board-card::before {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.card-board-view .modal-content {
|
||||
display: grid;
|
||||
grid: "select form"
|
||||
/ 200px auto;
|
||||
overflow: hidden;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.setting-items-inner {
|
||||
position: relative;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.cardboard-settings-columns-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.cardboard-settings-column-item {
|
||||
display: grid;
|
||||
grid-template-columns: 2em 5em 1fr 1fr 1.5em;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
border: var(--border-width) solid var(--background-modifier-border);
|
||||
border-radius: 4px;
|
||||
background-color: var(--background-secondary);
|
||||
width: 100%;
|
||||
padding: var(--size-4-1) var(--size-4-2);
|
||||
margin-bottom: 0.4em;
|
||||
}
|
||||
|
||||
.cardboard-settings-column-item-button {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.cardboard-settings-column-item-detail {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.cardboard-settings-column-item-type {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
|
||||
.cardboard-settings-column-item-controls {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
gap: var(--size-4-2);
|
||||
}
|
||||
|
||||
.cardboard-settings-columns-button {
|
||||
padding-bottom: 0.75em;
|
||||
}
|
||||
|
||||
.vertical-tab-header-group-title-icon {
|
||||
justify-self: end;
|
||||
cursor: pointer;
|
||||
@@ -384,15 +414,21 @@ ul.card-board-column-list > li.card-board-card::before {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.card-board-view .card-board-dragable {
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
.card-board-view .vertical-tab-nav-item {
|
||||
padding-right: 1.5em;
|
||||
cursor: grab;
|
||||
min-height: 1.9em;
|
||||
}
|
||||
|
||||
.modal-form {
|
||||
display: grid;
|
||||
grid-gap: 1.5em;
|
||||
padding-top: 1.3em;
|
||||
padding-bottom: 1.5em;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.form-item {
|
||||
@@ -503,14 +539,39 @@ ul.card-board-column-list > li.card-board-card::before {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
.card-board-view .vertical-tab-content {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.card-board-view .modal-close-button {
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.card-board-view .suggestion-container {
|
||||
position: absolute;
|
||||
display: grid;
|
||||
grid-auto-flow: row;
|
||||
grid-gap: 0.5em;
|
||||
overflow: auto;
|
||||
padding: 5px 8px;
|
||||
font-size: var(--font-small);
|
||||
text-align: left;
|
||||
line-height: 1em;
|
||||
max-height: 400px;
|
||||
}
|
||||
|
||||
.card-board-view .suggestion-container::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
.card-board-view .suggestion-container::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
.card-board-view .suggestion-container::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.card-board-view .suggestion-section {
|
||||
|
||||
+7649
-7643
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-annotator",
|
||||
"name": "Annotator",
|
||||
"version": "0.2.10",
|
||||
"version": "0.2.11",
|
||||
"minAppVersion": "1.0.3",
|
||||
"description": "This is a sample plugin for Obsidian. It allows you to open and annotate PDF and EPUB files.",
|
||||
"author": "Obsidian",
|
||||
|
||||
+6
-1
@@ -73795,7 +73795,7 @@
|
||||
}
|
||||
},
|
||||
"defaultTrayMode": false,
|
||||
"previousRelease": "2.0.10",
|
||||
"previousRelease": "2.0.16",
|
||||
"showReleaseNotes": true,
|
||||
"showNewVersionNotification": true,
|
||||
"latexBoilerplate": "\\color{blue}",
|
||||
@@ -74149,7 +74149,11 @@
|
||||
"openAIAPIToken": "",
|
||||
"openAIDefaultTextModel": "gpt-3.5-turbo-1106",
|
||||
"openAIDefaultVisionModel": "gpt-4-vision-preview",
|
||||
"openAIDefaultImageGenerationModel": "dall-e-3",
|
||||
"openAIURL": "https://api.openai.com/v1/chat/completions",
|
||||
"openAIImageGenerationURL": "https://api.openai.com/v1/images/generations",
|
||||
"openAIImageEditsURL": "https://api.openai.com/v1/images/edits",
|
||||
"openAIImageVariationURL": "https://api.openai.com/v1/images/variations",
|
||||
"modifierKeyConfig": {
|
||||
"Mac": {
|
||||
"LocalFileDragAction": {
|
||||
@@ -74434,5 +74438,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"slidingPanesSupport": false,
|
||||
"mathjaxSourceURL": "https://cdn.jsdelivr.net/npm/mathjax@3.2.1/es5/tex-svg.js"
|
||||
}
|
||||
+9
-6
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.0.10",
|
||||
"version": "2.0.16",
|
||||
"minAppVersion": "1.1.6",
|
||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||
"author": "Zsolt Viczian",
|
||||
@@ -9,4 +9,4 @@
|
||||
"fundingUrl": "https://ko-fi.com/zsolt",
|
||||
"helpUrl": "https://github.com/zsviczian/obsidian-excalidraw-plugin#readme",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
+1
-534
File diff suppressed because one or more lines are too long
+6
-6
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-markmind",
|
||||
"name": "obsidian markmind",
|
||||
"version": "1.8.8",
|
||||
"version": "1.8.9",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "This is a mindmap,outline and pdf annotate tool for obsidian.",
|
||||
"author": "Mark",
|
||||
|
||||
+67
-69
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-meta-bind-plugin",
|
||||
"name": "Meta Bind Plugin",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"minAppVersion": "1.4.0",
|
||||
"description": "This plugin can create input fields inside your notes and bind them to metadata fields.",
|
||||
"author": "Moritz Jung",
|
||||
|
||||
@@ -381,6 +381,16 @@ code.mb-error {
|
||||
color: var(--text-error) !important;
|
||||
}
|
||||
|
||||
.mb-warning {
|
||||
color: var(--text-warning) !important;
|
||||
font-weight: bold;
|
||||
font-family: var(--font-monospace);
|
||||
}
|
||||
|
||||
code.mb-warning {
|
||||
color: var(--text-warning) !important;
|
||||
}
|
||||
|
||||
/* Code */
|
||||
.mb-code {
|
||||
color: var(--text-normal);
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"nextPathHotkey": {
|
||||
"modifiers": [],
|
||||
"key": "ArrowRight"
|
||||
},
|
||||
"prevPathHotkey": {
|
||||
"modifiers": [],
|
||||
"key": "ArrowLeft"
|
||||
},
|
||||
"openPanelHotkey": {
|
||||
"modifiers": [],
|
||||
"key": "o"
|
||||
},
|
||||
"closePanelHotkey": {
|
||||
"modifiers": [],
|
||||
"key": "w"
|
||||
},
|
||||
"filter": {
|
||||
"regexp": "",
|
||||
"mode": "Exclude"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"pocket-sync-tag": "#pocket",
|
||||
"pocket-sync-tag": null,
|
||||
"item-notes-folder": "sources",
|
||||
"frontmatter-url-key": "link"
|
||||
}
|
||||
+2197
-2906
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-qrcode-plugin",
|
||||
"name": "QR Code Generator Plugin",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "This is a QR Code Generator plugin for Obsidian.",
|
||||
"author": "Rudi Häusler",
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
+100
-63
@@ -4721,7 +4721,7 @@ function requestLog(octokit) {
|
||||
requestLog.VERSION = VERSION5;
|
||||
|
||||
// node_modules/@octokit/plugin-paginate-rest/dist-web/index.js
|
||||
var VERSION6 = "8.0.0";
|
||||
var VERSION6 = "9.0.0";
|
||||
function normalizePaginatedListResponse(response) {
|
||||
if (!response.data) {
|
||||
return __spreadProps(__spreadValues({}, response), {
|
||||
@@ -4828,7 +4828,7 @@ function paginateRest(octokit) {
|
||||
paginateRest.VERSION = VERSION6;
|
||||
|
||||
// node_modules/@octokit/plugin-rest-endpoint-methods/dist-web/index.js
|
||||
var VERSION7 = "9.0.0";
|
||||
var VERSION7 = "10.0.0";
|
||||
var Endpoints = {
|
||||
actions: {
|
||||
addCustomLabelsToSelfHostedRunnerForOrg: [
|
||||
@@ -4843,9 +4843,6 @@ var Endpoints = {
|
||||
addSelectedRepoToOrgVariable: [
|
||||
"PUT /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"
|
||||
],
|
||||
addSelectedRepoToRequiredWorkflow: [
|
||||
"PUT /orgs/{org}/actions/required_workflows/{required_workflow_id}/repositories/{repository_id}"
|
||||
],
|
||||
approveWorkflowRun: [
|
||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/approve"
|
||||
],
|
||||
@@ -4874,7 +4871,6 @@ var Endpoints = {
|
||||
"POST /repos/{owner}/{repo}/actions/runners/remove-token"
|
||||
],
|
||||
createRepoVariable: ["POST /repos/{owner}/{repo}/actions/variables"],
|
||||
createRequiredWorkflow: ["POST /orgs/{org}/actions/required_workflows"],
|
||||
createWorkflowDispatch: [
|
||||
"POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches"
|
||||
],
|
||||
@@ -4901,9 +4897,6 @@ var Endpoints = {
|
||||
deleteRepoVariable: [
|
||||
"DELETE /repos/{owner}/{repo}/actions/variables/{name}"
|
||||
],
|
||||
deleteRequiredWorkflow: [
|
||||
"DELETE /orgs/{org}/actions/required_workflows/{required_workflow_id}"
|
||||
],
|
||||
deleteSelfHostedRunnerFromOrg: [
|
||||
"DELETE /orgs/{org}/actions/runners/{runner_id}"
|
||||
],
|
||||
@@ -4991,17 +4984,8 @@ var Endpoints = {
|
||||
{ renamed: ["actions", "getGithubActionsPermissionsRepository"] }
|
||||
],
|
||||
getRepoPublicKey: ["GET /repos/{owner}/{repo}/actions/secrets/public-key"],
|
||||
getRepoRequiredWorkflow: [
|
||||
"GET /repos/{org}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}"
|
||||
],
|
||||
getRepoRequiredWorkflowUsage: [
|
||||
"GET /repos/{org}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}/timing"
|
||||
],
|
||||
getRepoSecret: ["GET /repos/{owner}/{repo}/actions/secrets/{secret_name}"],
|
||||
getRepoVariable: ["GET /repos/{owner}/{repo}/actions/variables/{name}"],
|
||||
getRequiredWorkflow: [
|
||||
"GET /orgs/{org}/actions/required_workflows/{required_workflow_id}"
|
||||
],
|
||||
getReviewsForRun: [
|
||||
"GET /repos/{owner}/{repo}/actions/runs/{run_id}/approvals"
|
||||
],
|
||||
@@ -5050,16 +5034,9 @@ var Endpoints = {
|
||||
listRepoOrganizationVariables: [
|
||||
"GET /repos/{owner}/{repo}/actions/organization-variables"
|
||||
],
|
||||
listRepoRequiredWorkflows: [
|
||||
"GET /repos/{org}/{repo}/actions/required_workflows"
|
||||
],
|
||||
listRepoSecrets: ["GET /repos/{owner}/{repo}/actions/secrets"],
|
||||
listRepoVariables: ["GET /repos/{owner}/{repo}/actions/variables"],
|
||||
listRepoWorkflows: ["GET /repos/{owner}/{repo}/actions/workflows"],
|
||||
listRequiredWorkflowRuns: [
|
||||
"GET /repos/{owner}/{repo}/actions/required_workflows/{required_workflow_id_for_repo}/runs"
|
||||
],
|
||||
listRequiredWorkflows: ["GET /orgs/{org}/actions/required_workflows"],
|
||||
listRunnerApplicationsForOrg: ["GET /orgs/{org}/actions/runners/downloads"],
|
||||
listRunnerApplicationsForRepo: [
|
||||
"GET /repos/{owner}/{repo}/actions/runners/downloads"
|
||||
@@ -5073,9 +5050,6 @@ var Endpoints = {
|
||||
listSelectedRepositoriesEnabledGithubActionsOrganization: [
|
||||
"GET /orgs/{org}/actions/permissions/repositories"
|
||||
],
|
||||
listSelectedRepositoriesRequiredWorkflow: [
|
||||
"GET /orgs/{org}/actions/required_workflows/{required_workflow_id}/repositories"
|
||||
],
|
||||
listSelfHostedRunnersForOrg: ["GET /orgs/{org}/actions/runners"],
|
||||
listSelfHostedRunnersForRepo: ["GET /repos/{owner}/{repo}/actions/runners"],
|
||||
listWorkflowRunArtifacts: [
|
||||
@@ -5110,9 +5084,6 @@ var Endpoints = {
|
||||
removeSelectedRepoFromOrgVariable: [
|
||||
"DELETE /orgs/{org}/actions/variables/{name}/repositories/{repository_id}"
|
||||
],
|
||||
removeSelectedRepoFromRequiredWorkflow: [
|
||||
"DELETE /orgs/{org}/actions/required_workflows/{required_workflow_id}/repositories/{repository_id}"
|
||||
],
|
||||
reviewCustomGatesForRun: [
|
||||
"POST /repos/{owner}/{repo}/actions/runs/{run_id}/deployment_protection_rule"
|
||||
],
|
||||
@@ -5149,9 +5120,6 @@ var Endpoints = {
|
||||
setSelectedReposForOrgVariable: [
|
||||
"PUT /orgs/{org}/actions/variables/{name}/repositories"
|
||||
],
|
||||
setSelectedReposToRequiredWorkflow: [
|
||||
"PUT /orgs/{org}/actions/required_workflows/{required_workflow_id}/repositories"
|
||||
],
|
||||
setSelectedRepositoriesEnabledGithubActionsOrganization: [
|
||||
"PUT /orgs/{org}/actions/permissions/repositories"
|
||||
],
|
||||
@@ -5164,9 +5132,6 @@ var Endpoints = {
|
||||
updateOrgVariable: ["PATCH /orgs/{org}/actions/variables/{name}"],
|
||||
updateRepoVariable: [
|
||||
"PATCH /repos/{owner}/{repo}/actions/variables/{name}"
|
||||
],
|
||||
updateRequiredWorkflow: [
|
||||
"PATCH /orgs/{org}/actions/required_workflows/{required_workflow_id}"
|
||||
]
|
||||
},
|
||||
activity: {
|
||||
@@ -5394,9 +5359,6 @@ var Endpoints = {
|
||||
createWithRepoForAuthenticatedUser: [
|
||||
"POST /repos/{owner}/{repo}/codespaces"
|
||||
],
|
||||
deleteCodespacesBillingUsers: [
|
||||
"DELETE /orgs/{org}/codespaces/billing/selected_users"
|
||||
],
|
||||
deleteForAuthenticatedUser: ["DELETE /user/codespaces/{codespace_name}"],
|
||||
deleteFromOrganization: [
|
||||
"DELETE /orgs/{org}/members/{username}/codespaces/{codespace_name}"
|
||||
@@ -5468,10 +5430,6 @@ var Endpoints = {
|
||||
repoMachinesForAuthenticatedUser: [
|
||||
"GET /repos/{owner}/{repo}/codespaces/machines"
|
||||
],
|
||||
setCodespacesBilling: ["PUT /orgs/{org}/codespaces/billing"],
|
||||
setCodespacesBillingUsers: [
|
||||
"POST /orgs/{org}/codespaces/billing/selected_users"
|
||||
],
|
||||
setRepositoriesForSecretForAuthenticatedUser: [
|
||||
"PUT /user/codespaces/secrets/{secret_name}/repositories"
|
||||
],
|
||||
@@ -5485,6 +5443,25 @@ var Endpoints = {
|
||||
],
|
||||
updateForAuthenticatedUser: ["PATCH /user/codespaces/{codespace_name}"]
|
||||
},
|
||||
copilot: {
|
||||
addCopilotForBusinessSeatsForTeams: [
|
||||
"POST /orgs/{org}/copilot/billing/selected_teams"
|
||||
],
|
||||
addCopilotForBusinessSeatsForUsers: [
|
||||
"POST /orgs/{org}/copilot/billing/selected_users"
|
||||
],
|
||||
cancelCopilotSeatAssignmentForTeams: [
|
||||
"DELETE /orgs/{org}/copilot/billing/selected_teams"
|
||||
],
|
||||
cancelCopilotSeatAssignmentForUsers: [
|
||||
"DELETE /orgs/{org}/copilot/billing/selected_users"
|
||||
],
|
||||
getCopilotOrganizationDetails: ["GET /orgs/{org}/copilot/billing"],
|
||||
getCopilotSeatAssignmentDetailsForUser: [
|
||||
"GET /orgs/{org}/members/{username}/copilot"
|
||||
],
|
||||
listCopilotSeats: ["GET /orgs/{org}/copilot/billing/seats"]
|
||||
},
|
||||
dependabot: {
|
||||
addSelectedRepoToOrgSecret: [
|
||||
"PUT /orgs/{org}/dependabot/secrets/{secret_name}/repositories/{repository_id}"
|
||||
@@ -5773,15 +5750,13 @@ var Endpoints = {
|
||||
listMembershipsForAuthenticatedUser: ["GET /user/memberships/orgs"],
|
||||
listOutsideCollaborators: ["GET /orgs/{org}/outside_collaborators"],
|
||||
listPatGrantRepositories: [
|
||||
"GET /organizations/{org}/personal-access-tokens/{pat_id}/repositories"
|
||||
"GET /orgs/{org}/personal-access-tokens/{pat_id}/repositories"
|
||||
],
|
||||
listPatGrantRequestRepositories: [
|
||||
"GET /organizations/{org}/personal-access-token-requests/{pat_request_id}/repositories"
|
||||
"GET /orgs/{org}/personal-access-token-requests/{pat_request_id}/repositories"
|
||||
],
|
||||
listPatGrantRequests: [
|
||||
"GET /organizations/{org}/personal-access-token-requests"
|
||||
],
|
||||
listPatGrants: ["GET /organizations/{org}/personal-access-tokens"],
|
||||
listPatGrantRequests: ["GET /orgs/{org}/personal-access-token-requests"],
|
||||
listPatGrants: ["GET /orgs/{org}/personal-access-tokens"],
|
||||
listPendingInvitations: ["GET /orgs/{org}/invitations"],
|
||||
listPublicMembers: ["GET /orgs/{org}/public_members"],
|
||||
listSecurityManagerTeams: ["GET /orgs/{org}/security-managers"],
|
||||
@@ -5803,10 +5778,10 @@ var Endpoints = {
|
||||
"DELETE /orgs/{org}/security-managers/teams/{team_slug}"
|
||||
],
|
||||
reviewPatGrantRequest: [
|
||||
"POST /organizations/{org}/personal-access-token-requests/{pat_request_id}"
|
||||
"POST /orgs/{org}/personal-access-token-requests/{pat_request_id}"
|
||||
],
|
||||
reviewPatGrantRequestsInBulk: [
|
||||
"POST /organizations/{org}/personal-access-token-requests"
|
||||
"POST /orgs/{org}/personal-access-token-requests"
|
||||
],
|
||||
setMembershipForUser: ["PUT /orgs/{org}/memberships/{username}"],
|
||||
setPublicMembershipForAuthenticatedUser: [
|
||||
@@ -5817,10 +5792,8 @@ var Endpoints = {
|
||||
updateMembershipForAuthenticatedUser: [
|
||||
"PATCH /user/memberships/orgs/{org}"
|
||||
],
|
||||
updatePatAccess: [
|
||||
"POST /organizations/{org}/personal-access-tokens/{pat_id}"
|
||||
],
|
||||
updatePatAccesses: ["POST /organizations/{org}/personal-access-tokens"],
|
||||
updatePatAccess: ["POST /orgs/{org}/personal-access-tokens/{pat_id}"],
|
||||
updatePatAccesses: ["POST /orgs/{org}/personal-access-tokens"],
|
||||
updateWebhook: ["PATCH /orgs/{org}/hooks/{hook_id}"],
|
||||
updateWebhookConfigForOrg: ["PATCH /orgs/{org}/hooks/{hook_id}/config"]
|
||||
},
|
||||
@@ -6100,6 +6073,9 @@ var Endpoints = {
|
||||
{},
|
||||
{ mapToData: "users" }
|
||||
],
|
||||
checkAutomatedSecurityFixes: [
|
||||
"GET /repos/{owner}/{repo}/automated-security-fixes"
|
||||
],
|
||||
checkCollaborator: ["GET /repos/{owner}/{repo}/collaborators/{username}"],
|
||||
checkVulnerabilityAlerts: [
|
||||
"GET /repos/{owner}/{repo}/vulnerability-alerts"
|
||||
@@ -6203,7 +6179,9 @@ var Endpoints = {
|
||||
disableDeploymentProtectionRule: [
|
||||
"DELETE /repos/{owner}/{repo}/environments/{environment_name}/deployment_protection_rules/{protection_rule_id}"
|
||||
],
|
||||
disableLfsForRepo: ["DELETE /repos/{owner}/{repo}/lfs"],
|
||||
disablePrivateVulnerabilityReporting: [
|
||||
"DELETE /repos/{owner}/{repo}/private-vulnerability-reporting"
|
||||
],
|
||||
disableVulnerabilityAlerts: [
|
||||
"DELETE /repos/{owner}/{repo}/vulnerability-alerts"
|
||||
],
|
||||
@@ -6217,7 +6195,9 @@ var Endpoints = {
|
||||
enableAutomatedSecurityFixes: [
|
||||
"PUT /repos/{owner}/{repo}/automated-security-fixes"
|
||||
],
|
||||
enableLfsForRepo: ["PUT /repos/{owner}/{repo}/lfs"],
|
||||
enablePrivateVulnerabilityReporting: [
|
||||
"PUT /repos/{owner}/{repo}/private-vulnerability-reporting"
|
||||
],
|
||||
enableVulnerabilityAlerts: [
|
||||
"PUT /repos/{owner}/{repo}/vulnerability-alerts"
|
||||
],
|
||||
@@ -6315,6 +6295,7 @@ var Endpoints = {
|
||||
getWebhookDelivery: [
|
||||
"GET /repos/{owner}/{repo}/hooks/{hook_id}/deliveries/{delivery_id}"
|
||||
],
|
||||
listActivities: ["GET /repos/{owner}/{repo}/activity"],
|
||||
listAutolinks: ["GET /repos/{owner}/{repo}/autolinks"],
|
||||
listBranches: ["GET /repos/{owner}/{repo}/branches"],
|
||||
listBranchesForHeadCommit: [
|
||||
@@ -6494,9 +6475,15 @@ var Endpoints = {
|
||||
createRepositoryAdvisory: [
|
||||
"POST /repos/{owner}/{repo}/security-advisories"
|
||||
],
|
||||
createRepositoryAdvisoryCveRequest: [
|
||||
"POST /repos/{owner}/{repo}/security-advisories/{ghsa_id}/cve"
|
||||
],
|
||||
getGlobalAdvisory: ["GET /advisories/{ghsa_id}"],
|
||||
getRepositoryAdvisory: [
|
||||
"GET /repos/{owner}/{repo}/security-advisories/{ghsa_id}"
|
||||
],
|
||||
listGlobalAdvisories: ["GET /advisories"],
|
||||
listOrgRepositoryAdvisories: ["GET /orgs/{org}/security-advisories"],
|
||||
listRepositoryAdvisories: ["GET /repos/{owner}/{repo}/security-advisories"],
|
||||
updateRepositoryAdvisory: [
|
||||
"PATCH /repos/{owner}/{repo}/security-advisories/{ghsa_id}"
|
||||
@@ -6803,7 +6790,7 @@ function legacyRestEndpointMethods(octokit) {
|
||||
legacyRestEndpointMethods.VERSION = VERSION7;
|
||||
|
||||
// node_modules/@octokit/rest/dist-web/index.js
|
||||
var VERSION8 = "20.0.1";
|
||||
var VERSION8 = "20.0.2";
|
||||
var Octokit2 = Octokit.plugin(
|
||||
requestLog,
|
||||
legacyRestEndpointMethods,
|
||||
@@ -6916,6 +6903,42 @@ var getLatestSettings = (plugin) => __async(void 0, null, function* () {
|
||||
return plugin.settings;
|
||||
});
|
||||
var stripFrontMatter = (content) => (0, import_gray_matter2.default)(content).content;
|
||||
var copyGitUrlEditorCallback = (opts) => () => __async(void 0, null, function* () {
|
||||
const { app, plugin } = opts;
|
||||
const { enableUpdatingGistsAfterCreation } = yield getLatestSettings(plugin);
|
||||
if (!enableUpdatingGistsAfterCreation) {
|
||||
return new import_obsidian.Notice(
|
||||
"You need to enable 'Update gists after creation' in Settings to use this command."
|
||||
);
|
||||
}
|
||||
const view = app.workspace.getActiveViewOfType(import_obsidian.MarkdownView);
|
||||
if (!view) {
|
||||
return new import_obsidian.Notice("No active file");
|
||||
}
|
||||
const editor = view.editor;
|
||||
const originalContent = editor.getValue();
|
||||
const existingSharedGists = getSharedGistsForFile(originalContent);
|
||||
if (existingSharedGists.length === 0) {
|
||||
return new import_obsidian.Notice(
|
||||
"You must share this note as a gist before you can copy its URL to the clipboard."
|
||||
);
|
||||
}
|
||||
if (existingSharedGists.length > 1) {
|
||||
new SelectExistingGistModal(
|
||||
app,
|
||||
existingSharedGists,
|
||||
false,
|
||||
(sharedGist) => __async(void 0, null, function* () {
|
||||
navigator.clipboard.writeText(sharedGist.url);
|
||||
new import_obsidian.Notice("Copied gist URL to clipboard.");
|
||||
})
|
||||
).open();
|
||||
} else {
|
||||
const sharedGist = existingSharedGists[0];
|
||||
navigator.clipboard.writeText(sharedGist.url);
|
||||
return new import_obsidian.Notice("Copied gist URL to clipboard.");
|
||||
}
|
||||
});
|
||||
var shareGistEditorCallback = (opts) => () => __async(void 0, null, function* () {
|
||||
const { isPublic, app, plugin } = opts;
|
||||
const accessToken = getAccessToken();
|
||||
@@ -6937,9 +6960,10 @@ var shareGistEditorCallback = (opts) => () => __async(void 0, null, function* ()
|
||||
);
|
||||
const gistContent = includeFrontMatter ? originalContent : stripFrontMatter(originalContent);
|
||||
if (enableUpdatingGistsAfterCreation && existingSharedGists.length) {
|
||||
new ShareAsGistSelectExistingGistModal(
|
||||
new SelectExistingGistModal(
|
||||
app,
|
||||
existingSharedGists,
|
||||
true,
|
||||
(sharedGist) => __async(void 0, null, function* () {
|
||||
let result;
|
||||
if (sharedGist) {
|
||||
@@ -7047,6 +7071,14 @@ var ShareAsGistPlugin = class extends import_obsidian.Plugin {
|
||||
isPublic: false
|
||||
})
|
||||
});
|
||||
this.addCommand({
|
||||
id: "copy-gist-url",
|
||||
name: "Copy GitHub.com gist URL",
|
||||
callback: copyGitUrlEditorCallback({
|
||||
plugin: this,
|
||||
app: this.app
|
||||
})
|
||||
});
|
||||
this.addModifyCallback();
|
||||
this.addSettingTab(new ShareAsGistSettingTab(this.app, this));
|
||||
});
|
||||
@@ -7091,14 +7123,19 @@ var ShareAsGistPlugin = class extends import_obsidian.Plugin {
|
||||
});
|
||||
}
|
||||
};
|
||||
var ShareAsGistSelectExistingGistModal = class extends import_obsidian.SuggestModal {
|
||||
constructor(app, sharedGists, onSubmit) {
|
||||
var SelectExistingGistModal = class extends import_obsidian.SuggestModal {
|
||||
constructor(app, sharedGists, allowCreatingNewGist, onSubmit) {
|
||||
super(app);
|
||||
this.sharedGists = sharedGists;
|
||||
this.allowCreatingNewGist = allowCreatingNewGist;
|
||||
this.onSubmit = onSubmit;
|
||||
}
|
||||
getSuggestions() {
|
||||
return this.sharedGists.concat(null);
|
||||
if (this.allowCreatingNewGist) {
|
||||
return this.sharedGists.concat(null);
|
||||
} else {
|
||||
return this.sharedGists;
|
||||
}
|
||||
}
|
||||
renderSuggestion(sharedGist, el) {
|
||||
if (sharedGist === null) {
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-share-as-gist",
|
||||
"name": "Share as Gist",
|
||||
"version": "1.3.1",
|
||||
"version": "1.4.0",
|
||||
"minAppVersion": "0.9.7",
|
||||
"description": "Shares an Obsidian note as a GitHub.com gist",
|
||||
"author": "Tim Rogers",
|
||||
|
||||
Vendored
+101
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"settings_version": "0.20.0",
|
||||
"debug": false,
|
||||
"obsidian_command_palette_prefix": "Execute: ",
|
||||
"preview_variables_in_command_palette": true,
|
||||
"show_autocomplete_menu": true,
|
||||
"working_directory": "",
|
||||
"default_shells": {},
|
||||
"environment_variable_path_augmentations": {
|
||||
"darwin": "/Users/oscarplaisant/.opam/default/bin:/Users/oscarplaisant/.opam/default/bin:/opt/local/bin:/opt/local/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/.cargo/env:/Library/TeX/texbin:/Users/oscarplaisant/.cargo/bin:/Users/oscarplaisant/.opam/default/bin:/opt/local/bin:/opt/local/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/oscarplaisant/.cargo/env:/Users/oscarplaisant/.cargo/bin+:/Users/oscarplaisant/.zsh_scripts/+:/Users/oscarplaisant/.zsh_scripts/+:/Users/oscarplaisant/.zsh_scripts/"
|
||||
},
|
||||
"error_message_duration": 20,
|
||||
"notification_message_duration": 10,
|
||||
"execution_notification_mode": "disabled",
|
||||
"output_channel_clipboard_also_outputs_to_notification": true,
|
||||
"output_channel_notification_decorates_output": true,
|
||||
"enable_events": true,
|
||||
"approve_modals_by_pressing_enter_key": true,
|
||||
"command_palette": {
|
||||
"re_execute_last_shell_command": {
|
||||
"enabled": true,
|
||||
"prefix": "Re-execute: "
|
||||
}
|
||||
},
|
||||
"max_visible_lines_in_shell_command_fields": false,
|
||||
"shell_commands": [
|
||||
{
|
||||
"id": "4s9o488usd",
|
||||
"platform_specific_commands": {
|
||||
"default": "/opt/homebrew/bin/neovide {{file_path:absolute}}"
|
||||
},
|
||||
"shells": {},
|
||||
"alias": "neovide",
|
||||
"icon": null,
|
||||
"confirm_execution": false,
|
||||
"ignore_error_codes": [],
|
||||
"input_contents": {
|
||||
"stdin": null
|
||||
},
|
||||
"output_handlers": {
|
||||
"stdout": {
|
||||
"handler": "ignore",
|
||||
"convert_ansi_code": true
|
||||
},
|
||||
"stderr": {
|
||||
"handler": "notification",
|
||||
"convert_ansi_code": true
|
||||
}
|
||||
},
|
||||
"output_wrappers": {
|
||||
"stdout": null,
|
||||
"stderr": null
|
||||
},
|
||||
"output_channel_order": "stdout-first",
|
||||
"output_handling_mode": "buffered",
|
||||
"events": {},
|
||||
"command_palette_availability": "enabled",
|
||||
"preactions": [],
|
||||
"variable_default_values": {}
|
||||
},
|
||||
{
|
||||
"id": "53b5ai5phh",
|
||||
"platform_specific_commands": {
|
||||
"default": "/opt/homebrew/bin/tmux new-window && /opt/homebrew/bin/tmux send-keys \"cd {{folder_path:absolute}}\" Enter \"nvim {{file_name}}\" Enter && open -a iTerm\n"
|
||||
},
|
||||
"shells": {},
|
||||
"alias": "Open in tmux>nVim",
|
||||
"icon": "terminal-square",
|
||||
"confirm_execution": false,
|
||||
"ignore_error_codes": [],
|
||||
"input_contents": {
|
||||
"stdin": null
|
||||
},
|
||||
"output_handlers": {
|
||||
"stdout": {
|
||||
"handler": "ignore",
|
||||
"convert_ansi_code": true
|
||||
},
|
||||
"stderr": {
|
||||
"handler": "notification",
|
||||
"convert_ansi_code": true
|
||||
}
|
||||
},
|
||||
"output_wrappers": {
|
||||
"stdout": null,
|
||||
"stderr": null
|
||||
},
|
||||
"output_channel_order": "stdout-first",
|
||||
"output_handling_mode": "buffered",
|
||||
"events": {},
|
||||
"command_palette_availability": "enabled",
|
||||
"preactions": [],
|
||||
"variable_default_values": {}
|
||||
}
|
||||
],
|
||||
"prompts": [],
|
||||
"builtin_variables": {},
|
||||
"custom_variables": [],
|
||||
"custom_shells": [],
|
||||
"output_wrappers": []
|
||||
}
|
||||
+2
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"settings_version": "0.20.0",
|
||||
"settings_version": "0.21.0",
|
||||
"debug": false,
|
||||
"obsidian_command_palette_prefix": "Execute: ",
|
||||
"preview_variables_in_command_palette": true,
|
||||
@@ -9,6 +9,7 @@
|
||||
"environment_variable_path_augmentations": {
|
||||
"darwin": "/Users/oscarplaisant/.opam/default/bin:/Users/oscarplaisant/.opam/default/bin:/opt/local/bin:/opt/local/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/.cargo/env:/Library/TeX/texbin:/Users/oscarplaisant/.cargo/bin:/Users/oscarplaisant/.opam/default/bin:/opt/local/bin:/opt/local/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/oscarplaisant/.cargo/env:/Users/oscarplaisant/.cargo/bin+:/Users/oscarplaisant/.zsh_scripts/+:/Users/oscarplaisant/.zsh_scripts/+:/Users/oscarplaisant/.zsh_scripts/"
|
||||
},
|
||||
"show_installation_warnings": true,
|
||||
"error_message_duration": 20,
|
||||
"notification_message_duration": 10,
|
||||
"execution_notification_mode": "disabled",
|
||||
|
||||
+759
-126
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "obsidian-shellcommands",
|
||||
"name": "Shell commands",
|
||||
"version": "0.20.1",
|
||||
"minAppVersion": "0.16.3",
|
||||
"version": "0.21.0",
|
||||
"minAppVersion": "1.4.0",
|
||||
"description": "You can predefine system commands that you want to run frequently, and assign hotkeys for them. For example open external applications. Automatic execution is also supported, and execution via URI links.",
|
||||
"author": "Jarkko Linnanvirta",
|
||||
"authorUrl": "https://github.com/Taitava",
|
||||
|
||||
+2
-1
@@ -92,9 +92,10 @@ div.SC-setting-group div.setting-item.SC-wide-description div.setting-item-contr
|
||||
}
|
||||
|
||||
div.SC-setting-group div.setting-item input[type=text],
|
||||
div.SC-setting-group div.setting-item input[type=password],
|
||||
div.SC-setting-group div.setting-item input[type=search],
|
||||
div.SC-setting-group div.setting-item textarea,
|
||||
div.SC-setting-group div.setting-item select {
|
||||
div.SC-setting-group div.setting-item:not(.setting-item-heading) select {
|
||||
width: 100%; /* Enlarge fields. */
|
||||
max-width: 100%; /* Remove a maximum width limitation, at least <select> elements had one. */
|
||||
}
|
||||
|
||||
+4
-2
@@ -12,7 +12,9 @@
|
||||
"showContextInCards": true,
|
||||
"flashcardHeightPercentage": 100,
|
||||
"flashcardWidthPercentage": 100,
|
||||
"randomizeCardOrder": true,
|
||||
"randomizeCardOrder": null,
|
||||
"flashcardCardOrder": "DueFirstRandom",
|
||||
"flashcardDeckOrder": "PrevDeckComplete_Sequential",
|
||||
"convertHighlightsToClozes": true,
|
||||
"convertBoldTextToClozes": false,
|
||||
"convertCurlyBracketsToClozes": false,
|
||||
@@ -41,7 +43,7 @@
|
||||
"singlelineCardSeparator": "::",
|
||||
"singlelineReversedCardSeparator": ":::"
|
||||
},
|
||||
"buryDate": "2024-01-06",
|
||||
"buryDate": "2024-01-10",
|
||||
"buryList": [],
|
||||
"historyDeck": ""
|
||||
}
|
||||
+728
-314
File diff suppressed because one or more lines are too long
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"id": "obsidian-spaced-repetition",
|
||||
"name": "Spaced Repetition",
|
||||
"version": "1.10.5",
|
||||
"version": "1.11.0",
|
||||
"minAppVersion": "0.15.4",
|
||||
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
|
||||
"author": "Stephen Mwangi",
|
||||
"authorUrl": "https://github.com/st3v3nmw",
|
||||
"helpUrl": "https://www.stephenmwangi.com/obsidian-spaced-repetition/",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/M4M44DEN6"
|
||||
}
|
||||
|
||||
+70
-65
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "5.3.0",
|
||||
"version": "5.6.0",
|
||||
"minAppVersion": "1.1.1",
|
||||
"description": "Task management for Obsidian",
|
||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||
|
||||
@@ -138,6 +138,11 @@ ul.contains-task-list .task-list-item-checkbox {
|
||||
}
|
||||
|
||||
.tasks-modal-buttons {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
background-color: var(--modal-background);
|
||||
padding-bottom: 16px;
|
||||
padding-top: 16px;
|
||||
display: grid;
|
||||
grid-template-columns: 3fr 1fr;
|
||||
column-gap: .5em;
|
||||
@@ -217,6 +222,8 @@ ul.contains-task-list .task-list-item-checkbox {
|
||||
}
|
||||
|
||||
.tasks-modal-status {
|
||||
padding-bottom: 6px;
|
||||
margin-bottom: -16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
@@ -225,6 +232,11 @@ ul.contains-task-list .task-list-item-checkbox {
|
||||
border: 1px solid red !important;
|
||||
}
|
||||
|
||||
.tasks-modal-warning {
|
||||
color: var(--text-warning) !important;
|
||||
background-color: rgba(var(--background-modifier-warning-rgb), 0.2) !important;
|
||||
}
|
||||
|
||||
.tasks-modal button:disabled {
|
||||
pointer-events: none !important;
|
||||
opacity: 0.3 !important;
|
||||
|
||||
-22516
File diff suppressed because it is too large
Load Diff
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "obsidian-word-sprint",
|
||||
"name": "Word Sprint",
|
||||
"version": "0.2.5",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Word Sprint for Obsidian plugin for your writing projects like Nanowrimo",
|
||||
"author": "Andrew Lombardi",
|
||||
"authorUrl": "https://mysticcoders.com",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
-131
@@ -1,131 +0,0 @@
|
||||
/* Center Content */
|
||||
#wordsprint #sprintActionPanel,
|
||||
#wordsprint .wordsWritten,
|
||||
#wordsprint #statsPanel,
|
||||
#wordsprint #sectionTab,
|
||||
#wordsprint #goalsPanel,
|
||||
#wordsprint #nanowrimoProject,
|
||||
#wordsprint .secondsLeft {
|
||||
display: flex;
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
/* Status */
|
||||
#wordsprint .status {
|
||||
text-align: center;
|
||||
margin: 0.5rem;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
#wordsprint .pending {
|
||||
color: white;
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
#wordsprint .danger {
|
||||
color: white;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
#wordsprint .warning {
|
||||
color: black;
|
||||
background-color: gold;
|
||||
}
|
||||
|
||||
#wordsprint .success {
|
||||
color: white;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
#wordsprint #nanowrimoProject {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Time */
|
||||
#wordsprint .secondsLeft {
|
||||
margin: .5em;
|
||||
font-size: 3em;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
#wordsprint #sprintActionPanel {
|
||||
margin: 0.5rem;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#wordsprint #sprintActionPanel .sprintStart {
|
||||
margin: 0.5rem;
|
||||
background-color: var(--background-modifier-success);
|
||||
}
|
||||
|
||||
#wordsprint #sprintActionPanel .sprintStop {
|
||||
margin: 0.5rem;
|
||||
background-color: var(--background-modifier-error);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
#wordsprint .hand {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* Tabs */
|
||||
#wordsprint #sectionTab button {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#wordsprint #sectionTab .active {
|
||||
background-color: var(--interactive-accent);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
#wordsprint #sectionTab button:not(.active):not(:hover) {
|
||||
background-color: var(--background-secondary-alt);
|
||||
}
|
||||
|
||||
/* Stats */
|
||||
#wordsprint #statsPanel {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#wordsprint #statsPanel .sprintTotalWordCount {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
#wordsprint #sprintViewStats {
|
||||
padding: 1em 2em 2em;
|
||||
}
|
||||
|
||||
#wordsprint #sprintViewStats .viewStats {
|
||||
background-color: var(--text-faint);
|
||||
color: var(--text-on-accent);
|
||||
}
|
||||
|
||||
.setting-item-control button:disabled {
|
||||
opacity: .4;
|
||||
}
|
||||
|
||||
/* Goals */
|
||||
#wordsprint #goalsPanel {
|
||||
flex-direction: column;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
#wordsprint #goalsPanel #sprintGoal {
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
#wordspring #goalsPanel .overallGoal {
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
#wordspring #goalsPanel #sprintGoal {
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
#wordspring #goalsPanel #sprintGoal .setGoalsButton {
|
||||
background-color: var(--text-faint);
|
||||
}
|
||||
+1
-1
@@ -1613,7 +1613,7 @@ The release is not complete and cannot be download. main.js is missing from the
|
||||
plugins.getPluginFolder() + "/" + primaryManifest.id
|
||||
);
|
||||
await plugins.loadManifest(pluginTargetFolderPath);
|
||||
await plugins.enablePlugin(primaryManifest.id);
|
||||
await plugins.enablePluginAndSave(primaryManifest.id);
|
||||
}
|
||||
await this.plugin.app.plugins.loadManifests();
|
||||
if (forceReinstall) {
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian42-brat",
|
||||
"name": "BRAT",
|
||||
"version": "0.8.2",
|
||||
"version": "0.8.3",
|
||||
"minAppVersion": "1.4.16",
|
||||
"description": "Easily install a beta version of a plugin for testing.",
|
||||
"author": "TfTHacker",
|
||||
|
||||
+563
-274
File diff suppressed because it is too large
Load Diff
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"id": "obsidian42-strange-new-worlds",
|
||||
"name": "Obsidian42 - Strange New Worlds (SNW)",
|
||||
"version": "1.2.3",
|
||||
"name": "Strange New Worlds (SNW)",
|
||||
"version": "1.2.5",
|
||||
"minAppVersion": "1.4.16",
|
||||
"description": "Revealing networked thought and the strange new worlds created by your vault",
|
||||
"author": "TfTHacker",
|
||||
"authorUrl": "https://twitter.com/TfTHacker",
|
||||
"helpUrl": "https://tfthacker.com/transporter",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://bit.ly/o42-kofi",
|
||||
"Vist my site": "https://tfthacker.com"
|
||||
}
|
||||
"helpUrl": "https://tfthacker.com/SNW",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://bit.ly/o42-kofi",
|
||||
"Vist my site": "https://tfthacker.com"
|
||||
}
|
||||
}
|
||||
|
||||
+128
-135
@@ -1,255 +1,248 @@
|
||||
body {
|
||||
--snw-counter-opacity: 0.4;
|
||||
--snw-icon-opacity: 0.4;
|
||||
--snw-counter-opacity: 0.4;
|
||||
--snw-icon-opacity: 0.4;
|
||||
}
|
||||
|
||||
.snw-reference {
|
||||
display: inline;
|
||||
font-size: var(--font-ui-smaller);
|
||||
border-radius: var(--radius-s);
|
||||
border: var(--border-width) dotted;
|
||||
vertical-align: top;
|
||||
opacity: var(--snw-counter-opacity);
|
||||
min-width: 10px;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px !important;
|
||||
margin-left: 3px !important;
|
||||
margin-right: 2px;
|
||||
display: inline;
|
||||
font-size: var(--font-ui-smaller);
|
||||
border-radius: var(--radius-s);
|
||||
border: var(--border-width) dotted;
|
||||
vertical-align: top;
|
||||
opacity: var(--snw-counter-opacity);
|
||||
min-width: 10px;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px !important;
|
||||
margin-left: 3px !important;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.is-mobile .snw-reference {
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-size: var(--font-ui-smaller);
|
||||
}
|
||||
|
||||
/* CM Live Preview */
|
||||
.cm-content .snw-reference {
|
||||
padding-right: 2px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
/* Preview mode */
|
||||
.markdown-preview-view .snw-reference {
|
||||
padding-right: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
.snw-block {
|
||||
padding-left: 2px;
|
||||
margin-left: 2px;
|
||||
.snw-block {
|
||||
padding-left: 2px;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
|
||||
.snw-heading {
|
||||
margin-left: 2px;
|
||||
font-size: var(--font-ui-smaller);
|
||||
margin-left: 2px;
|
||||
font-size: var(--font-ui-smaller);
|
||||
}
|
||||
|
||||
.snw-embed {
|
||||
margin-top: 1px;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.snw-embed-preview {
|
||||
top: 2px;
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.snw-link {
|
||||
margin-left: 3px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
/* Hover container */
|
||||
.snw-popover-container {
|
||||
border-radius: var(--radius-l);
|
||||
border: var(--border-width) solid var(--modal-border-color);
|
||||
box-shadow: var(--shadow-s);
|
||||
background-color: var(--background-primary) !important;
|
||||
min-height: 100px;
|
||||
width: 300px;
|
||||
overflow: hidden;
|
||||
z-index: 1000;
|
||||
border-radius: var(--radius-l);
|
||||
border: var(--border-width) solid var(--modal-border-color);
|
||||
box-shadow: var(--shadow-s);
|
||||
background-color: var(--background-primary) !important;
|
||||
min-height: 100px;
|
||||
width: 300px;
|
||||
overflow: hidden;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
|
||||
/* Shared reference area CSS */
|
||||
|
||||
.snw-ref-area {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: scroll;
|
||||
max-height: 300px !important;
|
||||
color: var(--text-normal);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: scroll;
|
||||
max-height: 300px !important;
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.snw-sidepane-container > div > .snw-ref-area {
|
||||
max-height: 100% !important;
|
||||
margin-bottom: 10px;
|
||||
max-height: 100% !important;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.snw-ref-area::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
display: none;
|
||||
}
|
||||
|
||||
.snw-ref-title-popover {
|
||||
color: var(--text-normal);
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 10px;
|
||||
border-bottom: var(--border-width) solid var(--modal-border-color);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
color: var(--text-normal);
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 10px;
|
||||
border-bottom: var(--border-width) solid var(--modal-border-color);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.snw-ref-title-popover-open-sidepane-icon {
|
||||
width: 25px;
|
||||
opacity: var(--snw-icon-opacity);
|
||||
width: 25px;
|
||||
opacity: var(--snw-icon-opacity);
|
||||
}
|
||||
|
||||
.snw-ref-title-popover-label {
|
||||
width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.snw-ref-title-side-pane {
|
||||
color: var(--tab-text-color-active);
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-bottom: 5px;
|
||||
border-radius: var(--radius-s);
|
||||
background-color: var(--titlebar-background-focused);
|
||||
border: var(--border-width) solid var(--modal-border-color);
|
||||
.snw-ref-title-side-pane {
|
||||
color: var(--tab-text-color-active);
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-bottom: 5px;
|
||||
border-radius: var(--radius-s);
|
||||
background-color: var(--titlebar-background-focused);
|
||||
border: var(--border-width) solid var(--modal-border-color);
|
||||
}
|
||||
|
||||
.snw-ref-item-container {
|
||||
margin-bottom: 10px;
|
||||
.snw-ref-item-container {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.snw-ref-item-file {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
|
||||
.snw-ref-item-collection-items {
|
||||
margin-left: 1px;
|
||||
margin-right: 1px;
|
||||
margin-bottom: 1px !important;
|
||||
margin-left: 1px;
|
||||
margin-right: 1px;
|
||||
margin-bottom: 1px !important;
|
||||
}
|
||||
|
||||
|
||||
[uic="uic"] > * {
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 0px !important;
|
||||
max-height: 230px !important;
|
||||
overflow: hidden;
|
||||
white-space: normal;
|
||||
[uic='uic'] > * {
|
||||
margin-top: 0px !important;
|
||||
margin-bottom: 0px !important;
|
||||
max-height: 230px !important;
|
||||
overflow: hidden;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.snw-ref-item-info a {
|
||||
text-decoration: none;
|
||||
color: var(--text-normal) !important;
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
color: var(--text-normal) !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
|
||||
/* Sidepane */
|
||||
|
||||
.snw-sidepane-container {
|
||||
height: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.snw-header-count-wrapper {
|
||||
position: absolute;
|
||||
border: var(--border-width) dotted;
|
||||
font-size: var(--font-ui-smallest);
|
||||
border-radius: var(--radius-s);
|
||||
min-width: 18px;
|
||||
min-height: 18px;
|
||||
right: 20px;
|
||||
opacity: var(--snw-counter-opacity);
|
||||
padding: 3px;
|
||||
z-index: 1000;
|
||||
position: absolute;
|
||||
border: var(--border-width) dotted;
|
||||
font-size: var(--font-ui-smallest);
|
||||
border-radius: var(--radius-s);
|
||||
min-width: 18px;
|
||||
min-height: 18px;
|
||||
right: 20px;
|
||||
opacity: var(--snw-counter-opacity);
|
||||
padding: 3px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.snw-header-count {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.snw-sidepane-container {
|
||||
padding: 10px;
|
||||
overflow: scroll;
|
||||
padding: 10px;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
.snw-sidepane-header {
|
||||
font-weight: bold;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
font-weight: bold;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.snw-sidepane-header-references-header {
|
||||
font-weight: bold;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 5px;
|
||||
font-weight: bold;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.snw-sidepane-references {
|
||||
margin-top: 0px;
|
||||
padding-left: 20px;
|
||||
margin-top: 0px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.snw-sidepane-reference-item {
|
||||
padding-bottom: 5px;
|
||||
line-height: normal;
|
||||
padding-bottom: 5px;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
|
||||
.snw-sidepane-loading {
|
||||
color: var(--text-muted);
|
||||
margin-top: 15px;
|
||||
margin-left: 20px;
|
||||
color: var(--text-muted);
|
||||
margin-top: 15px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.snw-sidepane-loading-subtext {
|
||||
color: var(--text-faint);
|
||||
font-style: italic;
|
||||
margin-top: 10px;
|
||||
font-size: small;
|
||||
color: var(--text-faint);
|
||||
font-style: italic;
|
||||
margin-top: 10px;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.snw-gutter-ref {
|
||||
/* margin-right: 6px; */
|
||||
/* margin-right: 6px; */
|
||||
}
|
||||
|
||||
.cm-gutters {
|
||||
z-index: 0 !important;
|
||||
z-index: 0 !important;
|
||||
}
|
||||
|
||||
.snw-breadcrumbs {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.snw-breadcrumbs > span {
|
||||
margin-right: 1ch;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
font-weight: bold;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
margin-right: 1ch;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
font-weight: bold;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
|
||||
/* .tippy-box settings to avoid conflicts with other plugins */
|
||||
.snw-tippy .tippy-box {
|
||||
background-color: transparent;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.snw-tippy .tippy-content {
|
||||
padding: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.snw-tippy .tippy-arrow {
|
||||
width:0px;
|
||||
height:0px;
|
||||
color: transparent;
|
||||
}
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
+15
-37
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,7 +6,7 @@
|
||||
"description": "Improved table navigation, formatting, manipulation, and formulas",
|
||||
"isDesktopOnly": false,
|
||||
"minAppVersion": "1.0.0",
|
||||
"version": "0.19.1",
|
||||
"version": "0.20.0",
|
||||
"js": "main.js",
|
||||
"fundingUrl": {
|
||||
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||
|
||||
+16
-12
@@ -35858,6 +35858,9 @@ var QuickEntry = class extends React3.Component {
|
||||
return;
|
||||
if (newTask.length > 1) {
|
||||
callback.handleCreateNewTask(filePath, newTask);
|
||||
if (this.textInput.current) {
|
||||
this.textInput.current.value = "";
|
||||
}
|
||||
} else {
|
||||
(_c = this.textInput.current) == null ? void 0 : _c.focus();
|
||||
}
|
||||
@@ -36063,7 +36066,7 @@ var TimelineView = class extends React5.Component {
|
||||
if (this.props.userOptions.dailyNoteFormat && this.props.userOptions.dailyNoteFormat !== "")
|
||||
quickEntryFiles.add(daileNoteFolder + dailyNoteFileName);
|
||||
const baseStyles = [...new Set(styles)].join(" ");
|
||||
const counterFilter = this.state.filter.length === 0 ? "" : this.state.filter + this.props.userOptions.counterBehavior;
|
||||
const counterFilter = this.state.filter.length === 0 ? "" : this.state.filter + " " + this.props.userOptions.counterBehavior;
|
||||
const todayFocus = this.state.todayFocus ? "todayFocus" : "";
|
||||
return /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
||||
"div",
|
||||
@@ -36081,7 +36084,7 @@ var TimelineView = class extends React5.Component {
|
||||
counters: [
|
||||
{
|
||||
onClick: () => {
|
||||
this.handleCounterFilterClick("todo");
|
||||
this.handleCounterFilterClick("todoFilter");
|
||||
},
|
||||
cnt: todoCount,
|
||||
label: "Todo",
|
||||
@@ -36090,7 +36093,7 @@ var TimelineView = class extends React5.Component {
|
||||
},
|
||||
{
|
||||
onClick: () => {
|
||||
this.handleCounterFilterClick("overdue");
|
||||
this.handleCounterFilterClick("overdueFilter");
|
||||
},
|
||||
cnt: overdueCount,
|
||||
id: "overdue",
|
||||
@@ -36099,7 +36102,7 @@ var TimelineView = class extends React5.Component {
|
||||
},
|
||||
{
|
||||
onClick: () => {
|
||||
this.handleCounterFilterClick("unplanned");
|
||||
this.handleCounterFilterClick("unplannedFilter");
|
||||
},
|
||||
cnt: unplannedCount,
|
||||
id: "unplanned",
|
||||
@@ -36431,11 +36434,11 @@ var ObsidianTaskAdapter = class {
|
||||
* @param outLinks Links from Obsidian.
|
||||
* //@param children
|
||||
* //@param annotated
|
||||
* @param fontMatter The yaml data in the header of the file where the list item belongs.
|
||||
* @param frontMatter The yaml data in the header of the file where the list item belongs.
|
||||
* @param tags Tag list contained in the list item.
|
||||
* @returns A TaskDataModel with basic information if the list item is a Task, null if it is not.
|
||||
*/
|
||||
fromLine(line, filePath, parent, position, outLinks, fontMatter, tags) {
|
||||
fromLine(line, filePath, parent, position, outLinks, frontMatter, tags) {
|
||||
const regexMatch = line.match(TaskRegularExpressions.taskRegex);
|
||||
if (regexMatch === null) {
|
||||
return null;
|
||||
@@ -36449,12 +36452,13 @@ var ObsidianTaskAdapter = class {
|
||||
if (blockLink !== "") {
|
||||
description = description.replace(TaskRegularExpressions.blockLinkRegex, "").trim();
|
||||
}
|
||||
if (fontMatter) {
|
||||
if (fontMatter["tag"] && typeof fontMatter["tag"] === "string") {
|
||||
tags.push(fontMatter["tag"]);
|
||||
if (frontMatter) {
|
||||
if (frontMatter["tag"] && typeof frontMatter["tag"] === "string") {
|
||||
const frontmatterTagPrefix = frontMatter["tag"].startsWith("#") ? "" : "#";
|
||||
tags.push(frontmatterTagPrefix + frontMatter["tag"]);
|
||||
}
|
||||
if (fontMatter["tags"] && typeof fontMatter["tags"] === typeof new Array()) {
|
||||
fontMatter["tags"].forEach((t) => tags.push(t));
|
||||
if (frontMatter["tags"] && typeof frontMatter["tags"] === typeof new Array()) {
|
||||
frontMatter["tags"].forEach((t) => tags.push(t.startsWith("#") ? "" : "#" + t));
|
||||
}
|
||||
}
|
||||
tags = [...new Set(tags)];
|
||||
@@ -36487,7 +36491,7 @@ var ObsidianTaskAdapter = class {
|
||||
priority: "",
|
||||
//happens: new Map<string, string>(),
|
||||
recurrence: "",
|
||||
fontMatter: fontMatter || {},
|
||||
fontMatter: frontMatter || {},
|
||||
isTasksTask: false,
|
||||
due: void 0,
|
||||
scheduled: void 0,
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "tasks-calendar-wrapper",
|
||||
"name": "Tasks Calendar Wrapper",
|
||||
"version": "0.2.7",
|
||||
"version": "0.2.9",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "This is a simple wrapper for Obsidian-Tasks-Calendar (https://github.com/702573N/Obsidian-Tasks-Calendar) and Obsidian-Tasks-Timeline (https://github.com/702573N/Obsidian-Tasks-Timeline).",
|
||||
"author": "zhuwenq",
|
||||
|
||||
+41
-25
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "1.18.3",
|
||||
"version": "2.1.0",
|
||||
"description": "Create and use templates",
|
||||
"minAppVersion": "0.11.13",
|
||||
"minAppVersion": "1.5.0",
|
||||
"author": "SilentVoid",
|
||||
"authorUrl": "https://github.com/SilentVoid13",
|
||||
"helpUrl": "https://silentvoid13.github.io/Templater/",
|
||||
|
||||
-39
@@ -1,39 +0,0 @@
|
||||
{
|
||||
"legacyEditor": false,
|
||||
"livePreview": true,
|
||||
"readableLineLength": false,
|
||||
"foldIndent": true,
|
||||
"useTab": false,
|
||||
"vimMode": true,
|
||||
"alwaysUpdateLinks": true,
|
||||
"foldHeading": true,
|
||||
"pdfExportSettings": {
|
||||
"includeName": true,
|
||||
"pageSize": "A4",
|
||||
"landscape": false,
|
||||
"margin": "0",
|
||||
"downscalePercent": 75
|
||||
},
|
||||
"defaultViewMode": "source",
|
||||
"autoPairMarkdown": false,
|
||||
"promptDelete": false,
|
||||
"showFrontmatter": true,
|
||||
"rightToLeft": false,
|
||||
"spellcheck": false,
|
||||
"showUnsupportedFiles": true,
|
||||
"showLineNumber": false,
|
||||
"attachmentFolderPath": "attachments",
|
||||
"userIgnoreFilters": [
|
||||
"daily/",
|
||||
"__sekund__/",
|
||||
"informatique/",
|
||||
"Excalidraw/",
|
||||
"images/",
|
||||
"kanban/",
|
||||
"templates/"
|
||||
],
|
||||
"communityPluginSortOrder": "download",
|
||||
"newLinkFormat": "shortest",
|
||||
"autoPairBrackets": true,
|
||||
"showInlineTitle": true
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"theme": "obsidian",
|
||||
"cssTheme": "Minimal",
|
||||
"baseFontSize": 21,
|
||||
"enabledCssSnippets": [
|
||||
"breadcrumbs",
|
||||
"custom_callouts",
|
||||
"fira_code",
|
||||
"general_interface",
|
||||
"pdf_darkmode",
|
||||
"query_header_title",
|
||||
"tasks",
|
||||
"darkmode",
|
||||
"tabs"
|
||||
],
|
||||
"interfaceFontFamily": "FiraCode Nerd Font",
|
||||
"textFontFamily": "FiraCode Nerd Font",
|
||||
"monospaceFontFamily": "JetBrainsMonoMedium Nerd Font,FiraCode Nerd Font",
|
||||
"accentColor": "#1b9419",
|
||||
"baseFontSizeAction": true,
|
||||
"showViewHeader": true,
|
||||
"translucency": false,
|
||||
"nativeMenus": false
|
||||
}
|
||||
-15
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"showInstructions": true,
|
||||
"showDeletePrompt": true,
|
||||
"saveOnSwitch": false,
|
||||
"saveOnChange": true,
|
||||
"workspaceSettings": false,
|
||||
"systemDarkMode": false,
|
||||
"globalSettings": {},
|
||||
"activeWorkspaceDesktop": "fac",
|
||||
"activeWorkspaceMobile": "",
|
||||
"reloadLivePreview": false,
|
||||
"workspaceSwitcherRibbon": false,
|
||||
"modeSwitcherRibbon": false,
|
||||
"replaceNativeRibbon": false
|
||||
}
|
||||
-4628
File diff suppressed because it is too large
Load Diff
-10
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "workspaces-plus",
|
||||
"name": "Workspaces Plus",
|
||||
"version": "0.3.3",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Quickly switch and manage workspaces",
|
||||
"author": "NothingIsLost and Johnny ✨",
|
||||
"authorUrl": "https://github.com/nothingislost",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
-199
@@ -1,199 +0,0 @@
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal) {
|
||||
box-shadow: 0px 0px 17px 4px var(--background-modifier-box-shadow);
|
||||
z-index: var(--layer-menu);
|
||||
}
|
||||
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal).quick-switch {
|
||||
width: unset;
|
||||
}
|
||||
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal) .prompt-instruction:last-child {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.status-bar-item.plugin-workspaces-plus.mod-clickable {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal) div.suggestion-empty button.list-item-part {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal) div.suggestion-empty {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.prompt-results:not(.renaming) .workspace-item.is-selected {
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: 0.2em;
|
||||
}
|
||||
|
||||
.prompt-results:not(.renaming) .workspace-item.is-selected ~ div.workspace-description {
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: 0.2em;
|
||||
}
|
||||
|
||||
.workspace-results .rename-workspace {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 2em;
|
||||
margin-top: 0.5em;
|
||||
fill: var(--text-muted);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.workspace-results .workspace-description {
|
||||
font-size: 0.8em;
|
||||
padding: 0px 6rem 0.6rem 2rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1;
|
||||
width: 100%;
|
||||
/* removing max-width since it messes up the selected item background */
|
||||
/* max-width: 40em; */
|
||||
}
|
||||
|
||||
.workspace-results .delete-workspace {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 0.7em;
|
||||
margin-top: 0.5em;
|
||||
fill: var(--text-muted);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.workspace-results .platform {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 3.3em;
|
||||
margin-top: 0.4em;
|
||||
fill: var(--text-muted);
|
||||
color: var(--text-muted);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.active-workspace {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 0.5em;
|
||||
margin-top: 0.5em;
|
||||
fill: var(--text-muted);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.rename-workspace,
|
||||
.delete-workspace {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.rename-workspace:hover,
|
||||
.delete-workspace:hover {
|
||||
fill: var(--text-accent-hover);
|
||||
}
|
||||
|
||||
.workspace-results {
|
||||
padding: 0.1em 0.1em;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.prompt-results:not(.renaming) .workspace-item.is-selected ~ .rename-workspace,
|
||||
.prompt-results:not(.renaming) .workspace-item.is-selected ~ .delete-workspace,
|
||||
.prompt-results:not(.renaming) .workspace-item.is-selected ~ .platform {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
body.is-mobile .prompt-results:not(.renaming) .workspace-item ~ .rename-workspace,
|
||||
body.is-mobile .prompt-results:not(.renaming) .workspace-item ~ .delete-workspace,
|
||||
body.is-mobile .prompt-results:not(.renaming) .workspace-item ~ .platform {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.workspace-item {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding: 5px 6rem 5px 2rem;
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
white-space: normal;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.workspaces-plus-color-scheme-icon > svg {
|
||||
fill: var(--text-muted);
|
||||
}
|
||||
|
||||
.workspaces-plus-color-scheme-icon:hover > svg {
|
||||
fill: var(--text-normal);
|
||||
}
|
||||
|
||||
.status-bar .plugin-workspaces-plus .status-bar-item-segment.icon {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.status-bar .plugin-workspaces-plus .status-bar-item-segment.name {
|
||||
margin-left: 1.7em;
|
||||
}
|
||||
|
||||
.status-bar .plugin-workspaces-plus .icon svg {
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
.status-bar-item.plugin-workspaces-plus.mode-switcher,
|
||||
.status-bar-item.plugin-workspaces-plus.workspace-switcher {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
:where(.workspaces-plus-modal, .workspaces-plus-mode-modal) .workspace-item[contenteditable="true"]:focus {
|
||||
cursor: text;
|
||||
border: 1px solid var(--interactive-accent);
|
||||
background-color: var(--background-modifier-form-field);
|
||||
border-radius: 0.2em;
|
||||
box-shadow: 0 0 0 0.1px rgba(0, 0, 0, 0.1), 0 0 0 3px hsla(var(--accent-hsl), 0.15);
|
||||
}
|
||||
|
||||
.workspace-item[contenteditable="true"]:focus ~ div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.is-mobile .side-dock-actions div[aria-label="Manage modes"] svg {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
|
||||
.side-dock-actions div[aria-label="Manage modes"] svg {
|
||||
background-color: currentColor;
|
||||
-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" viewBox="0 0 24 24"><path fill="red" d="M4 4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h8v-2H4V8h16v4h2V8a2 2 0 0 0-2-2h-8l-2-2m8 10a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.193 4.193 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5c0-.17-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32A.236.236 0 0 0 20 14m-1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5z"/></svg>');
|
||||
}
|
||||
|
||||
.side-dock-actions div[aria-label="Manage modes"] svg > path {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.setting-item-heading.is-collapsed + .settings-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.settings-container {
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
|
||||
.workspace-modes:not(.is-enabled) ~ .requires-workspace-modes {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.setting-item.file-override .setting-item-control .search-input-container {
|
||||
margin-bottom: 0;
|
||||
margin-right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.setting-item.file-override .setting-item-info {
|
||||
flex: 1 1 auto;
|
||||
flex-grow: 0;
|
||||
margin-right: 20px;
|
||||
}
|
||||
-3171
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user