summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2020-07-05 15:59:23 +0200
committerDave Davenport <qball@gmpclient.org>2020-07-05 15:59:23 +0200
commit0b1cef778a085097ee10ba456650a64be216472b (patch)
tree4ec3b58faef802e207fe865bddbf265174d703fb
parentfc0ea0b22e0ed1b8e2b76469e4582182e45109d3 (diff)
Update releasenotes
-rw-r--r--releasenotes/1.6.0/icons2.pngbin0 -> 123162 bytes
-rw-r--r--releasenotes/1.6.0/release-1.6.0.markdown24
2 files changed, 24 insertions, 0 deletions
diff --git a/releasenotes/1.6.0/icons2.png b/releasenotes/1.6.0/icons2.png
new file mode 100644
index 00000000..792ed187
--- /dev/null
+++ b/releasenotes/1.6.0/icons2.png
Binary files differ
diff --git a/releasenotes/1.6.0/release-1.6.0.markdown b/releasenotes/1.6.0/release-1.6.0.markdown
index b92d9333..dc8d9ddb 100644
--- a/releasenotes/1.6.0/release-1.6.0.markdown
+++ b/releasenotes/1.6.0/release-1.6.0.markdown
@@ -60,6 +60,16 @@ element {
This will make the box `element` put `element-icon` and `element-text` in a vertical list.
+or change the ordering to show icon on the right:
+
+```css
+element {
+ children: [element-text, element-icon];
+}
+```
+
+![Icons vertical](./icons2.png)
+
### Calculation support in theme format.
@@ -80,6 +90,20 @@ It supports: `-`, `+`, `/`, `*` and `%` operators and they should be surrounded
This is a very initial implementation of CSS like `@media` support. This allows you to modify the theme
based on screen size or ratio.
+We currently support: minimum width, minimum height, maximum width, maximum
+height, monitor id, minimum acpect ratio or maximum acpect ratio.
+
+
+For example, go to fullscreen mode on screens smaller then full HD:
+
+```
+@media (max-width: 1920px ) {
+ window {
+ fullscreen: true;
+ }
+}
+```
+
## Log