Skip to content

Commit

Permalink
release: 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
HananoshikaYomaru committed Dec 15, 2023
1 parent 923e647 commit f1f001c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "better-plugins-page",
"name": "Better Plugins Page",
"version": "1.0.11",
"version": "1.0.12",
"minAppVersion": "0.15.0",
"description": "Better Plugins Page for Obsidian, add filtering and hiding to the page",
"author": "HananoshikaYomaru",
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-better-plugins-page",
"version": "1.0.11",
"version": "1.0.12",
"description": "Better Plugins Page for Obsidian, add filtering and hiding to the page",
"main": "main.js",
"scripts": {
Expand Down
5 changes: 1 addition & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,7 @@ export default class BetterPluginsPagePlugin extends Plugin {
this.addButtons(communityItems as HTMLElement[]);
const visiblePlugins = communityItems.filter(
(element: HTMLDivElement) =>
!element.classList.contains(
"better-plugins-page-hidden-community-item"
// and not display: none
) && element.style.display !== "none"
!(element.style.display === "none")
).length;
summaryText?.setText(`Showing ${visiblePlugins} plugins:`);
}
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"1.0.8": "0.15.0",
"1.0.9": "0.15.0",
"1.0.10": "0.15.0",
"1.0.11": "0.15.0"
"1.0.11": "0.15.0",
"1.0.12": "0.15.0"
}

0 comments on commit f1f001c

Please sign in to comment.