feat(store): show module maintainers (0.79.0)
Some checks failed
Security / Security check (push) Failing after 2s

The detail sheet always answers 'who maintains this?': one
selectable line per maintainer from the store index's new
maintainers list, or an honest 'not specified' when the index
names nobody (StoreMaintainersSection, public for the widget
tests). The install trust gate carries the same fact when
present and stays terse otherwise. DE+EN; dialog-harness proof
captured with the maintainer row.

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-07-22 22:06:18 +02:00
parent 66886389a6
commit 351c5a82bc
13 changed files with 198 additions and 2 deletions

View file

@ -2909,6 +2909,15 @@ class AppLocalizationsEn extends AppLocalizations {
String get installConfirmTrustBody =>
'The module runs in a sandbox: it may only touch the network endpoints, files, and environment variables it declares itself — the hub enforces that list. The full permission list is visible in the module details after installation.';
@override
String get storeSectionMaintainers => 'Maintainers';
@override
String get storeMaintainersNone => 'not specified';
@override
String get installConfirmMaintainers => 'Maintainers';
@override
String get storePolicyUnverifiedNotice =>
'Signature enforcement is switched off in the hub policy — installs are not cryptographically verified. The install dialog shows the per-module status; enable security.require_signatures for verified installs.';