Skip to content

Commit

Permalink
Fix Image Scale Setting?
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed Jun 16, 2021
1 parent 0ab40d3 commit 7b412c4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface AdjacencyMatrixMakerPluginSettings {
const DEFAULT_SETTINGS: AdjacencyMatrixMakerPluginSettings = {
mainColourComponents: [202, 72, 44],
backgroundColour: "#141414",
userScale: undefined,
userScale: 0,
imgName: "adj",
folderPath: "/",
showFolders: true,
Expand All @@ -38,7 +38,7 @@ function validFolderPathQ(path: string) {
return file && file instanceof TFolder;
}

//? Show subfolder squares
// SECTION Squares
interface square {
depth: number;
start: number;
Expand Down Expand Up @@ -118,7 +118,7 @@ function allSquares(files: TFile[]) {
return allSquaresArr;
}

//? End show subfolder squares
// !SECTION Squares

async function drawAdjAsImage(
scale: number,
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "adjacency-matrix-maker",
"name": "Adjacency Matrix Maker",
"version": "0.6.5",
"version": "0.6.6",
"minAppVersion": "0.12.5",
"description": "Create an interactive image of an adjacency matrix of your vault",
"author": "SkepticMystic",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adjacency-matrix-maker",
"version": "0.6.5",
"version": "0.6.6",
"description": "Create an interactive adjacency matrix of your vault",
"main": "main.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.6.6": "0.12.5",
"0.6.5": "0.12.5",
"0.6.4": "0.12.5",
"0.6.3": "0.12.5",
Expand Down

0 comments on commit 7b412c4

Please sign in to comment.