Add version() to each plugin

And display it in the screensaver tool with the -l option.
This commit is contained in:
2025-02-14 13:04:27 +01:00
parent 37b17704f3
commit bb03204f1c
6 changed files with 28 additions and 2 deletions

View File

@ -40,6 +40,7 @@ class FadingRects : public ScreensaverPlugin {
int fps() const override;
void update () override;
void render() override;
std::string version() const override;
private:
double _hue {0.0};
@ -53,6 +54,10 @@ ScreensaverPlugin* create_instance() {
return new FadingRects;
}
std::string FadingRects::version() const {
return "1.1.0";
}
int FadingRects::fps() const {
return 20;
}