From 9475a6d5b89ebc4c7ccdbbf7c08b4db8f5144e6d Mon Sep 17 00:00:00 2001 From: Vlad Kostyanetsky Date: Thu, 16 May 2024 17:26:22 +0400 Subject: [PATCH] 1.1.0 --- CHANGELOG.md | 3 ++- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c627074..dc98257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## 1.1.0 - 2024-05-16 ### Added * Tasks are now sorted by time logged (from most to least). +* The duration presentation template (for header & task) can now be configured independently. This is a fix for cases when a header or task has a zero duration, so its presentation is "()". In such cases, it's better not to display duration at all. ### Changed diff --git a/manifest.json b/manifest.json index 08ddaca..7abacec 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "timesheet", "name": "Timesheet", - "version": "1.0.0", + "version": "1.1.0", "minAppVersion": "1.5.3", "description": "Timesheet generator for tasks in daily notes.", "author": "vkostyanetsky", diff --git a/package-lock.json b/package-lock.json index 96901be..a87e55c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "timesheet", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "timesheet", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "dependencies": { "eslint": "^8.57.0" diff --git a/package.json b/package.json index cea6dc7..2cc047f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "timesheet", - "version": "1.0.0", + "version": "1.1.0", "description": "Timesheet generator for Obsidian.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 0b12b3a..f7d4bbf 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "1.0.0": "1.5.3" + "1.0.0": "1.5.3", + "1.1.0": "1.5.3" }