Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Kostyanetsky committed Mar 28, 2024
1 parent c3382e7 commit 1f19558
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 43 deletions.
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog

## 1.0.0 - 2024-03-21

### Added

# Changelog

## 1.0.1 - 2024-03-28

### Changed

* Applied sentence case to code block title for missing products.

## 1.0.0 - 2024-03-21

### Added

* Basic calculation of nutritional value of the food a user eats.
20 changes: 10 additions & 10 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"id": "foodiary",
"name": "Foodiary",
"version": "1.0.0",
"minAppVersion": "1.5.3",
"description": "Food tracker, macronutrient and calorie calculator.",
"author": "vkostyanetsky",
"authorUrl": "https://github.com/vkostyanetsky",
"isDesktopOnly": false
}
{
"id": "foodiary",
"name": "Foodiary",
"version": "1.0.1",
"minAppVersion": "1.5.3",
"description": "Food tracker, macronutrient and calorie calculator.",
"author": "vkostyanetsky",
"authorUrl": "https://github.com/vkostyanetsky",
"isDesktopOnly": false
}
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "foodiary",
"version": "1.0.0",
"description": "Food tracker plugin for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}
{
"name": "foodiary",
"version": "1.0.1",
"description": "Food tracker plugin for Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}
7 changes: 4 additions & 3 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"1.0.0": "1.5.3"
}
{
"1.0.0": "1.5.3",
"1.0.1": "1.5.3"
}

0 comments on commit 1f19558

Please sign in to comment.