Skip to content

Commit e358f30

Browse files
committed
Add back-end binary type to about.html
1 parent c34c25f commit e358f30

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

extension/about.html

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@
116116
</div><br/>
117117
<span class="webpg-info plugin-title webpg-title"></span><br/>
118118
<div class="info-block">
119+
<span class="webpg-info plugin-type-label"></span>: <span class="webpg-info plugin-type"></span><br/>
119120
<span class="webpg-info plugin-version-label"></span>: <span class="webpg-info plugin-version"></span><br/>
120121
<span class="webpg-info plugin-path-label"></span>: <span class="webpg-info plugin-path"></span><br/>
121122
</div><br/>

extension/about.js

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ webpg.about = {
9696
case "plugin-path":
9797
webpg.jq(this).text(webpg.plugin.webpg_status.plugin.path);
9898
break;
99+
case "plugin-type-label":
100+
webpg.jq(this).text("Plugin Type");
101+
break;
102+
case "plugin-type":
103+
webpg.jq(this).text(webpg.plugin.webpg_status.plugin.type);
104+
break;
99105
case "gnupg-title":
100106
webpg.jq(this).text(_("GnuPG Information"));
101107
break;

0 commit comments

Comments
 (0)