Skip to content

Commit c705e8c

Browse files
committed
Explicit computed properties declaration for section header
1 parent 3993cfe commit c705e8c

File tree

6 files changed

+661
-661
lines changed

6 files changed

+661
-661
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Space view.
5252

5353
## Latest version
5454

55-
v1.57.0
55+
Community edition: v1.57.1
5656

5757
## OS support
5858

@@ -67,7 +67,7 @@ Documize runs on the following:
6767
Documize is built with the following technologies:
6868

6969
- EmberJS (v2.18.0)
70-
- Go (v1.9.4)
70+
- Go (v1.10)
7171

7272
...and supports the following databases:
7373

edition/community.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func main() {
4242
rt.Product = env.ProdInfo{}
4343
rt.Product.Major = "1"
4444
rt.Product.Minor = "57"
45-
rt.Product.Patch = "0"
45+
rt.Product.Patch = "1"
4646
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
4747
rt.Product.Edition = "Community"
4848
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

embed/bindata_assetfs.go

+652-652
Large diffs are not rendered by default.

gui/app/components/document/page-heading.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default Component.extend(ModalMixin, {
3333
emptySearch: computed('docSearchResults', function() {
3434
return this.get('docSearchResults.length') === 0;
3535
}),
36-
hasMenuPermissions: computed('permissions', 'userPendingItem', 'canEdit', 'canMove', 'canDelete', function() {
36+
hasMenuPermissions: computed('permissions.{documentCopy,documentTemplate}', 'userPendingItem', 'canEdit', 'canMove', 'canDelete', function() {
3737
let permissions = this.get('permissions');
3838

3939
return permissions.get('documentCopy') || permissions.get('documentTemplate') ||

gui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "documize",
3-
"version": "1.57.0",
3+
"version": "1.57.1",
44
"description": "The Document IDE",
55
"private": true,
66
"repository": "",

meta.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"community":
33
{
4-
"version": "1.57.0",
4+
"version": "1.57.1",
55
"major": 1,
66
"minor": 57,
7-
"patch": 0
7+
"patch": 1
88
},
99
"enterprise":
1010
{
11-
"version": "1.59.0",
11+
"version": "1.59.1",
1212
"major": 1,
1313
"minor": 59,
14-
"patch": 0
14+
"patch": 1
1515
}
1616
}

0 commit comments

Comments
 (0)