Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
v1.0 - Initial public release
Browse files Browse the repository at this point in the history
  • Loading branch information
lrivallain committed Apr 16, 2019
1 parent 695da25 commit 8f508fa
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,11 @@ LUMExt-UI is a vCloud Director plugin that extends the HTML5 UI. Once deployed,

Please download the last version of `plugin.zip` from the releases files of the github project: [lumext/release](https://github.com/groupe-sii/lumext/releases/latest), copy it to the `ui` folder of the project clone.

```bash
cd ui
curl https://github.com/groupe-sii/lumext/releases/download/v1.0/plugin.zip > ./plugin.zip
```

#### from vCD >=9.1 to 9.5

Use the provided script from the `ui` folder to deploy the LUMExt-UI plugin in vCloud Director.
Expand Down
11 changes: 7 additions & 4 deletions api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

setup(
name='lumext_api',
version='0.1',
author="Ludovic Rivallain, Camille Kessab",
author_email='ludovic.rivallain@gmail.com',
version='1.0',
author="SII Group, Ludovic Rivallain, Camille Kessab",
url="https://github.com/groupe-sii/lumext",
packages=setuptools.find_packages(),
description="LUMext is a vCD UI & API extension to manage LDAP-based organisation's users through vCD.",
long_description=long_description,
Expand All @@ -25,8 +25,11 @@
"simplejson",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Development Status :: 5 - Production/Stable"
],
entry_points={
'console_scripts': [
Expand Down
14 changes: 7 additions & 7 deletions ui/manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"urn": "vmware:vcloud:lumext",
"name": "Lumext",
"urn": "vmware:vcloud:sii:lumext",
"name": "LUMExt",
"containerVersion": "9.1.0",
"version": "0.0.1",
"scope": ["tenant"],
"version": "1.0.0",
"scope": ["tenant", "service-provider"],
"permissions": [],
"description": "LUMext is a vCD UI & API extension to manage organisation's users and groups through vCloud Director.",
"description": "LUMext is a vCD UI & API extension to manage LDAP-based organisation's users through vCD.",
"vendor": "SII",
"license": "",
"link": "",
"license": "MIT",
"link": "https://github.com/groupe-sii/lumext",
"module": "LumextModule",
"route": "lumext"
}

0 comments on commit 8f508fa

Please sign in to comment.