1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +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 ## 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 ## OS support
@ -70,6 +70,16 @@ Documize runs on the following:
- Windows - Windows
- macOS - macOS
# Browser support
Documize supports the following (evergreen) browsers:
- Chrome
- Firefox
- Safari
- Brave
- MS Edge (16+)
## Technology stack ## Technology stack
Documize is built with the following technologies: Documize is built with the following technologies:

View file

@ -41,8 +41,8 @@ func main() {
// product details // product details
rt.Product = env.ProdInfo{} rt.Product = env.ProdInfo{}
rt.Product.Major = "1" rt.Product.Major = "1"
rt.Product.Minor = "65" rt.Product.Minor = "66"
rt.Product.Patch = "4" rt.Product.Patch = "0"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch) rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = "Community" rt.Product.Edition = "Community"
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition) 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 { .auth-box {
display: inline-block; width: 100%;
height: 500px; height: 500px;
max-width: 500px; max-width: 500px;
padding: 20px 50px; padding: 20px 50px;
background-color: $color-white; background-color: $color-white;
color: $color-off-black; color: $color-off-black;
@extend .absolute-center;
@include border-radius(3px); @include border-radius(3px);
@include shadow(); @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> <li class="tab tab-vertical {{if spaceSelected 'selected'}}" {{action 'onDocumentFilter' 'space' space.id}}>All ({{documents.length}})</li>
{{#if hasCategories}} {{#if hasCategories}}
{{#if (gt rootDocCount 0)}} {{#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}}
{{/if}} {{/if}}
</ul> </ul>
@ -23,7 +23,7 @@
</div> </div>
<ul class="tabnav-control tabnav-control-centered w-75"> <ul class="tabnav-control tabnav-control-centered w-75">
{{#each categories as |cat index|}} {{#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}} {{/each}}
</ul> </ul>

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB