From 20fb853907c75bd287af92923c3abbfee2b4a97d Mon Sep 17 00:00:00 2001 From: Harvey Kandola Date: Tue, 16 Jan 2024 12:47:44 -0500 Subject: [PATCH] Implement Azure SQL database compatibility checks --- README.md | 4 ++-- core/database/check.go | 2 +- edition/community.go | 4 ++-- gui/package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4bad5216..ecd13035 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or ## Latest Release -[Community edition: v5.11.1](https://github.com/documize/community/releases) +[Community edition: v5.11.2](https://github.com/documize/community/releases) -[Community+ edition: v5.11.1](https://www.documize.com/community/get-started) +[Community+ edition: v5.11.2](https://www.documize.com/community/get-started) The Community+ edition is the "enterprise" offering with advanced capabilities and customer support: diff --git a/core/database/check.go b/core/database/check.go index ac732680..f8a07cd5 100644 --- a/core/database/check.go +++ b/core/database/check.go @@ -82,7 +82,7 @@ func Check(runtime *env.Runtime) bool { return false } - if len(flds) == 0 { + if len(flds) <= 5 { runtime.Log.Info("Database: starting setup mode for empty database") runtime.Flags.SiteMode = env.SiteModeSetup return false diff --git a/edition/community.go b/edition/community.go index 5e6c58db..4a54f086 100644 --- a/edition/community.go +++ b/edition/community.go @@ -41,8 +41,8 @@ func main() { rt.Product = domain.Product{} rt.Product.Major = "5" rt.Product.Minor = "11" - rt.Product.Patch = "1" - rt.Product.Revision = "1705347666" + rt.Product.Patch = "2" + rt.Product.Revision = "1705427184" rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Edition = domain.CommunityEdition rt.Product.Title = "Community" diff --git a/gui/package.json b/gui/package.json index e5afc68c..e7e8f5ae 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "documize", - "version": "5.11.1", + "version": "5.11.2", "private": true, "description": "Documize Community", "repository": "",