This commit is contained in:
Vlad Kostyanetsky 2024-05-16 17:26:22 +04:00
parent ec1e25cfc1
commit 9475a6d5b8
5 changed files with 8 additions and 6 deletions

View file

@ -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

View file

@ -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",

4
package-lock.json generated
View file

@ -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"

View file

@ -1,6 +1,6 @@
{
"name": "timesheet",
"version": "1.0.0",
"version": "1.1.0",
"description": "Timesheet generator for Obsidian.",
"main": "main.js",
"scripts": {

View file

@ -1,3 +1,4 @@
{
"1.0.0": "1.5.3"
"1.0.0": "1.5.3",
"1.1.0": "1.5.3"
}