diff --git a/CHANGELOG.md b/CHANGELOG.md index df825a67..e476ce2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2025.06.20 +### Added +- Version on feed title + + ## [1.0.1] - 2025.06.20 ### Added - Allow a user to block someone else's content from view diff --git a/package-lock.json b/package-lock.json index fa23e0b5..bb166eef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "timesafari", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "timesafari", - "version": "1.0.1", + "version": "1.0.2", "dependencies": { "@capacitor-community/sqlite": "6.0.2", "@capacitor-mlkit/barcode-scanning": "^6.0.0", diff --git a/package.json b/package.json index e9acc6cb..f6b721c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "timesafari", - "version": "1.0.1", + "version": "1.0.2", "description": "Time Safari Application", "author": { "name": "Time Safari Team" diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 5cf7e570..49919da9 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -12,6 +12,7 @@ Raymer * @version 1.0.0 */

{{ AppString.APP_NAME }} + {{ package.version }}

@@ -353,6 +354,7 @@ import * as serverUtil from "../libs/endorserServer"; import { logger } from "../utils/logger"; import { GiveRecordWithContactInfo } from "../interfaces/give"; import { PlatformServiceFactory } from "@/services/PlatformServiceFactory"; +import * as Package from "../../package.json"; interface Claim { claim?: Claim; // For nested claims in Verifiable Credentials @@ -443,6 +445,7 @@ export default class HomeView extends Vue { AppString = AppString; PASSKEYS_ENABLED = PASSKEYS_ENABLED; + package = Package; activeDid = ""; allContacts: Array = [];