8000 Releases · viewi/viewi · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: viewi/viewi

v2.6.4

15 May 14:51
Compare
Choose a tag to compare

v2.6.3

15 May 14:09
Compare
Choose a tag to compare

v2.6.2

24 Mar 09:08
Compare
Choose a tag to compare

v2.6.2

This is a fix release.

Full Changelog: v2.6.1...v2.6.2

v2.6.1

01 Mar 13:58
Compare
Choose a tag to compare

v2.6.1

  • Added friendly errors output int the terminal during the build
  • Build time expressions support:

Executes the code during the build time and injects it as raw HTML content in the place

Syntax:

<div>{# file_get_contents('my-file') #}</div>

Full Changelog: v2.6.0...v2.6.1

v2.6.0

06 Feb 08:05
Compare
Choose a tag to compare

v2.6.0

Full Changelog: v2.5.3...v2.6.0

v2.5.3

26 Jan 12:49
Compare
Choose a tag to compare

v2.5.3

Class to work with session storage on client-side

class BrowserSession
{
    public function getItem(string $key): ?string;
    public function setItem(string $key, string $value);
    public function removeItem(string $key);
    public function clear();
}

Override component implementation and template with another one. Use to replace package's components.

Example: BoxHeader will override BoxLayoutHeader. Instead of BoxLayoutHeader, BoxHeader will be rendered.

#[OverrideComponent(BoxLayoutHeader::class)]
class BoxHeader extends BaseComponent {}

Full Changelog: v2.5.2...v2.5.3

v2.5.2

14 Jan 17:13
Compare
Choose a tag to compare

v2.5.2

  • Extended packages functionality
  • Refactoring
  • Minor rendering fixes for attributes

Full Changelog: v2.5.1...v2.5.2

v2.5.1

29 Dec 09:22
Compare
Choose a tag to compare

v2.5.1

  • Extended support for package development

Full Changelog: v2.4.13...v2.5.1

v2.4.13

26 Dec 11:26
Compare
Choose a tag to compare

v2.4.13

  • Added mb_strlen.

Full Changelog: v2.4.12...v2.4.13

v2.4.12

26 Dec 11:00
Compare
Choose a tag to compare

v2.4.12

  • JavaScript setLocale fallback to English if does not exist

Full Changelog: v2.4.11...v2.4.12

0