4 Commits

Author SHA1 Message Date
c0ef860bd6 3.36.2
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-12 13:38:08 +00:00
debf9829af v3.36.1
Some checks failed
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-12 13:31:56 +00:00
e27141c686 fix(): no changes 2026-01-12 13:31:56 +00:00
e346d582ee fix(applauncher): call action after setting view, not instead 2026-01-12 13:31:35 +00:00
4 changed files with 9 additions and 4 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 2026-01-12 - 3.36.1 - fix()
no changes
- No files changed in this commit
- No release required
## 2026-01-12 - 3.36.0 - feat(eco-view-peripherals) ## 2026-01-12 - 3.36.0 - feat(eco-view-peripherals)
encapsulate networkRanges as internal @state and add public getter/setter methods encapsulate networkRanges as internal @state and add public getter/setter methods

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ecobridge.xyz/catalog", "name": "@ecobridge.xyz/catalog",
"version": "3.36.0", "version": "3.36.2",
"private": false, "private": false,
"description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.", "description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@ecobridge.xyz/catalog', name: '@ecobridge.xyz/catalog',
version: '3.36.0', version: '3.36.1',
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
} }

View File

@@ -995,10 +995,9 @@ export class EcoApplauncher extends DeesElement {
if (app.view) { if (app.view) {
this.activeView = app.view; this.activeView = app.view;
this.activeViewName = app.name; this.activeViewName = app.name;
return;
} }
// Otherwise execute the action // Execute the action (runs after setting view for initialization callbacks)
if (app.action) { if (app.action) {
app.action(); app.action();
} }