Skip to content

Commit

Permalink
Merge pull request #278 from decaf-dev/dev
Browse files Browse the repository at this point in the history
1.36.2
  • Loading branch information
decaf-dev authored Jul 30, 2024
2 parents d42d214 + e2fb201 commit c7cc063
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "vault-explorer",
"name": "Vault Explorer",
"version": "1.36.1",
"version": "1.36.2",
"minAppVersion": "1.4.13",
"description": "Explore your vault in visual format",
"author": "DecafDev",
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": "obsidian-vault-explorer",
"version": "1.36.1",
"version": "1.36.2",
"description": "Explore your vault in visual format",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src/svelte/shared/services/license.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ export default class License {
const decodedString = decodedBuffer.toString("utf-8");
const split = decodedString.split("|");

const data = split[0];
const signatureBase64 = split[1];
const signatureBase64 = split[0];
const data = split[1];

const dataBuffer = Buffer.from(data);
const signatureBuffer = Buffer.from(signatureBase64, "base64");
const dataBuffer = Buffer.from(data);

const verify = crypto.createVerify("SHA256");
verify.update(data);
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,6 @@
"1.35.0": "1.4.13",
"1.35.1": "1.4.13",
"1.36.0": "1.4.13",
"1.36.1": "1.4.13"
"1.36.1": "1.4.13",
"1.36.2": "1.4.13"
}

0 comments on commit c7cc063

Please sign in to comment.