From 5c564db69e9b7c3d8516583edbf1992e2e7858cb Mon Sep 17 00:00:00 2001 From: Dmitry Romanov Date: Wed, 30 Oct 2024 19:30:54 -0400 Subject: [PATCH 1/2] Fix component initial window size #26 --- .../src/app/pages/main-display/main-display.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firebird-ng/src/app/pages/main-display/main-display.component.ts b/firebird-ng/src/app/pages/main-display/main-display.component.ts index 5c57163..e3e9fb9 100644 --- a/firebird-ng/src/app/pages/main-display/main-display.component.ts +++ b/firebird-ng/src/app/pages/main-display/main-display.component.ts @@ -691,6 +691,9 @@ export class MainDisplayComponent implements OnInit, AfterViewInit { window.addEventListener('resize', () => { this.onRendererElementResize(); }); + + // Set proper window size now + resizeInvoker(); } private onRendererElementResize() { From 4e76628621480ae6b8149ace58689659e4ec0dc9 Mon Sep 17 00:00:00 2001 From: Dmitry Romanov Date: Wed, 30 Oct 2024 19:33:37 -0400 Subject: [PATCH 2/2] Bump version to 0.1.24 --- firebird-ng/package.json | 2 +- pyrobird/pyrobird/__about__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firebird-ng/package.json b/firebird-ng/package.json index 8d5f76c..4e00b64 100644 --- a/firebird-ng/package.json +++ b/firebird-ng/package.json @@ -1,6 +1,6 @@ { "name": "firebird", - "version": "0.1.23", + "version": "0.1.24", "scripts": { "ng": "ng", "serve": "ng serve", diff --git a/pyrobird/pyrobird/__about__.py b/pyrobird/pyrobird/__about__.py index 26507a3..b58564b 100644 --- a/pyrobird/pyrobird/__about__.py +++ b/pyrobird/pyrobird/__about__.py @@ -2,4 +2,4 @@ # This file is part of Firebird Event Display and is licensed under the LGPLv3. # See the LICENSE file in the project root for full license information. -__version__ = "0.1.23" +__version__ = "0.1.24"