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

Implement more re-branding updates

This commit is contained in:
HarveyKandola 2021-11-15 14:52:29 -05:00
parent 8976bf817b
commit 8fa5569ae5
7 changed files with 12 additions and 12 deletions

View file

@ -4,17 +4,17 @@ Documize Community is an open source modern, lightweight alternative to Confluen
- Designed to unify both customer-facing and internal documentation - Designed to unify both customer-facing and internal documentation
- Organization through labels, spaces and categories - 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") ![Documize Community](screenshot-1.png "Documize Community")
## Latest Release ## 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: 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 - Linux
- Windows - Windows
- macOS - macOS
- Raspberry Pi (using the ARM builds) - Raspberry Pi (ARM build)
## Database Support ## Database Support

View file

@ -40,8 +40,8 @@ func main() {
rt.Product = domain.Product{} rt.Product = domain.Product{}
rt.Product.Major = "4" rt.Product.Major = "4"
rt.Product.Minor = "1" rt.Product.Minor = "1"
rt.Product.Patch = "0" rt.Product.Patch = "1"
rt.Product.Revision = "211103113945" rt.Product.Revision = "1637004403"
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 = domain.CommunityEdition rt.Product.Edition = domain.CommunityEdition
rt.Product.Title = "Community" rt.Product.Title = "Community"

View file

@ -50,7 +50,7 @@ export default Component.extend(Modals, {
}); });
let version = this.get('appMeta.version'); 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 self = this;
let cacheBuster = + new Date(); let cacheBuster = + new Date();

View file

@ -155,7 +155,7 @@ let constants = EmberObject.extend({
CommunityEdition: 'Community', CommunityEdition: 'Community',
// EnterpriseEdition is proprietary closed-source product. // EnterpriseEdition is proprietary closed-source product.
EnterpriseEdition: 'Enterprise', EnterpriseEdition: 'Community+',
// PackageEssentials provides core capabilities. // PackageEssentials provides core capabilities.
PackageEssentials: "Essentials", PackageEssentials: "Essentials",

View file

@ -22,7 +22,7 @@ export default Controller.extend({
this._super(...arguments); this._super(...arguments);
let version = this.get('appMeta.version'); 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 self = this;
let cacheBuster = + new Date(); let cacheBuster = + new Date();

View file

@ -113,7 +113,7 @@ export default Service.extend({
let isNewEnterprise = miscUtil.isNewVersion(rv, ev, true); let isNewEnterprise = miscUtil.isNewVersion(rv, ev, true);
if (re === 'Community' && isNewCommunity) self.set('updateAvailable', 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; return response;

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "4.1.0", "version": "4.1.1",
"private": true, "private": true,
"description": "Documize", "description": "Documize",
"repository": "", "repository": "",