mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
Implement more re-branding updates
This commit is contained in:
parent
8976bf817b
commit
8fa5569ae5
7 changed files with 12 additions and 12 deletions
10
README.md
10
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.
|
||||
|
||||

|
||||
|
||||
## 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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "documize",
|
||||
"version": "4.1.0",
|
||||
"version": "4.1.1",
|
||||
"private": true,
|
||||
"description": "Documize",
|
||||
"repository": "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue