Skip to content

Commit fcf38d8

Browse files
committed
Change downloads asset location
1 parent ce93a5e commit fcf38d8

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or
1212

1313
## Latest Release
1414

15-
[Community edition: v4.2.2](https://github.com/documize/community/releases)
15+
[Community edition: v4.2.3](https://github.com/documize/community/releases)
1616

17-
[Community+ edition: v4.2.2](https://www.documize.com/community/downloads)
17+
[Community+ edition: v4.2.3](https://www.documize.com)
1818

1919
The Community+ edition is the "Enterprise" offering with advanced capabilities and customer support:
2020

edition/community.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ func main() {
4040
rt.Product = domain.Product{}
4141
rt.Product.Major = "4"
4242
rt.Product.Minor = "2"
43-
rt.Product.Patch = "2"
44-
rt.Product.Revision = "220208183403"
43+
rt.Product.Patch = "3"
44+
rt.Product.Revision = "220214141054"
4545
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4646
rt.Product.Edition = domain.CommunityEdition
4747
rt.Product.Title = "Community"

gui/app/components/customize/change-log.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default Component.extend(Notifier, {
2525
let self = this;
2626
let cacheBuster = + new Date();
2727
$.ajax({
28-
url: `https://documize.s3-eu-west-1.amazonaws.com/news/summary.html?cb=${cacheBuster}`,
28+
url: `https://www.documize.com/community/news/summary.html?cb=${cacheBuster}`,
2929
type: 'GET',
3030
dataType: 'html',
3131
success: function (response) {

gui/app/components/layout/master-navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default Component.extend(Modals, {
5555
let self = this;
5656
let cacheBuster = + new Date();
5757
$.ajax({
58-
url: `https://documize.s3-eu-west-1.amazonaws.com/news/${edition}/${version}.html?cb=${cacheBuster}`,
58+
url: `https://www.documize.com/community/news/${edition}/${version}.html?cb=${cacheBuster}`,
5959
type: 'GET',
6060
dataType: 'html',
6161
success: function (response) {

gui/app/pods/updates/controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default Controller.extend({
2727
let cacheBuster = + new Date();
2828

2929
$.ajax({
30-
url: `https://documize.s3-eu-west-1.amazonaws.com/news/${edition}/${version}.html?cb=${cacheBuster}`,
30+
url: `https://www.documize.com/community/news/${edition}/${version}.html?cb=${cacheBuster}`,
3131
type: 'GET',
3232
dataType: 'html',
3333
success: function (response) {

gui/app/services/app-meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default Service.extend({
9999
let self = this;
100100
let cacheBuster = + new Date();
101101

102-
$.getJSON(`https://documize.s3-eu-west-1.amazonaws.com/news/meta.json?cb=${cacheBuster}`, function (versions) {
102+
$.getJSON(`https://www.documize.com/community/news/meta.json?cb=${cacheBuster}`, function (versions) {
103103
let cv = 'v' + versions.community.version;
104104
let ev = 'v' + versions.enterprise.version;
105105
let re = self.get('edition');

gui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "documize",
3-
"version": "4.2.2",
3+
"version": "4.2.3",
44
"private": true,
55
"description": "Documize Community",
66
"repository": "",

0 commit comments

Comments
 (0)