Skip to content

Commit

Permalink
This is the Aether dev.14 release. The changelog can be found at: htt…
Browse files Browse the repository at this point in the history
  • Loading branch information
nehbit committed Sep 20, 2019
1 parent 9d812c5 commit 53b6c8b
Show file tree
Hide file tree
Showing 398 changed files with 9,561 additions and 5,427 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.**

Aether is available for Mac OS, Windows and Linux. The Linux version provided as a courtesy, it might work, but is completely unsupported. Windows and Mac OS versions are supported by users at [meta.geteather.net](https://meta.getaether.net/c/support).

## Compiling

Aether is a relatively large app with an Electron and Go toolchain, at 100,000+ lines of code. Getting it to compile requires setting up a correct build runtime with the latest versions of Go, Node (for Electron) and C dependencies and development environments. Expect the initial set-up to take a few hours. Be patient! 🙂

### Instructions
Compile instructions can be found here at [getaether.net/docs/developers](https://getaether.net/docs/developers/).

## Filing a bug

Please create a topic in the appropriate section of [meta.getaether.net](https://meta.getaether.net). This allows non-Github-using majority of Aether users to help with your issue, and point you in the right direction.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ func (s *server) GetBoards(
AllProvables_Owner: req.GetFilters().GetGraphFilters().GetOwner(),
AllProvables_Limit: int(req.GetFilters().GetGraphFilters().GetLimit()),
AllProvables_Offset: int(req.GetFilters().GetGraphFilters().GetOffset()),
Board_Name: req.GetFilters().GetGraphFilters().GetName(),
}
result, _ := persistence.Read("boards", apiFps, []string{}, apiStart, apiEnd, true, &opts)
for key, _ := range result.Boards {
Expand Down Expand Up @@ -185,6 +186,7 @@ func (s *server) GetKeys(
AllProvables_Owner: req.GetFilters().GetGraphFilters().GetOwner(),
AllProvables_Limit: int(req.GetFilters().GetGraphFilters().GetLimit()),
AllProvables_Offset: int(req.GetFilters().GetGraphFilters().GetOffset()),
Key_Name: req.GetFilters().GetGraphFilters().GetName(),
}
result, _ := persistence.Read("keys", apiFps, []string{}, apiStart, apiEnd, true, &opts)
for key, _ := range result.Keys {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function gitIsDirty() {
Check if we have any uncommitted changes at the moment of compile.
*/
let isDirty = execSync(
`git diff-index --quiet HEAD -- ':!*package-lock.json' ':!*package.json' ':!*buildresources/get-version-from-git.js' ':!../support/getaether-website' || echo 'dirty'`
`git diff-index --quiet HEAD -- . ':!*package-lock.json' ':!*package.json' ':!*buildresources/get-version-from-git.js' ':!../support/getaether-website' || echo 'dirty'`
)
return isDirty.toString()
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 53b6c8b

Please sign in to comment.