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

Change downloads asset location

This commit is contained in:
HarveyKandola 2022-02-14 14:23:10 -05:00
parent ce93a5e623
commit fcf38d8af9
7 changed files with 9 additions and 9 deletions

View file

@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or
## Latest Release ## 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: The Community+ edition is the "Enterprise" offering with advanced capabilities and customer 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 = "2" rt.Product.Minor = "2"
rt.Product.Patch = "2" rt.Product.Patch = "3"
rt.Product.Revision = "220208183403" rt.Product.Revision = "220214141054"
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

@ -25,7 +25,7 @@ export default Component.extend(Notifier, {
let self = this; let self = this;
let cacheBuster = + new Date(); let cacheBuster = + new Date();
$.ajax({ $.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', type: 'GET',
dataType: 'html', dataType: 'html',
success: function (response) { success: function (response) {

View file

@ -55,7 +55,7 @@ export default Component.extend(Modals, {
let self = this; let self = this;
let cacheBuster = + new Date(); let cacheBuster = + new Date();
$.ajax({ $.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', type: 'GET',
dataType: 'html', dataType: 'html',
success: function (response) { success: function (response) {

View file

@ -27,7 +27,7 @@ export default Controller.extend({
let cacheBuster = + new Date(); let cacheBuster = + new Date();
$.ajax({ $.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', type: 'GET',
dataType: 'html', dataType: 'html',
success: function (response) { success: function (response) {

View file

@ -99,7 +99,7 @@ export default Service.extend({
let self = this; let self = this;
let cacheBuster = + new Date(); 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 cv = 'v' + versions.community.version;
let ev = 'v' + versions.enterprise.version; let ev = 'v' + versions.enterprise.version;
let re = self.get('edition'); let re = self.get('edition');

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "4.2.2", "version": "4.2.3",
"private": true, "private": true,
"description": "Documize Community", "description": "Documize Community",
"repository": "", "repository": "",