Skip to content

Commit

Permalink
Prep v5.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
HarveyKandola committed Dec 31, 2024
1 parent 3fc0a15 commit efb092e
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 21 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ All you need to provide is your database -- PostgreSQL, Microsoft SQL Server or

## Latest Release

[Community edition: v5.12.0](https://github.com/documize/community/releases)
[Community edition: v5.13.0](https://github.com/documize/community/releases)

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

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

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

## Technology Stack

- Go (v1.22.4)
- Go (v1.23.4)
- Ember JS (v3.12.0)

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

PR's welcome for additional languages.

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo "Build process started $NOW"

echo "Building Ember assets..."
cd gui
export NODE_OPTIONS=--openssl-legacy-provider
# export NODE_OPTIONS=--openssl-legacy-provider
ember build ---environment=production --output-path dist-prod --suppress-sizes true
cd ..

Expand Down
4 changes: 2 additions & 2 deletions edition/community.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ func main() {
// Specify the product edition.
rt.Product = domain.Product{}
rt.Product.Major = "5"
rt.Product.Minor = "12"
rt.Product.Minor = "13"
rt.Product.Patch = "0"
rt.Product.Revision = "240618111522"
rt.Product.Revision = "1735665467719"
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"
Expand Down
10 changes: 8 additions & 2 deletions gui/app/services/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Service, { inject as service } from '@ember/service';
import $ from 'jquery';

export default Service.extend({
langs: { enUS: [], deDE: [] , zhCN: [], ptBR: [], frFR: [], jaJP: [], itIT: [] },
langs: { enUS: [], deDE: [] , zhCN: [], ptBR: [], frFR: [], jaJP: [], itIT: [], esAR: [] },
locales: [],
session: service(),

Expand All @@ -36,6 +36,9 @@ export default Service.extend({
$.getJSON("/i18n/it-IT.json", (data) => {
this.langs.itIT = data;
});
$.getJSON("/i18n/es-AR.json", (data) => {
this.langs.esAR = data;
});
},

localize(key, ...args) {
Expand Down Expand Up @@ -63,7 +66,10 @@ export default Service.extend({
case "it-IT":
str = this.langs.itIT[key];
break;
}
case "es-AR":
str = this.langs.esAR[key];
break;
}

if (_.isUndefined(str)) {
// eslint-disable-next-line no-console
Expand Down
21 changes: 12 additions & 9 deletions gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "documize",
"version": "5.12.0",
"version": "5.13.0",
"private": true,
"description": "Documize Community",
"repository": "",
Expand Down
6 changes: 3 additions & 3 deletions gui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12892,9 +12892,9 @@ pump@^2.0.0:
once "^1.3.1"

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

0 comments on commit efb092e

Please sign in to comment.