Remove External app for unsupported devices (web/n0100) and adds a basic examination checking system

This commit is contained in:
citorva
2020-01-19 23:45:35 +01:00
parent a9e0c5f6b6
commit c94affa7cd
25 changed files with 72 additions and 5 deletions

View File

@@ -12,6 +12,10 @@ I18n::Message App::Descriptor::upperName() {
return I18n::Message::ExternalAppCapital;
}
int App::Descriptor::examinationLevel() {
return App::Descriptor::BasicExaminationLevel;
}
const Image * App::Descriptor::icon() {
return ImageStore::ExternalIcon;
}

1
apps/external/app.h vendored
View File

@@ -12,6 +12,7 @@ public:
public:
I18n::Message name() override;
I18n::Message upperName() override;
int examinationLevel() override;
const Image * icon() override;
};
class Snapshot : public ::App::Snapshot {