diff --git a/README.md b/README.md index 9783d0ef..afa4ea59 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: v4.2.2](https://github.com/documize/community/releases) +[Community edition: v4.2.3](https://github.com/documize/community/releases) -[Community+ edition: v4.2.2](https://www.documize.com/community/downloads) +[Community+ edition: v4.2.3](https://www.documize.com) The Community+ edition is the "Enterprise" offering with advanced capabilities and customer support: diff --git a/edition/community.go b/edition/community.go index 3702cac6..cc70fca0 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 = "2" - rt.Product.Patch = "2" - rt.Product.Revision = "220208183403" + rt.Product.Patch = "3" + rt.Product.Revision = "220214141054" 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/customize/change-log.js b/gui/app/components/customize/change-log.js index 5863577c..867199fa 100644 --- a/gui/app/components/customize/change-log.js +++ b/gui/app/components/customize/change-log.js @@ -25,7 +25,7 @@ export default Component.extend(Notifier, { let self = this; let cacheBuster = + new Date(); $.ajax({ - url: `https://documize.s3-eu-west-1.amazonaws.com/news/summary.html?cb=${cacheBuster}`, + url: `https://www.documize.com/community/news/summary.html?cb=${cacheBuster}`, type: 'GET', dataType: 'html', success: function (response) { diff --git a/gui/app/components/layout/master-navigation.js b/gui/app/components/layout/master-navigation.js index 6508d1b1..eac30b01 100644 --- a/gui/app/components/layout/master-navigation.js +++ b/gui/app/components/layout/master-navigation.js @@ -55,7 +55,7 @@ export default Component.extend(Modals, { let self = this; let cacheBuster = + new Date(); $.ajax({ - url: `https://documize.s3-eu-west-1.amazonaws.com/news/${edition}/${version}.html?cb=${cacheBuster}`, + url: `https://www.documize.com/community/news/${edition}/${version}.html?cb=${cacheBuster}`, type: 'GET', dataType: 'html', success: function (response) { diff --git a/gui/app/pods/updates/controller.js b/gui/app/pods/updates/controller.js index 0efa2b54..e5b372f1 100644 --- a/gui/app/pods/updates/controller.js +++ b/gui/app/pods/updates/controller.js @@ -27,7 +27,7 @@ export default Controller.extend({ let cacheBuster = + new Date(); $.ajax({ - url: `https://documize.s3-eu-west-1.amazonaws.com/news/${edition}/${version}.html?cb=${cacheBuster}`, + url: `https://www.documize.com/community/news/${edition}/${version}.html?cb=${cacheBuster}`, type: 'GET', dataType: 'html', success: function (response) { diff --git a/gui/app/services/app-meta.js b/gui/app/services/app-meta.js index 838e0a2f..6d367793 100644 --- a/gui/app/services/app-meta.js +++ b/gui/app/services/app-meta.js @@ -99,7 +99,7 @@ export default Service.extend({ let self = this; let cacheBuster = + new Date(); - $.getJSON(`https://documize.s3-eu-west-1.amazonaws.com/news/meta.json?cb=${cacheBuster}`, function (versions) { + $.getJSON(`https://www.documize.com/community/news/meta.json?cb=${cacheBuster}`, function (versions) { let cv = 'v' + versions.community.version; let ev = 'v' + versions.enterprise.version; let re = self.get('edition'); diff --git a/gui/package.json b/gui/package.json index 68c191eb..4a3054bc 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "documize", - "version": "4.2.2", + "version": "4.2.3", "private": true, "description": "Documize Community", "repository": "",