diff options
| author | marios8543 <marios8543@gmail.com> | 2023-10-17 16:07:43 +0300 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | 796b8b49f41657a44764c8557b5413bb3935e790 (patch) | |
| tree | 7447f3a2c56f639943d50b18195f6b9e4d0ddfab /backend/src/plugin.py | |
| parent | 1b9d674a81ab01c52c480cbb6a812938b0e87666 (diff) | |
| download | decky-loader-796b8b49f41657a44764c8557b5413bb3935e790.tar.gz decky-loader-796b8b49f41657a44764c8557b5413bb3935e790.zip | |
Drop support for legacy plugins
Diffstat (limited to 'backend/src/plugin.py')
| -rw-r--r-- | backend/src/plugin.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/backend/src/plugin.py b/backend/src/plugin.py index 163bb9b6..481ede3f 100644 --- a/backend/src/plugin.py +++ b/backend/src/plugin.py @@ -29,11 +29,6 @@ class PluginWrapper: package_json = load(open(path.join(plugin_path, plugin_directory, "package.json"), "r", encoding="utf-8")) self.version = package_json["version"] - self.legacy = False - self.main_view_html = json["main_view_html"] if "main_view_html" in json else "" - self.tile_view_html = json["tile_view_html"] if "tile_view_html" in json else "" - self.legacy = self.main_view_html or self.tile_view_html - self.name = json["name"] self.author = json["author"] self.flags = json["flags"] |
