Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
nameRelease 2.4

This release focuses on the improvement of the seach with Russian characters in property names and values.

Info

In this release

Use Russian or most UTF-8 characters in property names, values and in the search. 

...

Example: If a property contained a status, the HTML would be something like <span class="status-success">OK</span>, so the search query would be ugly: @Property = '<span class="status-success">OK</span>'


Stored data for display

Stored data for search

Displayed as

Search query

Comments

Before

<span class="status-success">OK</span>

(None, it didn't exist)

Status
colourGreen
titleOK

@Property = '<span class="status-success">OK</span>'

The search was ugly.

After

<span class="status-success">OK</span>

"OK"

Status
colourGreen
titleOK

@Property = 'OK'

Awesome.

I hope you understand that this is a major improvement, and will be satisfied with the implementation.

...