-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from ONLYOFFICE/develop
Release/3.0.0
- Loading branch information
Showing
101 changed files
with
5,206 additions
and
1,952 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "src/onlyoffice/connector/browser/app_data"] | ||
path = src/onlyoffice/connector/browser/app_data | ||
[submodule "src/onlyoffice/plone/browser/app_data"] | ||
path = src/onlyoffice/plone/browser/app_data | ||
url = https://github.com/ONLYOFFICE/document-templates | ||
branch = main/new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Installer for the onlyoffice.connector package.""" | ||
"""Installer for the onlyoffice.plone package.""" | ||
|
||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
@@ -13,8 +13,8 @@ | |
|
||
|
||
setup( | ||
name='onlyoffice.connector', | ||
version='2.1.1', | ||
name='onlyoffice.plone', | ||
version='3.0.0', | ||
description="Plone ONLYOFFICE integration plugin", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
@@ -31,19 +31,19 @@ | |
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"License :: OSI Approved :: Apache Software License", | ||
], | ||
keywords='Python Plone', | ||
author='Ascensio System SIA', | ||
author_email='[email protected]', | ||
url='https://github.com/ONLYOFFICE/onlyoffice-plone', | ||
project_urls={ | ||
'PyPI': 'https://pypi.python.org/pypi/onlyoffice.connector', | ||
'PyPI': 'https://pypi.python.org/pypi/onlyoffice.plone', | ||
'Source': 'https://github.com/ONLYOFFICE/onlyoffice-plone', | ||
'Tracker': 'https://github.com/ONLYOFFICE/onlyoffice-plone/issues', | ||
# 'Documentation': 'https://onlyoffice.connector.readthedocs.io/en/latest/', | ||
# 'Documentation': 'https://onlyoffice.plone.readthedocs.io/en/latest/', | ||
}, | ||
license='AGPL version 3', | ||
license='Apache-2.0 License', | ||
packages=find_packages('src', exclude=['ez_setup']), | ||
namespace_packages=['onlyoffice'], | ||
package_dir={'': 'src'}, | ||
|
@@ -73,6 +73,6 @@ | |
[z3c.autoinclude.plugin] | ||
target = plone | ||
[console_scripts] | ||
update_locale = onlyoffice.connector.locales.update:update_locale | ||
update_locale = onlyoffice.plone.locales.update:update_locale | ||
""", | ||
) |
Oops, something went wrong.