1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-03 20:45:26 +02:00

removed dead code after refactor, bumped version

This commit is contained in:
Harvey Kandola 2016-11-07 08:18:40 -08:00
parent 2bfc558e91
commit 355259c157
8 changed files with 4 additions and 47 deletions

View file

@ -8,7 +8,7 @@ The mission is to bring software dev inspired features (refactoring, testing, li
## Latest version ## Latest version
v0.29.0 v0.30.0
## OS Support ## OS Support

View file

@ -1,15 +0,0 @@
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
import Ember from 'ember';
export default Ember.Component.extend({
});

View file

@ -1,14 +0,0 @@
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
import Ember from 'ember';
export default Ember.Component.extend({});

View file

@ -2,9 +2,7 @@
{{#layout/zone-sidebar}} {{#layout/zone-sidebar}}
{{#layout/sidebar-intro message='Rename, delete, share and manage space permissions'}} {{#layout/sidebar-intro message='Rename, delete, share and manage space permissions'}}
{{#link-to 'folder' model.id model.slug}} {{back-to-space folder=model}}
<i class="material-icons">arrow_back</i>&nbsp;{{model.name}}
{{/link-to}}
{{/layout/sidebar-intro}} {{/layout/sidebar-intro}}
<div class="sidebar-menu"> <div class="sidebar-menu">
<ul class="options"> <ul class="options">

View file

@ -1,5 +0,0 @@
{{#link-to 'application'}}
<div class="zone-sidebar-title">
<i class="material-icons">arrow_back</i>&nbsp;HOME
</div>
{{/link-to}}

View file

@ -1,7 +0,0 @@
<div class="zone-container">
<div class="container-fluid">
<div class="row">
{{yield}}
</div>
</div>
</div>

View file

@ -1,6 +1,6 @@
{ {
"name": "documize", "name": "documize",
"version": "0.29.0", "version": "0.30.0",
"description": "The Documentation IDE", "description": "The Documentation IDE",
"private": true, "private": true,
"directories": { "directories": {

View file

@ -26,7 +26,7 @@ type ProdInfo struct {
// Product returns product edition details // Product returns product edition details
func Product() (p ProdInfo) { func Product() (p ProdInfo) {
p.Major = "0" p.Major = "0"
p.Minor = "29" p.Minor = "30"
p.Patch = "0" p.Patch = "0"
p.Version = fmt.Sprintf("%s.%s.%s", p.Major, p.Minor, p.Patch) p.Version = fmt.Sprintf("%s.%s.%s", p.Major, p.Minor, p.Patch)
p.Edition = "Community" p.Edition = "Community"