Only Office v0.1.7a: enable blur overlay

This commit is contained in:
lxsang 2021-10-24 18:42:41 +02:00
parent 9cd133194e
commit 5c67df278a
7 changed files with 4 additions and 13 deletions

View File

@ -10,6 +10,7 @@ way to work with multiple documents at the same time.
![https://github.com/lxsang/antosdk-apps/blob/master/OnlyOffice/screenshot.png?raw=true](https://github.com/lxsang/antosdk-apps/blob/master/OnlyOffice/screenshot.png?raw=true)
## Change log
- v 0.1.7a: Allow setting blur overlay on window
- v 0.1.6a: Update backend api
- v 0.1.5a: Add document versionning support
- v 0.1.4a: If the iframe has the same origin with the parent, enable the focus event

View File

@ -1,4 +1,4 @@
<afx-app-window apptitle="Office Suite" width="700" height="500" data-id="OnlyOffice">
<afx-app-window apptitle="Office Suite" width="700" height="500" data-id="OnlyOffice" blur-overlay="true">
<afx-hbox >
<div data-id="editor-area" id='placeholder'>
<p>

View File

@ -282,6 +282,3 @@ this.OS.register "OnlyOffice", OnlyOffice
this.extensionParams = {
url: "https://office.iohub.dev/web-apps/"
}
# dirty hack that allow subdomain iframes access each other
# FIXME: may be the domain should be defined by ATOS API
document.domain = "iohub.dev" if document.domain is "os.iohub.dev"

View File

@ -7,7 +7,7 @@
"author": "Xuan Sang LE",
"email": "mrsang@iohub.dev"
},
"version":"0.1.6-a",
"version":"0.1.7-a",
"category":"Office",
"icon":"icon.png",
"mimes":[

View File

@ -1,7 +0,0 @@
{
"name": "OnlyOffice",
"css": ["css/main.css"],
"javascripts": [],
"coffees": ["coffees/main.coffee"],
"copies": ["assets/templates", "assets/icon.png","api/api.lua", "assets/scheme.html", "package.json", "README.md"]
}

View File

@ -285,7 +285,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/OnlyOffice/README.md",
"category": "Office",
"author": "Xuan Sang LE",
"version": "0.1.6-a",
"version": "0.1.7-a",
"dependencies": [],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/OnlyOffice/build/release/OnlyOffice.zip"
},