diff --git a/CHANGELOG.md b/CHANGELOG.md index 57ee355..2fd0062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0](https://github.com/BenShelton/library-api/compare/v0.7.0...v0.8.0) (2021-06-08) + + +### Bug Fixes + +* **media:** only check for updates after app is ready ([6d45159](https://github.com/BenShelton/library-api/commit/6d4515929fe46376ac1e47da6630abc01a630a31)) +* **media:** remove app name from window titles ([4741a7d](https://github.com/BenShelton/library-api/commit/4741a7dc7b876c1faa0191278f83f7cf9184fdad)), closes [#38](https://github.com/BenShelton/library-api/issues/38) + + +### Features + +* **core:** add categoryType to images ([997bf40](https://github.com/BenShelton/library-api/commit/997bf40f9e47092bf7c09add899811c0e891352b)) +* **media:** add more supported file extensions ([b1862c0](https://github.com/BenShelton/library-api/commit/b1862c066470f7e374e733944bcefc79f5f1a279)), closes [#45](https://github.com/BenShelton/library-api/issues/45) +* **media:** add Return to Today button on Media page ([0f346e4](https://github.com/BenShelton/library-api/commit/0f346e430ef7169368dbc95c1845014f86189972)) +* **media:** add setting to only show relevant images ([b9b62c4](https://github.com/BenShelton/library-api/commit/b9b62c4238f6efc8747f368534a47c7dc5fa08e8)), closes [#26](https://github.com/BenShelton/library-api/issues/26) +* **media:** persist state of control panel screens to avoid them reloading ([f686b10](https://github.com/BenShelton/library-api/commit/f686b101a0b991e24d09b949e3e175f4610d4034)), closes [#42](https://github.com/BenShelton/library-api/issues/42) +* **media:** update icon ([90d5b26](https://github.com/BenShelton/library-api/commit/90d5b26beb9e307f45242c023e29ab9152872296)), closes [#39](https://github.com/BenShelton/library-api/issues/39) +* **media/developer:** adds store communication between renderer and main processes ([2f7ba05](https://github.com/BenShelton/library-api/commit/2f7ba05ebfbf9d8497bee9864d765ff58879c14c)) + + + + + # [0.7.0](https://github.com/BenShelton/library-api/compare/v0.6.2...v0.7.0) (2021-06-01) diff --git a/lerna.json b/lerna.json index 3bf26e8..10f5f3d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.7.0", + "version": "0.8.0", "npmClient": "yarn", "packages": [ "packages/*" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 298e9b8..4d39430 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0](https://github.com/BenShelton/library-api/compare/v0.7.0...v0.8.0) (2021-06-08) + + +### Features + +* **core:** add categoryType to images ([997bf40](https://github.com/BenShelton/library-api/commit/997bf40f9e47092bf7c09add899811c0e891352b)) + + + + + # [0.7.0](https://github.com/BenShelton/library-api/compare/v0.6.2...v0.7.0) (2021-06-01) **Note:** Version bump only for package @library-api/core diff --git a/packages/core/package.json b/packages/core/package.json index e25148a..0720e66 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@library-api/core", - "version": "0.7.0", + "version": "0.8.0", "description": "Core tools for use with @library-api packages.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 2c2e69f..b71107a 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0](https://github.com/BenShelton/library-api/compare/v0.7.0...v0.8.0) (2021-06-08) + +**Note:** Version bump only for package @library-api/express + + + + + # [0.7.0](https://github.com/BenShelton/library-api/compare/v0.6.2...v0.7.0) (2021-06-01) **Note:** Version bump only for package @library-api/express diff --git a/packages/express/package.json b/packages/express/package.json index af2057c..72699f7 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,7 +1,7 @@ { "name": "@library-api/express", "private": true, - "version": "0.7.0", + "version": "0.8.0", "description": "An Express API for easily accessing information related to meetings and publications of Jehovah's Witnesses.", "main": "dist/server.js", "types": "dist/server.d.ts", @@ -29,7 +29,7 @@ "tsc": "tsc --noEmit" }, "dependencies": { - "@library-api/core": "^0.7.0", + "@library-api/core": "^0.8.0", "express": "^4.17.1" }, "devDependencies": { diff --git a/packages/media/CHANGELOG.md b/packages/media/CHANGELOG.md index 2efadc0..f849df9 100644 --- a/packages/media/CHANGELOG.md +++ b/packages/media/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0](https://github.com/BenShelton/library-api/compare/v0.7.0...v0.8.0) (2021-06-08) + + +### Bug Fixes + +* **media:** only check for updates after app is ready ([6d45159](https://github.com/BenShelton/library-api/commit/6d4515929fe46376ac1e47da6630abc01a630a31)) +* **media:** remove app name from window titles ([4741a7d](https://github.com/BenShelton/library-api/commit/4741a7dc7b876c1faa0191278f83f7cf9184fdad)), closes [#38](https://github.com/BenShelton/library-api/issues/38) + + +### Features + +* **media:** add more supported file extensions ([b1862c0](https://github.com/BenShelton/library-api/commit/b1862c066470f7e374e733944bcefc79f5f1a279)), closes [#45](https://github.com/BenShelton/library-api/issues/45) +* **media:** add Return to Today button on Media page ([0f346e4](https://github.com/BenShelton/library-api/commit/0f346e430ef7169368dbc95c1845014f86189972)) +* **media:** add setting to only show relevant images ([b9b62c4](https://github.com/BenShelton/library-api/commit/b9b62c4238f6efc8747f368534a47c7dc5fa08e8)), closes [#26](https://github.com/BenShelton/library-api/issues/26) +* **media:** persist state of control panel screens to avoid them reloading ([f686b10](https://github.com/BenShelton/library-api/commit/f686b101a0b991e24d09b949e3e175f4610d4034)), closes [#42](https://github.com/BenShelton/library-api/issues/42) +* **media:** update icon ([90d5b26](https://github.com/BenShelton/library-api/commit/90d5b26beb9e307f45242c023e29ab9152872296)), closes [#39](https://github.com/BenShelton/library-api/issues/39) +* **media/developer:** adds store communication between renderer and main processes ([2f7ba05](https://github.com/BenShelton/library-api/commit/2f7ba05ebfbf9d8497bee9864d765ff58879c14c)) + + + + + # [0.7.0](https://github.com/BenShelton/library-api/compare/v0.6.2...v0.7.0) (2021-06-01) diff --git a/packages/media/package.json b/packages/media/package.json index b5b5ef2..cd02fe3 100644 --- a/packages/media/package.json +++ b/packages/media/package.json @@ -1,7 +1,7 @@ { "name": "@library-api/media", "private": true, - "version": "0.7.0", + "version": "0.8.0", "description": "A cross-platform application that simplifies showing media for meetings of Jehovah's Witnesses.", "main": "app/main/dist/index.cjs", "repository": { @@ -28,7 +28,7 @@ "tsc:renderer": "vue-tsc --noEmit -p app/renderer/tsconfig.json" }, "dependencies": { - "@library-api/core": "^0.7.0", + "@library-api/core": "^0.8.0", "electron-aspect-ratio-browser-window": "^1.0.2", "electron-log": "^4.3.5", "electron-store": "^8.0.0",