10000 Tags · fairhopeweb/encore · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: fairhopeweb/encore

Tags

v.1.1.0

Toggle v.1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update development dashboard branding. (encoredev#212)

This commit updates the dashboard branding to be inline with the new Encore branding. It also adds a link to the Encore documentation website.

v1.0.0

Toggle v1.0.0's commit message
.: revert wireguard commit version

There have been substantial changes to the windows module's public API
since v0.4.1 and it's not critical for us to upgrade it right now.

v0.23.0

Toggle v0.23.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support line comments on request & response fields (encoredev#161)

This commit adds support for line based comments on struct fields and
Encore will now pick those up if there is not a doc comment on the field

```go
type FooBar struct {
    // This is a doc comment on Field
    Field string

    // This doc comment will take presendence over the line comment
    Foo string // This is a line comment will be ignored

    Bar string // This is a line comment will be used as the documentation
}
```

This example will result in the following documentation generation:

> `Field`: This is a doc comment on Field
> `Foo`: This doc comment will take presendence over the line comment
> `Bar`: This is a line comment will be used as the documentation

v0.22.0

Toggle v0.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improved FAQ and Screenshots section (encoredev#156)

v0.21.0

Toggle v0.21.0's commit message
cli: fix client generation

We weren't correctly propagating the method to the client.

v0.20.0

Toggle v0.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: Fix documentation typos on Custom Domains (encoredev#147)

This commit fixes a couple of small things on the custom domains documentation.

v0.19.0

Toggle v0.19.0's commit message
parser: catch API endpoints being referenced but not called

The refactoring in preparation for cron jobs accidentally made
the parser more permissive about referencing endpoints. Make it
more precise by allowing this in certain places but not others.

Fixes encoredev#142

v0.18.0

Toggle v0.18.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Change make release to use softlink for MacOS sdk (encoredev#133)

v0.17.2

Toggle v0.17.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cli/daemon/dash/dashapp: fix base64 encoding of unicode (encoredev#97)

Fixes encoredev#96

v0.16.3

Toggle v0.16.3's commit message
cli/daemon/dash/dashapp: reset method on RPC change

Fixes encoredev#74
0