Skip to content

Commit e307fc7

Browse files
committed
Upgrade ote-events embed to v0.6.0 for list-view custom actions, release 0.7.0
placement:"both" custom actions (the reader's save-to-collection button) previously only rendered on cards; v0.6.0 adds the same trailing action cluster to layout="list" rows.
1 parent 1295442 commit e307fc7

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# OTE Reader changelog
22

3+
## 0.7.0 - 2026-08-14
4+
5+
### Changed
6+
7+
- Upgraded the `<ote-events>` embed to
8+
[v0.6.0](https://github.com/OpenTechEvents/ote-tools/releases/tag/embed-v0.6.0),
9+
so the "Guardar"/"En colección" action now shows directly on each row in
10+
list view (previously it only appeared in card view or after opening an
11+
event's detail), matching the same hover-to-reveal behavior cards already
12+
had.
13+
314
## 0.6.0 - 2026-08-13
415

516
### Changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(function () {
22
'use strict';
33

4-
var APP_VERSION = '0.6.0';
4+
var APP_VERSION = '0.7.0';
55
var DEMO_MODE = new URLSearchParams(location.search).get('demo') === '1' || location.pathname.replace(/\/+$/, '').endsWith('/demo');
66
var STORAGE = DEMO_MODE ? 'ote-reader-demo-state-v1' : 'ote-reader-state-v1';
77
var INSTALL_DISMISSED = 'ote-reader-install-dismissed-v1';

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ <h3>Instalación</h3>
251251
</section>
252252
</dialog>
253253

254-
<script type="module" src="https://tools.opentechevents.org/embed/v0.4.0/ote-events.js"></script>
254+
<script type="module" src="https://tools.opentechevents.org/embed/v0.6.0/ote-events.js"></script>
255255
<script src="app.js"></script>
256256
</body>
257257
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ote-reader",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"private": true,
55
"type": "module",
66
"description": "Attendee-facing PWA for subscribing to OpenTechEvents feeds.",

0 commit comments

Comments
 (0)