Skip to content

Commit 0743ae0

Browse files
committed
Version bump
1 parent 4130d1f commit 0743ae0

File tree

7 files changed

+758
-694
lines changed

7 files changed

+758
-694
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ Space view.
5858

5959
## Latest version
6060

61-
[Community edition: v1.65.4](https://github.com/documize/community/releases)
61+
[Community edition: v1.66.0](https://github.com/documize/community/releases)
6262

63-
[Enterprise edition: v1.67.4](https://documize.com/downloads)
63+
[Enterprise edition: v1.68.0](https://documize.com/downloads)
6464

6565
## OS support
6666

@@ -70,6 +70,16 @@ Documize runs on the following:
7070
- Windows
7171
- macOS
7272

73+
# Browser support
74+
75+
Documize supports the following (evergreen) browsers:
76+
77+
- Chrome
78+
- Firefox
79+
- Safari
80+
- Brave
81+
- MS Edge (16+)
82+
7383
## Technology stack
7484

7585
Documize is built with the following technologies:

edition/community.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ func main() {
4141
// product details
4242
rt.Product = env.ProdInfo{}
4343
rt.Product.Major = "1"
44-
rt.Product.Minor = "65"
45-
rt.Product.Patch = "4"
44+
rt.Product.Minor = "66"
45+
rt.Product.Patch = "0"
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.go

+731-685
Large diffs are not rendered by default.

gui/app/styles/view/auth.scss

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1+
.auth-center {
2+
display: flex;
3+
justify-content: center;
4+
align-items: center;
5+
flex-direction: column;
6+
min-height: 500px;
7+
width: 100%;
8+
}
9+
110
.auth-box {
2-
display: inline-block;
11+
width: 100%;
312
height: 500px;
413
max-width: 500px;
514
padding: 20px 50px;
615
background-color: $color-white;
716
color: $color-off-black;
8-
@extend .absolute-center;
917
@include border-radius(3px);
1018
@include shadow();
1119

gui/app/templates/components/folder/space-view.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<li class="tab tab-vertical {{if spaceSelected 'selected'}}" {{action 'onDocumentFilter' 'space' space.id}}>All ({{documents.length}})</li>
55
{{#if hasCategories}}
66
{{#if (gt rootDocCount 0)}}
7-
<li class="tab tab-vertical {{if uncategorizedSelected 'selected'}}" {{action 'onDocumentFilter' 'uncategorized' space.id}}>Uncategorized ({{rootDocCount}})</li>
7+
<li class="tab tab-vertical text-truncate {{if uncategorizedSelected 'selected'}}" {{action 'onDocumentFilter' 'uncategorized' space.id}}>Uncategorized ({{rootDocCount}})</li>
88
{{/if}}
99
{{/if}}
1010
</ul>
@@ -23,7 +23,7 @@
2323
</div>
2424
<ul class="tabnav-control tabnav-control-centered w-75">
2525
{{#each categories as |cat index|}}
26-
<li class="tab tab-vertical {{if cat.selected 'selected'}}" {{action 'onDocumentFilter' 'category' cat.id}}>{{cat.category}} ({{cat.docCount}})</li>
26+
<li class="tab tab-vertical text-truncate {{if cat.selected 'selected'}}" {{action 'onDocumentFilter' 'category' cat.id}}>{{cat.category}} ({{cat.docCount}})</li>
2727
{{/each}}
2828
</ul>
2929

gui/package.json

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

gui/public/assets/img/logo-purple.png

7.53 KB
Loading

0 commit comments

Comments
 (0)