From 8fa5569ae571db1e9500d330453ef08f99e08be5 Mon Sep 17 00:00:00 2001 From: HarveyKandola Date: Mon, 15 Nov 2021 14:52:29 -0500 Subject: [PATCH] Implement more re-branding updates --- README.md | 10 +++++----- edition/community.go | 4 ++-- gui/app/components/layout/master-navigation.js | 2 +- gui/app/constants/constants.js | 2 +- gui/app/pods/updates/controller.js | 2 +- gui/app/services/app-meta.js | 2 +- gui/package.json | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index c4ad2616..ea16a390 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,17 @@ Documize Community is an open source modern, lightweight alternative to Confluen - Designed to unify both customer-facing and internal documentation - Organization through labels, spaces and categories -It's built with Golang + EmberJS and compiled down to a single executable binary for Linux, Windows and macOS. +It's built with Golang + EmberJS and compiled down to a single executable binary available for Linux, Windows and Mac. -All you need to provide is PostgreSQL, Microsoft SQL Server or any MySQL variant. +All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or any MySQL variant. ![Documize Community](screenshot-1.png "Documize Community") ## Latest Release -[Community edition: v4.1.0](https://github.com/documize/community/releases) +[Community edition: v4.1.1](https://github.com/documize/community/releases) -[Community+ edition: v4.1.0](https://www.documize.com/community/downloads) +[Community+ edition: v4.1.1](https://www.documize.com/community/downloads) The Community+ edition is the enterprise-ready offering with advanced capabilities and customer support: @@ -35,7 +35,7 @@ The Community+ edition is the enterprise-ready offering with advanced capabiliti - Linux - Windows - macOS -- Raspberry Pi (using the ARM builds) +- Raspberry Pi (ARM build) ## Database Support diff --git a/edition/community.go b/edition/community.go index 6d1f4ca5..1988791c 100644 --- a/edition/community.go +++ b/edition/community.go @@ -40,8 +40,8 @@ func main() { rt.Product = domain.Product{} rt.Product.Major = "4" rt.Product.Minor = "1" - rt.Product.Patch = "0" - rt.Product.Revision = "211103113945" + rt.Product.Patch = "1" + rt.Product.Revision = "1637004403" 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/app/components/layout/master-navigation.js b/gui/app/components/layout/master-navigation.js index 7142e184..6508d1b1 100644 --- a/gui/app/components/layout/master-navigation.js +++ b/gui/app/components/layout/master-navigation.js @@ -50,7 +50,7 @@ export default Component.extend(Modals, { }); let version = this.get('appMeta.version'); - let edition = this.get('appMeta.edition').toLowerCase(); + let edition = encodeURIComponent(this.get('appMeta.edition').toLowerCase()); let self = this; let cacheBuster = + new Date(); diff --git a/gui/app/constants/constants.js b/gui/app/constants/constants.js index a221524d..cc56eac4 100644 --- a/gui/app/constants/constants.js +++ b/gui/app/constants/constants.js @@ -155,7 +155,7 @@ let constants = EmberObject.extend({ CommunityEdition: 'Community', // EnterpriseEdition is proprietary closed-source product. - EnterpriseEdition: 'Enterprise', + EnterpriseEdition: 'Community+', // PackageEssentials provides core capabilities. PackageEssentials: "Essentials", diff --git a/gui/app/pods/updates/controller.js b/gui/app/pods/updates/controller.js index 6b4f88cd..0efa2b54 100644 --- a/gui/app/pods/updates/controller.js +++ b/gui/app/pods/updates/controller.js @@ -22,7 +22,7 @@ export default Controller.extend({ this._super(...arguments); let version = this.get('appMeta.version'); - let edition = this.get('appMeta.edition').toLowerCase(); + let edition = encodeURIComponent(this.get('appMeta.edition').toLowerCase()); let self = this; let cacheBuster = + new Date(); diff --git a/gui/app/services/app-meta.js b/gui/app/services/app-meta.js index d15e286f..838e0a2f 100644 --- a/gui/app/services/app-meta.js +++ b/gui/app/services/app-meta.js @@ -113,7 +113,7 @@ export default Service.extend({ let isNewEnterprise = miscUtil.isNewVersion(rv, ev, true); if (re === 'Community' && isNewCommunity) self.set('updateAvailable', true); - if (re === 'Enterprise' && isNewEnterprise) self.set('updateAvailable', true); + if (re === 'Community+' && isNewEnterprise) self.set('updateAvailable', true); }); return response; diff --git a/gui/package.json b/gui/package.json index c94e1c90..f9beeec3 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "documize", - "version": "4.1.0", + "version": "4.1.1", "private": true, "description": "Documize", "repository": "",