You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
b3183e5: Adds the server feature for the page head so we can perform operations on the server side only. This is useful when we want to load content from sources and set their results as variables in the context so the page loads from the server with the content populated. This increases the page load speed and is helpful to perform operations that are server-side only.
e90b19f: New set_form_errors operation for form validation errors from APIs.
6a412b8: New post operation to make http requests.
8b69949: New unset_auth_token that is usually used as the "logout" operation.
2dade5e: Make column and row themable under layout variables. It also sets the default gap of gap-4 for them.
67ca6ba: Created the Plugin System. Now all applications are basically plugins which contains a name that will be used as namespace.
e203702: New authenticate operation for server and client sides. A use is considered authenticated if the auth_token is set in the server and context. A cookie is created for the authentication process.
998c5c0: New context functions for plugin development and library building for the framework: createContext, useContext.