diff --git a/CHANGELOG.md b/CHANGELOG.md index e9e6582..c8c9d72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.11.0](https://github.com/BenShelton/library-api/compare/v0.10.1...v0.11.0) (2021-07-26) + + +### Bug Fixes + +* **core:** include DataType 3 as videos when extracting media ([5d1673f](https://github.com/BenShelton/library-api/commit/5d1673fc3ef8a9ab7ac230c8c8ccdf79d036bc98)) + + +### Features + +* **core:** add getRelatedPublications method on Publication, refactor other methods to share query ([44eb243](https://github.com/BenShelton/library-api/commit/44eb2435960646578665a1f8374712fabd58c2ee)) +* **core:** add methods to allow retrieving media from related publications ([55b04a6](https://github.com/BenShelton/library-api/commit/55b04a67b92a1e73a387eea720c905db69efba2c)), closes [#27](https://github.com/BenShelton/library-api/issues/27) +* **express:** add endpoint for related publications ([fae1815](https://github.com/BenShelton/library-api/commit/fae18159a50f97f12dc12766820fe2e25ae86867)) +* **express:** add endpoint for retrieving related media ([a790166](https://github.com/BenShelton/library-api/commit/a7901667d312eb0defd9f34b0bf0af1d8b8a3565)) +* **media:** add more menu items ([b0c1675](https://github.com/BenShelton/library-api/commit/b0c1675c900c36bf51341794dc2819be0ba8c6f1)) +* **media:** add support for svg images within publications ([b116d15](https://github.com/BenShelton/library-api/commit/b116d15ed4e98a5f5479c264dcd5b6763def164f)) +* **media:** change product name in package.json ([658e585](https://github.com/BenShelton/library-api/commit/658e585ab20872f11b22b8ffc6814877089b4265)) +* **media:** forcefully delete old media catalogs on startup ([dcb6115](https://github.com/BenShelton/library-api/commit/dcb6115db0b6c8ae0fa13b4daf0b030612725229)) +* **media:** ignore related media from some publications ([81eebdc](https://github.com/BenShelton/library-api/commit/81eebdc3559318edc24485837c5eace681bc74a9)) +* **media:** include media from related publications too ([f692e24](https://github.com/BenShelton/library-api/commit/f692e2466670378072fc7049112ab38eda5864ac)) + + +### BREAKING CHANGES + +* **media:** the app data directory has changed so everything will need to be downloaded again, +to remove the previous app data to save some disk space remove the `~/Library/Application +Support/@library-api/media` directory +* **core:** publications that are not found will silently error + + + + + ## [0.10.1](https://github.com/BenShelton/library-api/compare/v0.10.0...v0.10.1) (2021-07-17) diff --git a/lerna.json b/lerna.json index b8e609c..a4217b9 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "0.10.1", + "version": "0.11.0", "npmClient": "yarn", "packages": [ "packages/*" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 455f35f..b8c7106 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/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.11.0](https://github.com/BenShelton/library-api/compare/v0.10.1...v0.11.0) (2021-07-26) + + +### Bug Fixes + +* **core:** include DataType 3 as videos when extracting media ([5d1673f](https://github.com/BenShelton/library-api/commit/5d1673fc3ef8a9ab7ac230c8c8ccdf79d036bc98)) + + +### Features + +* **core:** add getRelatedPublications method on Publication, refactor other methods to share query ([44eb243](https://github.com/BenShelton/library-api/commit/44eb2435960646578665a1f8374712fabd58c2ee)) +* **core:** add methods to allow retrieving media from related publications ([55b04a6](https://github.com/BenShelton/library-api/commit/55b04a67b92a1e73a387eea720c905db69efba2c)), closes [#27](https://github.com/BenShelton/library-api/issues/27) + + +### BREAKING CHANGES + +* **core:** publications that are not found will silently error + + + + + # [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23) diff --git a/packages/core/package.json b/packages/core/package.json index b462069..5ed431a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@library-api/core", - "version": "0.10.0", + "version": "0.11.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 7e765d2..d216627 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.11.0](https://github.com/BenShelton/library-api/compare/v0.10.1...v0.11.0) (2021-07-26) + + +### Features + +* **express:** add endpoint for related publications ([fae1815](https://github.com/BenShelton/library-api/commit/fae18159a50f97f12dc12766820fe2e25ae86867)) +* **express:** add endpoint for retrieving related media ([a790166](https://github.com/BenShelton/library-api/commit/a7901667d312eb0defd9f34b0bf0af1d8b8a3565)) + + + + + # [0.10.0](https://github.com/BenShelton/library-api/compare/v0.9.1...v0.10.0) (2021-06-23) diff --git a/packages/express/package.json b/packages/express/package.json index 0044c4b..d1000b2 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,7 +1,7 @@ { "name": "@library-api/express", "private": true, - "version": "0.10.0", + "version": "0.11.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.10.0", + "@library-api/core": "^0.11.0", "express": "^4.17.1" }, "devDependencies": { diff --git a/packages/media/CHANGELOG.md b/packages/media/CHANGELOG.md index 785772d..e9eac60 100644 --- a/packages/media/CHANGELOG.md +++ b/packages/media/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.11.0](https://github.com/BenShelton/library-api/compare/v0.10.1...v0.11.0) (2021-07-26) + + +### Features + +* **media:** add more menu items ([b0c1675](https://github.com/BenShelton/library-api/commit/b0c1675c900c36bf51341794dc2819be0ba8c6f1)) +* **media:** add support for svg images within publications ([b116d15](https://github.com/BenShelton/library-api/commit/b116d15ed4e98a5f5479c264dcd5b6763def164f)) +* **media:** change product name in package.json ([658e585](https://github.com/BenShelton/library-api/commit/658e585ab20872f11b22b8ffc6814877089b4265)) +* **media:** forcefully delete old media catalogs on startup ([dcb6115](https://github.com/BenShelton/library-api/commit/dcb6115db0b6c8ae0fa13b4daf0b030612725229)) +* **media:** ignore related media from some publications ([81eebdc](https://github.com/BenShelton/library-api/commit/81eebdc3559318edc24485837c5eace681bc74a9)) +* **media:** include media from related publications too ([f692e24](https://github.com/BenShelton/library-api/commit/f692e2466670378072fc7049112ab38eda5864ac)) + + +### BREAKING CHANGES + +* **media:** the app data directory has changed so everything will need to be downloaded again, +to remove the previous app data to save some disk space remove the `~/Library/Application +Support/@library-api/media` directory + + + + + ## [0.10.1](https://github.com/BenShelton/library-api/compare/v0.10.0...v0.10.1) (2021-07-17) diff --git a/packages/media/package.json b/packages/media/package.json index 3584bbe..f74b22d 100644 --- a/packages/media/package.json +++ b/packages/media/package.json @@ -2,7 +2,7 @@ "name": "@library-api/media", "productName": "Library Media", "private": true, - "version": "0.10.1", + "version": "0.11.0", "description": "A cross-platform application that simplifies showing media for meetings of Jehovah's Witnesses.", "main": "app/main/dist/index.cjs", "repository": { @@ -29,7 +29,7 @@ "tsc:renderer": "vue-tsc --noEmit -p app/renderer/tsconfig.json" }, "dependencies": { - "@library-api/core": "^0.10.0", + "@library-api/core": "^0.11.0", "electron-aspect-ratio-browser-window": "^1.0.2", "electron-log": "^4.3.5", "electron-store": "^8.0.0",