Skip to content

Commit

Permalink
highlight appropriate links, change v number
Browse files Browse the repository at this point in the history
  • Loading branch information
tzwel committed Jan 31, 2022
1 parent 457c0d8 commit 086152a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "absence",
"version": "1.4.0",
"version": "1.5.0",
"description": "An open-source client for browsing Gelbooru",
"main": "main.js",
"repository": "https://github.com/tzwel/Absence",
Expand Down
2 changes: 2 additions & 0 deletions src/js/detailedimageview.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,11 @@ async function loadDetails() {
for (const tag of fetchedJsonTags.tag) {
if (tag.type === 1) {
drawer.querySelector("a[artist]").innerHTML = tag.name;
drawer.querySelector("a[artist]").href = "#";
}
if (tag.type === 4) {
drawer.querySelector("a[character]").innerHTML = tag.name;
drawer.querySelector("a[character]").href = "#";
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { remote } = require("electron");
const { shell } = require("electron");
const { dialog, app } = require("electron").remote;
const { clipboard } = require("electron");
const version = "1.4";
const version = "1.5";

// Customizable variables

Expand Down

0 comments on commit 086152a

Please sign in to comment.