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

Version bump

This commit is contained in:
sauls8t 2018-06-29 16:07:01 +01:00
parent 4130d1f129
commit 0743ae002c
7 changed files with 758 additions and 694 deletions

View file

@ -58,9 +58,9 @@ Space view.
## Latest version
[Community edition: v1.65.4](https://github.com/documize/community/releases)
[Community edition: v1.66.0](https://github.com/documize/community/releases)
[Enterprise edition: v1.67.4](https://documize.com/downloads)
[Enterprise edition: v1.68.0](https://documize.com/downloads)
## OS support
@ -70,6 +70,16 @@ Documize runs on the following:
- Windows
- macOS
# Browser support
Documize supports the following (evergreen) browsers:
- Chrome
- Firefox
- Safari
- Brave
- MS Edge (16+)
## Technology stack
Documize is built with the following technologies:

View file

@ -41,8 +41,8 @@ func main() {
// product details
rt.Product = env.ProdInfo{}
rt.Product.Major = "1"
rt.Product.Minor = "65"
rt.Product.Patch = "4"
rt.Product.Minor = "66"
rt.Product.Patch = "0"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = "Community"
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

File diff suppressed because one or more lines are too long

View file

@ -1,11 +1,19 @@
.auth-center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 500px;
width: 100%;
}
.auth-box {
display: inline-block;
width: 100%;
height: 500px;
max-width: 500px;
padding: 20px 50px;
background-color: $color-white;
color: $color-off-black;
@extend .absolute-center;
@include border-radius(3px);
@include shadow();

View file

@ -4,7 +4,7 @@
<li class="tab tab-vertical {{if spaceSelected 'selected'}}" {{action 'onDocumentFilter' 'space' space.id}}>All ({{documents.length}})</li>
{{#if hasCategories}}
{{#if (gt rootDocCount 0)}}
<li class="tab tab-vertical {{if uncategorizedSelected 'selected'}}" {{action 'onDocumentFilter' 'uncategorized' space.id}}>Uncategorized ({{rootDocCount}})</li>
<li class="tab tab-vertical text-truncate {{if uncategorizedSelected 'selected'}}" {{action 'onDocumentFilter' 'uncategorized' space.id}}>Uncategorized ({{rootDocCount}})</li>
{{/if}}
{{/if}}
</ul>
@ -23,7 +23,7 @@
</div>
<ul class="tabnav-control tabnav-control-centered w-75">
{{#each categories as |cat index|}}
<li class="tab tab-vertical {{if cat.selected 'selected'}}" {{action 'onDocumentFilter' 'category' cat.id}}>{{cat.category}} ({{cat.docCount}})</li>
<li class="tab tab-vertical text-truncate {{if cat.selected 'selected'}}" {{action 'onDocumentFilter' 'category' cat.id}}>{{cat.category}} ({{cat.docCount}})</li>
{{/each}}
</ul>

View file

@ -1,6 +1,6 @@
{
"name": "documize",
"version": "1.65.4",
"version": "1.66.0",
"description": "The Document IDE",
"private": true,
"repository": "",

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB