Skip to content

Commit

Permalink
Merge pull request #70 from documize/import-set-meta
Browse files Browse the repository at this point in the history
Import set meta
  • Loading branch information
HarveyKandola authored Dec 5, 2016
2 parents 3b3785b + 2f01c77 commit 5cd4497
Show file tree
Hide file tree
Showing 5 changed files with 598 additions and 597 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The mission is to bring software dev inspired features (refactoring, testing, li

## Latest version

v0.36.0
v0.37.0

## OS Support

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "documize",
"version": "0.36.0",
"version": "0.37.0",
"description": "The Document IDE",
"private": true,
"repository": "",
Expand Down
1 change: 1 addition & 0 deletions core/api/endpoint/conversion_endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ func processDocument(p request.Persister, filename, job, folderID string, fileRe
meta := entity.PageMeta{}
meta.PageID = pageID
meta.RawBody = page.Body
meta.Config = "{}"

model := models.PageModel{}
model.Page = page
Expand Down
2 changes: 1 addition & 1 deletion core/product.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type ProdInfo struct {
// Product returns product edition details
func Product() (p ProdInfo) {
p.Major = "0"
p.Minor = "36"
p.Minor = "37"
p.Patch = "0"
p.Version = fmt.Sprintf("%s.%s.%s", p.Major, p.Minor, p.Patch)
p.Edition = "Community"
Expand Down
Loading

0 comments on commit 5cd4497

Please sign in to comment.