move app object
This commit is contained in:
parent
48588d6dc1
commit
76534820e9
40
dist/0.0.1_beta.json
vendored
40
dist/0.0.1_beta.json
vendored
@ -2,9 +2,25 @@
|
|||||||
"key": -1,
|
"key": -1,
|
||||||
"name": "Test Subscription",
|
"name": "Test Subscription",
|
||||||
"version": "0.0.1_beta",
|
"version": "0.0.1_beta",
|
||||||
"apps": {
|
"global": {
|
||||||
"hhjapp": {
|
"name": "全局测试",
|
||||||
"hhjapp": {
|
"rules": [
|
||||||
|
{
|
||||||
|
"key": 0,
|
||||||
|
"selector": "[text='记账']",
|
||||||
|
"action": "click",
|
||||||
|
"actionDelay": 50
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"apps": [
|
||||||
|
{
|
||||||
|
"id": "tech.cqxqg.hhjapp",
|
||||||
|
"enable": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"apps": [
|
||||||
|
{
|
||||||
"packageName": "tech.cqxqg.hhjapp",
|
"packageName": "tech.cqxqg.hhjapp",
|
||||||
"name": "小新记账",
|
"name": "小新记账",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
@ -33,23 +49,5 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
},
|
|
||||||
"global": {
|
|
||||||
"name": "全局测试",
|
|
||||||
"rules": [
|
|
||||||
{
|
|
||||||
"key": 0,
|
|
||||||
"selector": "[text='记账']",
|
|
||||||
"action": "click",
|
|
||||||
"actionDelay": 50
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"apps": [
|
|
||||||
{
|
|
||||||
"id": "tech.cqxqg.hhjapp",
|
|
||||||
"enable": true
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
|
@ -10,12 +10,15 @@ version = "0.0.1_beta"
|
|||||||
def get_subscription():
|
def get_subscription():
|
||||||
apps_folder = "apps"
|
apps_folder = "apps"
|
||||||
apps = get_global_vars_from_apps(apps_folder)
|
apps = get_global_vars_from_apps(apps_folder)
|
||||||
|
apps_arr = []
|
||||||
|
for app_name in apps:
|
||||||
|
apps_arr.append(apps[app_name][app_name])
|
||||||
return {
|
return {
|
||||||
"key": key,
|
"key": key,
|
||||||
"name": name,
|
"name": name,
|
||||||
"version": version,
|
"version": version,
|
||||||
"apps": apps,
|
|
||||||
"global": global_rules,
|
"global": global_rules,
|
||||||
|
"apps": apps_arr,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user