From 92ea27ca03ea50ec14e310d167bc822b339dd36a Mon Sep 17 00:00:00 2001 From: kylebonnici Date: Mon, 6 May 2024 11:51:28 +0200 Subject: [PATCH] Feat: add property --- Changelog.md | 4 ++++ ipc/MetaFiles.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/Changelog.md b/Changelog.md index 6a4ce8c44..5ab4e895c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,10 @@ every new version is a new major version. ## 176.0.0 - 2024-05-06 +### Added + +- Add publishTimestamp to `AppInfo.installed` + ### Fixed - NRFUtil Sandbox s installed on Apple Silicon now uses the arm64 folder and diff --git a/ipc/MetaFiles.ts b/ipc/MetaFiles.ts index 99f90df6c..e69f28f23 100644 --- a/ipc/MetaFiles.ts +++ b/ipc/MetaFiles.ts @@ -38,6 +38,7 @@ export interface AppInfo { installed?: { path: string; shasum?: string; + publishTimestamp?: string; }; }