Tags: fairhopeweb/encore
Tags
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.
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
docs: Fix documentation typos on Custom Domains (encoredev#147) This commit fixes a couple of small things on the custom domains documentation.
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
Change make release to use softlink for MacOS sdk (encoredev#133)
cli/daemon/dash/dashapp: fix base64 encoding of unicode (encoredev#97) Fixes encoredev#96
cli/daemon/dash/dashapp: reset method on RPC change Fixes encoredev#74
PreviousNext