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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+23-6Lines changed: 23 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,28 @@
1
1
# CHANGELOG.md
2
2
3
-
## 0.15.2 (unreleased)
4
-
5
-
- Fix a bug where the new geojson support in the map component would not work when the geojson was passed as a string. This impacted databases that do not support native json objects, such as SQLite.
6
-
- Improve support for geojson points (in addition to polygons and lines) in the map component.
7
-
- Add a new `size` parameter to the map component to set the size of markers.
8
-
- Add the ability to customize top navigation links and to create submenus in the `shell` component.
3
+
## 0.15.2 (2023-11-12)
4
+
5
+
- Several improvements were made to the **map** component
6
+
- Fix a bug where the new geojson support in the map component would not work when the geojson was passed as a string. This impacted databases that do not support native json objects, such as SQLite.
7
+
- Improve support for geojson points (in addition to polygons and lines) in the map component.
8
+
- Add a new `size` parameter to the map component to set the size of markers.
9
+
- Document the `height` parameter to customize the size of the map.
10
+
-`tile_source` parameter to customize the map tiles, giving completely free control over the map appearance.
11
+
-`attribution` parameter to customize or remove the small copyright information text box at the bottom of the map.
12
+
- Add the ability to customize top navigation links and to create submenus in the `shell` component.
13
+
- Postgres example:
14
+
```sql
15
+
select
16
+
'shell'as component,
17
+
'SQLPage'as title,
18
+
JSON('{ "link":"/", "title":"Home" }') as menu_item,
19
+
JSON('{ "title":"Options", "submenu":[
20
+
{"link":"1.sql","title":"Page 1"},
21
+
{"link":"2.sql","title":"Page 2"}
22
+
]}') as menu_item;
23
+
```
24
+
-*note*: this requires a database that supports json objects natively. If you are using SQLite, you can work around this limitation by using the `dynamic` component.
25
+
- Updated the embedded database to [SQLite 3.44](https://antonz.org/sqlite-3-44/), which improves performance, compatibility with other databases, and brings new date formatting functions. The new `ORDER BY` clause in aggregate functions is not supported yet in SQLPage.
0 commit comments