Skip to content

Commit

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

0 comments on commit 923e647

Please sign in to comment.