1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-21 14:19:43 +02:00

Bump version

This commit is contained in:
sauls8t 2018-09-04 17:44:40 +01:00
parent 074eea3aeb
commit 6e0958b3c3
4 changed files with 9 additions and 17 deletions

View file

@ -58,9 +58,9 @@ Space view.
## Latest version ## Latest version
[Community edition: v1.69.2](https://github.com/documize/community/releases) [Community edition: v1.70.0](https://github.com/documize/community/releases)
[Enterprise edition: v1.71.2](https://documize.com/downloads) [Enterprise edition: v1.72.0](https://documize.com/downloads)
## OS support ## OS support
@ -99,6 +99,10 @@ Coming soon, PostgreSQL and Microsoft SQL Server database support.
Besides email/password login, you can also leverage the following options. Besides email/password login, you can also leverage the following options.
### LDAP / Active Directory
Connect and sync Documize with any LDAP v3 compliant provider including Microsoft Active Directory.
### Keycloak Integration ### Keycloak Integration
Documize provides out-of-the-box integration with [Redhat Keycloak](http://www.keycloak.org) for open source identity and access management. Documize provides out-of-the-box integration with [Redhat Keycloak](http://www.keycloak.org) for open source identity and access management.

View file

@ -41,8 +41,8 @@ func main() {
// product details // product details
rt.Product = env.ProdInfo{} rt.Product = env.ProdInfo{}
rt.Product.Major = "1" rt.Product.Major = "1"
rt.Product.Minor = "69" rt.Product.Minor = "70"
rt.Product.Patch = "2" rt.Product.Patch = "0"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = "Community" rt.Product.Edition = "Community"
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition) rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "1.69.2", "version": "1.70.0",
"description": "The Document IDE", "description": "The Document IDE",
"private": true, "private": true,
"repository": "", "repository": "",

View file

@ -166,15 +166,3 @@ type LDAPUser struct {
Firstname string `json:"firstName"` Firstname string `json:"firstName"`
Lastname string `json:"lastName"` Lastname string `json:"lastName"`
} }
// LDAPAuthRequest data received via LDAP client library
// type LDAPAuthRequest struct {
// Domain string `json:"domain"`
// Token string `json:"token"`
// RemoteID string `json:"remoteId"`
// Email string `json:"email"`
// Username string `json:"username"`
// Firstname string `json:"firstname"`
// Lastname string `json:"lastname"`
// Enabled bool `json:"enabled"`
// }