1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-08 18:07:41 +02:00

Update w/ signed packages from manifest

This commit is contained in:
billz 2025-03-14 11:36:17 -07:00
parent bb131a7f53
commit c2be25271b
2 changed files with 5 additions and 0 deletions

View File

@ -496,6 +496,7 @@ $('#install-user-plugin').on('shown.bs.modal', function (e) {
$('#plugin-license').text(manifestData.license || 'Unknown');
$('#plugin-locale').text(manifestData.default_locale || 'Unknown');
$('#plugin-configuration').html(formatProperty(manifestData.configuration || 'None'));
$('#plugin-packages').html(formatProperty(manifestData.keys || 'None'));
$('#plugin-dependencies').html(formatProperty(manifestData.dependencies || 'None'));
$('#plugin-javascript').html(formatProperty(manifestData.javascript || 'None'));
$('#plugin-sudoers').html(formatProperty(manifestData.sudoers || 'None'));

View File

@ -151,6 +151,10 @@
<td><small><code><span id="plugin-configuration" class="mb-0"></span></code></small></td>
</td>
</tr>
<tr>
<th><?php echo _("Signed Packages"); ?></th>
<td><small><code><span id="plugin-packages" class="mb-0"></span></code></small></td>
</tr>
<tr>
<th><?php echo _("Dependencies"); ?></th>
<td><small><code><span id="plugin-dependencies" class="mb-0"></span></code></small></td>