mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2026-08-27 01:12:38 +00:00
Merge pull request #105 from bombsquad-community/experimental-api-8-plugin
Test upcoming API 7->8
This commit is contained in:
commit
436eb57715
2 changed files with 28 additions and 0 deletions
|
|
@ -670,6 +670,25 @@
|
|||
"md5sum": "24913c665d05c3056c8ba390fe88155e"
|
||||
}
|
||||
}
|
||||
},
|
||||
"hello_api_8": {
|
||||
"description": "I shouldn't be visible to API 7 game clients",
|
||||
"external_url": "",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Rikko",
|
||||
"email": "rikkolovescats@proton.me",
|
||||
"discord": "Rikko#7383"
|
||||
}
|
||||
],
|
||||
"versions": {
|
||||
"1.0.0": {
|
||||
"api_version": 8,
|
||||
"commit_sha": "204499e",
|
||||
"released_on": "25-01-2023",
|
||||
"md5sum": "b694717a3fc0ef3d1d3a66ed399adbae"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
plugins/utilities/hello_api_8.py
Normal file
9
plugins/utilities/hello_api_8.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# ba_meta require api 8
|
||||
import ba
|
||||
|
||||
# ba_meta export plugin
|
||||
|
||||
|
||||
class Main(ba.Plugin):
|
||||
def on_app_running(self):
|
||||
ba.screenmessage("Wohoo! I'm an API 8 plugin!")
|
||||
Loading…
Add table
Add a link
Reference in a new issue