Skip to content

Commit efb092e

Browse files
committed
Prep v5.13.0 release
1 parent 3fc0a15 commit efb092e

File tree

7 files changed

+31
-21
lines changed

7 files changed

+31
-21
lines changed

README.md

+4-3
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: v5.12.0](https://github.com/documize/community/releases)
15+
[Community edition: v5.13.0](https://github.com/documize/community/releases)
1616

17-
[Community+ edition: v5.12.0](https://www.documize.com/community/get-started)
17+
[Community+ edition: v5.13.0](https://www.documize.com/community/get-started)
1818

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

@@ -64,7 +64,7 @@ For all database types, Full-Text Search (FTS) support is mandatory.
6464

6565
## Technology Stack
6666

67-
- Go (v1.22.4)
67+
- Go (v1.23.4)
6868
- Ember JS (v3.12.0)
6969

7070
## Authentication Options
@@ -89,6 +89,7 @@ Languages supported out-of-the-box:
8989
- Portuguese (Brazil) (Português - Brasil)
9090
- Japanese (日本語)
9191
- Italian
92+
- Spanish Argentinian
9293

9394
PR's welcome for additional languages.
9495

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo "Build process started $NOW"
88

99
echo "Building Ember assets..."
1010
cd gui
11-
export NODE_OPTIONS=--openssl-legacy-provider
11+
# export NODE_OPTIONS=--openssl-legacy-provider
1212
ember build ---environment=production --output-path dist-prod --suppress-sizes true
1313
cd ..
1414

edition/community.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ func main() {
4040
// Specify the product edition.
4141
rt.Product = domain.Product{}
4242
rt.Product.Major = "5"
43-
rt.Product.Minor = "12"
43+
rt.Product.Minor = "13"
4444
rt.Product.Patch = "0"
45-
rt.Product.Revision = "240618111522"
45+
rt.Product.Revision = "1735665467719"
4646
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4747
rt.Product.Edition = domain.CommunityEdition
4848
rt.Product.Title = "Community"

gui/app/services/i18n.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Service, { inject as service } from '@ember/service';
99
import $ from 'jquery';
1010

1111
export default Service.extend({
12-
langs: { enUS: [], deDE: [] , zhCN: [], ptBR: [], frFR: [], jaJP: [], itIT: [] },
12+
langs: { enUS: [], deDE: [] , zhCN: [], ptBR: [], frFR: [], jaJP: [], itIT: [], esAR: [] },
1313
locales: [],
1414
session: service(),
1515

@@ -36,6 +36,9 @@ export default Service.extend({
3636
$.getJSON("/i18n/it-IT.json", (data) => {
3737
this.langs.itIT = data;
3838
});
39+
$.getJSON("/i18n/es-AR.json", (data) => {
40+
this.langs.esAR = data;
41+
});
3942
},
4043

4144
localize(key, ...args) {
@@ -63,7 +66,10 @@ export default Service.extend({
6366
case "it-IT":
6467
str = this.langs.itIT[key];
6568
break;
66-
}
69+
case "es-AR":
70+
str = this.langs.esAR[key];
71+
break;
72+
}
6773

6874
if (_.isUndefined(str)) {
6975
// eslint-disable-next-line no-console

gui/package-lock.json

+12-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "documize",
3-
"version": "5.12.0",
3+
"version": "5.13.0",
44
"private": true,
55
"description": "Documize Community",
66
"repository": "",

gui/yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -12892,9 +12892,9 @@ pump@^2.0.0:
1289212892
once "^1.3.1"
1289312893

1289412894
pump@^3.0.0:
12895-
version "3.0.0"
12896-
resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
12897-
integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
12895+
version "3.0.2"
12896+
resolved "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz"
12897+
integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==
1289812898
dependencies:
1289912899
end-of-stream "^1.1.0"
1290012900
once "^1.3.1"

0 commit comments

Comments
 (0)