From 0335ebbfdc4cd48662b95c94bfc07260aeae1e6f Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 31 Jul 2024 15:03:25 +1200 Subject: [PATCH 01/36] Add copy to clipboard component --- src/components/CopyToClipboard.vue | 82 ++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/components/CopyToClipboard.vue diff --git a/src/components/CopyToClipboard.vue b/src/components/CopyToClipboard.vue new file mode 100644 index 00000000..59babc35 --- /dev/null +++ b/src/components/CopyToClipboard.vue @@ -0,0 +1,82 @@ + + + + + From 2e65f759cc58b8f7c6060f4e9247880e787f7ea4 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 31 Jul 2024 15:04:20 +1200 Subject: [PATCH 02/36] Add copy to clipboard button in connectivity info --- src/components/ConnectivityInfo.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index d4120bf8..682490e6 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -19,6 +19,8 @@
{{ entry.featureId }}
+ +
{ return str.replace(/\w\S*/g, (t) => { @@ -213,6 +216,7 @@ export default { ElIconArrowDown, ElIconWarning, ExternalResourceCard, + CopyToClipboard, }, props: { entry: { @@ -248,6 +252,7 @@ export default { }, componentsWithDatasets: [], uberons: [{ id: undefined, name: undefined }], + copyContent: 'Test copy content', } }, watch: { From e50f8b7a6c1dc9b69cc7fac1c994580d0db28294 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Thu, 1 Aug 2024 12:28:36 +1200 Subject: [PATCH 03/36] Update copy clipboard button style --- src/components/CopyToClipboard.vue | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/src/components/CopyToClipboard.vue b/src/components/CopyToClipboard.vue index 59babc35..a763595d 100644 --- a/src/components/CopyToClipboard.vue +++ b/src/components/CopyToClipboard.vue @@ -43,7 +43,7 @@ export default { } - + + From 591227d9a774ff04094826a81f9e97cec00a5e50 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Thu, 1 Aug 2024 17:49:04 +1200 Subject: [PATCH 10/36] Import CopyToClipboard from map-utilities --- src/components/ConnectivityInfo.vue | 3 +- src/components/CopyToClipboard.vue | 104 ---------------------------- src/components/DatasetCard.vue | 3 +- 3 files changed, 4 insertions(+), 106 deletions(-) delete mode 100644 src/components/CopyToClipboard.vue diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index e757852f..1539826a 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -193,7 +193,8 @@ import { } from 'element-plus' import ExternalResourceCard from './ExternalResourceCard.vue' import EventBus from './EventBus.js' -import CopyToClipboard from './CopyToClipboard.vue' +import { CopyToClipboard } from '@abi-software/map-utilities'; +import '@abi-software/map-utilities/dist/style.css' const titleCase = (str) => { return str.replace(/\w\S*/g, (t) => { diff --git a/src/components/CopyToClipboard.vue b/src/components/CopyToClipboard.vue deleted file mode 100644 index cbfe6a12..00000000 --- a/src/components/CopyToClipboard.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index 0f967c6b..3e34013c 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -68,7 +68,8 @@ import EventBus from './EventBus.js' import speciesMap from './species-map.js' import ImageGallery from './ImageGallery.vue' import MissingImage from '@/../assets/missing-image.svg' -import CopyToClipboard from './CopyToClipboard.vue' +import { CopyToClipboard } from '@abi-software/map-utilities'; +import '@abi-software/map-utilities/dist/style.css' export default { data() { From 86210f57033de3fdf0109bf5ce3382de74ed3775 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 11:15:20 +1200 Subject: [PATCH 11/36] Remove trailing space --- src/components/SidebarContent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SidebarContent.vue b/src/components/SidebarContent.vue index b30472cb..6f7dbc3f 100644 --- a/src/components/SidebarContent.vue +++ b/src/components/SidebarContent.vue @@ -250,7 +250,7 @@ export default { }, searchAlgolia(filters, query = '') { // Algolia search - + this.loadingCards = true this.algoliaClient .anatomyInSearch(getFilters(filters), query) From 97034289f8eef81ed26e9b674171d84b1ba18978 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 11:29:41 +1200 Subject: [PATCH 12/36] Add copy to clipboard button from map-utilities and update button placement --- package-lock.json | 19 ++++++++++++++++--- package.json | 1 + src/components/ConnectivityInfo.vue | 20 ++++++++++++++++++-- src/components/DatasetCard.vue | 22 ++++++++++++++++++---- 4 files changed, 53 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3a852603..2891bb2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "2.3.1", "dependencies": { "@abi-software/gallery": "^1.1.1", + "@abi-software/map-utilities": "^1.0.1-beta.0", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", @@ -65,6 +66,18 @@ "vue": "^3.3.13" } }, + "node_modules/@abi-software/map-utilities": { + "version": "1.0.1-beta.0", + "resolved": "https://registry.npmjs.org/@abi-software/map-utilities/-/map-utilities-1.0.1-beta.0.tgz", + "integrity": "sha512-7n8/oLAq5G/RRPFB+TqaU8CAilTz8uFfVVvwdFSfsGMJHMwbIP4bCXv+BnypMDTSjVv56qHB6hzZYbUjiI6a4g==", + "dependencies": { + "@abi-software/svg-sprite": "^1.0.0", + "@element-plus/icons-vue": "^2.3.1", + "element-plus": "^2.7.3", + "mitt": "^3.0.1", + "vue": "^3.4.21" + } + }, "node_modules/@abi-software/svg-sprite": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@abi-software/svg-sprite/-/svg-sprite-1.0.0.tgz", @@ -3239,9 +3252,9 @@ "dev": true }, "node_modules/element-plus": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.6.3.tgz", - "integrity": "sha512-U4L/mr+1r+EmAUYUHrs0V/8hHMdBGP07rPymSC72LZCN4jK1UwygQYICegTQ5us4mxeqBvW6wfoEfo003fwCqw==", + "version": "2.7.8", + "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.7.8.tgz", + "integrity": "sha512-h6dx2XihAbQaud0v+6O7Fy0b0G3YNplNVH7QnK3csTcvQd4y4raiyMRQpf9EKbRbTMdNrFsqAZrs9ok9DMcJHg==", "dependencies": { "@ctrl/tinycolor": "^3.4.1", "@element-plus/icons-vue": "^2.3.1", diff --git a/package.json b/package.json index b4ee5be8..36460b77 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ }, "dependencies": { "@abi-software/gallery": "^1.1.1", + "@abi-software/map-utilities": "^1.0.1-beta.0", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 1539826a..586b8df3 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -19,8 +19,6 @@
{{ entry.featureId }}
- -
+ + +
+ +
@@ -674,4 +677,17 @@ export default { .tooltip-container::after { top: 99.4%; } + +.float-button-container { + position: absolute; + bottom: 8px; + right: 16px; + opacity: 0; + visibility: hidden; + + .main:hover & { + opacity: 1; + visibility: visible; + } +} diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index 3e34013c..cd240c82 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -46,10 +46,11 @@ @categoryChanged="categoryChanged" /> - -
- -
+ + +
+ +
@@ -390,4 +391,17 @@ export default { .loading-icon :deep(.el-loading-spinner .path) { stroke: $app-primary-color; } + +.float-button-container { + position: absolute; + bottom: 8px; + right: 16px; + opacity: 0; + visibility: hidden; + + .card:hover & { + opacity: 1; + visibility: visible; + } +} From fb2426a19a1f8e0b8201e3e43c097e10249db3fc Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 12:06:04 +1200 Subject: [PATCH 13/36] Update code format --- src/components/ConnectivityInfo.vue | 2 +- src/components/DatasetCard.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 586b8df3..0a8d3e50 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -197,7 +197,7 @@ import { import ExternalResourceCard from './ExternalResourceCard.vue' import EventBus from './EventBus.js' import { CopyToClipboard } from '@abi-software/map-utilities'; -import '@abi-software/map-utilities/dist/style.css' +import '@abi-software/map-utilities/dist/style.css'; const titleCase = (str) => { return str.replace(/\w\S*/g, (t) => { diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index cd240c82..65f5ec2c 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -70,7 +70,7 @@ import speciesMap from './species-map.js' import ImageGallery from './ImageGallery.vue' import MissingImage from '@/../assets/missing-image.svg' import { CopyToClipboard } from '@abi-software/map-utilities'; -import '@abi-software/map-utilities/dist/style.css' +import '@abi-software/map-utilities/dist/style.css'; export default { data() { From fe2f52ed513386b353a510416d2f6f1a469066da Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 12:08:53 +1200 Subject: [PATCH 14/36] 2.3.2-beta.0 --- CHANGELOG.md | 298 +++++++++++++++++++++++----------------------- package-lock.json | 4 +- package.json | 2 +- 3 files changed, 152 insertions(+), 152 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc24d32a..7c143f74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,281 +7,281 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) +## [v2.3.2-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.1-beta.0...v2.3.2-beta.0) ### Merged -- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) +- Replace global variable with markRaw [`#82`](https://github.com/akhuoa/map-sidebar/pull/82) +- Fix connectivity tab close button style [`#78`](https://github.com/akhuoa/map-sidebar/pull/78) +- Display connectivity info without obstructing current map view [`#74`](https://github.com/akhuoa/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) ### Commits -- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) +- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) -## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 - -### Merged - -- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) -- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) -- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) +## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) -- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) +- Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) diff --git a/package-lock.json b/package-lock.json index 2891bb2c..4a9f4500 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.1", + "version": "2.3.2-beta.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@abi-software/map-side-bar", - "version": "2.3.1", + "version": "2.3.2-beta.0", "dependencies": { "@abi-software/gallery": "^1.1.1", "@abi-software/map-utilities": "^1.0.1-beta.0", diff --git a/package.json b/package.json index 36460b77..256aa551 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.1", + "version": "2.3.2-beta.0", "files": [ "dist/*", "src/*", From 947446c8fcbac98eb48204808f3c4a0a9a237938 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 12:21:21 +1200 Subject: [PATCH 15/36] Update Changelog --- CHANGELOG.md | 292 ++++++++++++++++++++++++++++----------------------- 1 file changed, 159 insertions(+), 133 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c143f74..d3dd3ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,32 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) +## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) + +### Merged + +- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) + +### Commits + +- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) + +## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 + +### Merged + +- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) + +### Commits + +- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) + ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits @@ -33,255 +59,255 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) - Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) From a1babcd3bd93c3b64b0cb4ef47ed5b7cf992f805 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 12:22:16 +1200 Subject: [PATCH 16/36] Update Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3dd3ac1..1054194c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -310,4 +310,4 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) - Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) From 72acd10b9361eb9b77f8b386694da34a08176f8a Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 16:17:06 +1200 Subject: [PATCH 17/36] Update copy to clipboard content with computed value --- src/components/ConnectivityInfo.vue | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 0a8d3e50..24ca6c25 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -177,7 +177,7 @@
- +
@@ -256,12 +256,8 @@ export default { }, componentsWithDatasets: [], uberons: [{ id: undefined, name: undefined }], - copyContent: '', } }, - mounted: function () { - this.updateCopyContent(); - }, watch: { availableAnatomyFacets: { handler: function (val) { @@ -272,6 +268,9 @@ export default { }, }, computed: { + updatedCopyContent: function () { + return this.getUpdateCopyContent(); + }, resources: function () { let resources = []; if (this.entry && this.entry.hyperlinks) { @@ -359,7 +358,11 @@ export default { // connected to flatmapvuer > moveMap(featureIds) function this.$emit('show-connectivity', featureIds); }, - updateCopyContent: function () { + getUpdateCopyContent: function () { + if (!this.entry) { + return ''; + } + const contentArray = []; // Title @@ -406,7 +409,7 @@ export default { contentArray.push(destinations); } - this.copyContent = contentArray.join('\n\n'); + return contentArray.join('\n\n'); }, }, } From e3a225bba08da9008fc8f140cd6e8c6c322b29f4 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 2 Aug 2024 16:25:42 +1200 Subject: [PATCH 18/36] Add PubMed URL in copy clipboard --- src/components/ConnectivityInfo.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 24ca6c25..02e20586 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -377,6 +377,21 @@ export default { contentArray.push(this.provSpeciesDescription); } + // PubMed URL + if (this.resources?.length) { + const pubmedContents = []; + this.resources.forEach((resource) => { + let pubmedContent = ''; + if (resource.id === 'pubmed') { + pubmedContent += 'PubMed URL:'; + pubmedContent += '\n'; + pubmedContent += resource.url; + } + pubmedContents.push(pubmedContent); + }); + contentArray.push(pubmedContents.join('\n\n')); + } + // entry.paths if (this.entry.paths) { contentArray.push(this.entry.paths); From 1716e8d89e5360256f6f19baf2912c146a67b7f0 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 5 Aug 2024 10:22:07 +1200 Subject: [PATCH 19/36] Update dataset card copy clipboard with dataset id and doi --- src/components/DatasetCard.vue | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index 65f5ec2c..00bbc13b 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -238,6 +238,7 @@ export default { this.dataLocation = `https://sparc.science/datasets/${data.id}?type=dataset` this.getBiolucidaInfo(this.discoverId) this.loading = false + this.updateCopyContent(); }) .catch(() => { //set defaults if we hit an error @@ -283,6 +284,26 @@ export default { contentArray.push(this.samples); } + // DOI + if (this.entry.doi) { + contentArray.push('DOI: ' + this.entry.doi); + } + + // Dataset ID + if (this.entry.datasetId) { + contentArray.push('Dataset ID: ' + this.entry.datasetId); + } + + // Dataset URL + if (this.dataLocation) { + contentArray.push('Dataset URL: ' + this.dataLocation); + } + + // Dataset version + if (this.version) { + contentArray.push('Dataset version: ' + this.version); + } + this.copyContent = contentArray.join('\n\n'); }, }, From d95812969ef8a76b2938b915458464787a2c6353 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 5 Aug 2024 11:44:39 +1200 Subject: [PATCH 20/36] Update map-utilities for copy-to-clipboard update --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4a9f4500..701df673 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "2.3.2-beta.0", "dependencies": { "@abi-software/gallery": "^1.1.1", - "@abi-software/map-utilities": "^1.0.1-beta.0", + "@abi-software/map-utilities": "^1.0.1-beta.1", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", @@ -67,9 +67,9 @@ } }, "node_modules/@abi-software/map-utilities": { - "version": "1.0.1-beta.0", - "resolved": "https://registry.npmjs.org/@abi-software/map-utilities/-/map-utilities-1.0.1-beta.0.tgz", - "integrity": "sha512-7n8/oLAq5G/RRPFB+TqaU8CAilTz8uFfVVvwdFSfsGMJHMwbIP4bCXv+BnypMDTSjVv56qHB6hzZYbUjiI6a4g==", + "version": "1.0.1-beta.1", + "resolved": "https://registry.npmjs.org/@abi-software/map-utilities/-/map-utilities-1.0.1-beta.1.tgz", + "integrity": "sha512-bChPtzcCBwFOlIcvtE9H217PlBNRJtkXW7zHgZCJOwiqhT5N7isOhUTU9GgE4wsX9nyC+7KVPik3bfftMSauqw==", "dependencies": { "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", diff --git a/package.json b/package.json index 256aa551..8db466a4 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ }, "dependencies": { "@abi-software/gallery": "^1.1.1", - "@abi-software/map-utilities": "^1.0.1-beta.0", + "@abi-software/map-utilities": "^1.0.1-beta.1", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", From d514a857440642d1bb6ff9c7c82f298ea0e64ca8 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 5 Aug 2024 11:44:52 +1200 Subject: [PATCH 21/36] 2.3.2-beta.1 --- CHANGELOG.md | 304 ++++++++++++++++++++++------------------------ package-lock.json | 4 +- package.json | 2 +- 3 files changed, 146 insertions(+), 164 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1054194c..02a321ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v2.3.2-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.1-beta.0...v2.3.2-beta.0) +## [v2.3.2-beta.1](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.0...v2.3.2-beta.1) + +### Commits + +- Update Changelog [`947446c`](https://github.com/akhuoa/map-sidebar/commit/947446c8fcbac98eb48204808f3c4a0a9a237938) +- Update dataset card copy clipboard with dataset id and doi [`1716e8d`](https://github.com/akhuoa/map-sidebar/commit/1716e8d89e5360256f6f19baf2912c146a67b7f0) +- Update copy to clipboard content with computed value [`72acd10`](https://github.com/akhuoa/map-sidebar/commit/72acd10b9361eb9b77f8b386694da34a08176f8a) + +## [v2.3.2-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.1-beta.0...v2.3.2-beta.0) - 2024-08-02 ### Merged @@ -25,32 +33,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) -## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) - -### Merged - -- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) - -### Commits - -- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) - -## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 - -### Merged - -- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) -- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) -- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) - -### Commits - -- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) -- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits @@ -59,255 +41,255 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) diff --git a/package-lock.json b/package-lock.json index 701df673..bc84c946 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.0", + "version": "2.3.2-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.0", + "version": "2.3.2-beta.1", "dependencies": { "@abi-software/gallery": "^1.1.1", "@abi-software/map-utilities": "^1.0.1-beta.1", diff --git a/package.json b/package.json index 8db466a4..95b62012 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.0", + "version": "2.3.2-beta.1", "files": [ "dist/*", "src/*", From e05733805ae07d4541f266dd1e71d18d749ed0f6 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 5 Aug 2024 12:00:10 +1200 Subject: [PATCH 22/36] Update changelog --- CHANGELOG.md | 292 +++++++++++++++++++++++++++------------------------ 1 file changed, 156 insertions(+), 136 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02a321ea..1c4bbab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,269 +27,289 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) +## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) + +### Merged + +- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) + +### Commits + +- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) + +## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 + +### Merged + +- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) + ### Commits -- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) - Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) From d376699d3672793b5dc6d35bf05fa419d428f9fe Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 5 Aug 2024 12:01:36 +1200 Subject: [PATCH 23/36] Update chagelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c4bbab2..dd1b709b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -312,4 +312,4 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) - Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) From 3162e3c3c794192adc8bc73fa2cbe54cd7e8b3a0 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Tue, 6 Aug 2024 14:09:40 +1200 Subject: [PATCH 24/36] Update formatted copy-to-clipboard content for connectivity --- src/components/ConnectivityInfo.vue | 34 ++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 02e20586..38c12ef8 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -367,14 +367,14 @@ export default { // Title if (this.entry.title) { - contentArray.push(capitalise(this.entry.title)); + contentArray.push(`

${capitalise(this.entry.title)}

`); } else { - contentArray.push(this.entry.featureId); + contentArray.push(`

${this.entry.featureId}

`); } // Description if (this.entry.provenanceTaxonomyLabel?.length) { - contentArray.push(this.provSpeciesDescription); + contentArray.push(`

${this.provSpeciesDescription}

`); } // PubMed URL @@ -383,48 +383,48 @@ export default { this.resources.forEach((resource) => { let pubmedContent = ''; if (resource.id === 'pubmed') { - pubmedContent += 'PubMed URL:'; + pubmedContent += `
PubMed URL:
`; pubmedContent += '\n'; - pubmedContent += resource.url; + pubmedContent += `

${resource.url}

`; } pubmedContents.push(pubmedContent); }); - contentArray.push(pubmedContents.join('\n\n')); + contentArray.push(pubmedContents.join('\n\n
')); } // entry.paths if (this.entry.paths) { - contentArray.push(this.entry.paths); + contentArray.push(`
${this.entry.paths}
`); } // Origins if (this.entry.origins?.length) { - contentArray.push('Origin'); + contentArray.push('
Origin
'); const origins = this.entry.origins - .map((item) => capitalise(item)) + .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(origins); + contentArray.push(`
      ${origins}
    `); } // Components if (this.entry.components?.length) { - contentArray.push('Components'); + contentArray.push('
    Components
    '); const components = this.entry.components - .map((item) => capitalise(item)) + .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(components); + contentArray.push(`
      ${components}
    `); } // Destination if (this.entry.destinations?.length) { - contentArray.push('Destination'); + contentArray.push('
    Destination
    '); const destinations = this.entry.destinations - .map((item) => capitalise(item)) + .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(destinations); + contentArray.push(`
      ${destinations}
    `); } - return contentArray.join('\n\n'); + return contentArray.join('\n\n
    '); }, }, } From 93e98f4fa3850a8f3321f2889e310d8f5a2b6366 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Tue, 6 Aug 2024 14:39:52 +1200 Subject: [PATCH 25/36] Format dataset card copytoclipboard content --- src/components/DatasetCard.vue | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index 00bbc13b..44bfcb3d 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -266,7 +266,7 @@ export default { // Title if (this.entry.name) { - contentArray.push(this.entry.name); + contentArray.push(`

    ${this.entry.name}

    `); } // Contributors and Publish Date @@ -276,35 +276,47 @@ export default { if (this.entry.publishDate) { details += ` (${this.publishYear})`; } - contentArray.push(details); + contentArray.push(`

    ${details}

    `); } // samples if (this.samples) { - contentArray.push(this.samples); + contentArray.push(`

    ${this.samples}

    `); } // DOI if (this.entry.doi) { - contentArray.push('DOI: ' + this.entry.doi); + let doiContent = `DOI:`; + doiContent += `\n
    `; + doiContent += `${this.entry.doi}`; + contentArray.push(`

    ${doiContent}

    `); } // Dataset ID if (this.entry.datasetId) { - contentArray.push('Dataset ID: ' + this.entry.datasetId); + let datasetIdContent = `Dataset ID:`; + datasetIdContent += `\n
    `; + datasetIdContent += `${this.entry.datasetId}`; + contentArray.push(`

    ${datasetIdContent}

    `); } // Dataset URL if (this.dataLocation) { - contentArray.push('Dataset URL: ' + this.dataLocation); + let dataLocationContent = `Dataset URL:`; + dataLocationContent += `\n
    `; + dataLocationContent += `${this.dataLocation}`; + contentArray.push(`

    ${dataLocationContent}

    `); } // Dataset version if (this.version) { - contentArray.push('Dataset version: ' + this.version); + let versionContent = `Dataset version:`; + versionContent += `\n
    `; + versionContent += `${this.version}`; + contentArray.push(`

    ${versionContent}

    `); } - this.copyContent = contentArray.join('\n\n'); + this.copyContent = contentArray.join('\n\n
    '); }, }, created: function () { From 2f265a134665c5ab3897fba79623ea037d277930 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 7 Aug 2024 11:27:18 +1200 Subject: [PATCH 26/36] Update copy clipboard formatting --- src/components/ConnectivityInfo.vue | 32 ++++++++++++++++++---------- src/components/DatasetCard.vue | 33 ++++++++++++++++------------- 2 files changed, 39 insertions(+), 26 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index 38c12ef8..d28f64c7 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -365,16 +365,19 @@ export default { const contentArray = []; + // Use
    instead of

    ..

    or

    + // to avoid default formatting on font size and margin + // Title if (this.entry.title) { - contentArray.push(`

    ${capitalise(this.entry.title)}

    `); + contentArray.push(`
    ${capitalise(this.entry.title)}
    `); } else { - contentArray.push(`

    ${this.entry.featureId}

    `); + contentArray.push(`
    ${this.entry.featureId}
    `); } // Description if (this.entry.provenanceTaxonomyLabel?.length) { - contentArray.push(`

    ${this.provSpeciesDescription}

    `); + contentArray.push(`
    ${this.provSpeciesDescription}
    `); } // PubMed URL @@ -383,9 +386,9 @@ export default { this.resources.forEach((resource) => { let pubmedContent = ''; if (resource.id === 'pubmed') { - pubmedContent += `
    PubMed URL:
    `; + pubmedContent += `
    PubMed URL:
    `; pubmedContent += '\n'; - pubmedContent += `

    ${resource.url}

    `; + pubmedContent += ``; } pubmedContents.push(pubmedContent); }); @@ -399,29 +402,36 @@ export default { // Origins if (this.entry.origins?.length) { - contentArray.push('
    Origin
    '); + let originsContent = '
    Origin
    '; const origins = this.entry.origins .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(`
      ${origins}
    `); + originsContent += '\n'; + originsContent += `
      ${origins}
    `; + contentArray.push(originsContent); } // Components if (this.entry.components?.length) { - contentArray.push('
    Components
    '); + contentArray.push(); + let componentsContent = '
    Components
    '; const components = this.entry.components .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(`
      ${components}
    `); + componentsContent += '\n'; + componentsContent += `
      ${components}
    `; + contentArray.push(componentsContent); } // Destination if (this.entry.destinations?.length) { - contentArray.push('
    Destination
    '); + let destinationsContent = '
    Destination
    '; const destinations = this.entry.destinations .map((item) => `
  • ${capitalise(item)}
  • `) .join('\n'); - contentArray.push(`
      ${destinations}
    `); + destinationsContent += '\n'; + destinationsContent += `
      ${destinations}
    `; + contentArray.push(destinationsContent); } return contentArray.join('\n\n
    '); diff --git a/src/components/DatasetCard.vue b/src/components/DatasetCard.vue index 44bfcb3d..ddd079b0 100644 --- a/src/components/DatasetCard.vue +++ b/src/components/DatasetCard.vue @@ -264,9 +264,12 @@ export default { updateCopyContent: function () { const contentArray = []; + // Use
    instead of

    ..

    or

    + // to avoid default formatting on font size and margin + // Title if (this.entry.name) { - contentArray.push(`

    ${this.entry.name}

    `); + contentArray.push(`
    ${this.entry.name}
    `); } // Contributors and Publish Date @@ -276,44 +279,44 @@ export default { if (this.entry.publishDate) { details += ` (${this.publishYear})`; } - contentArray.push(`

    ${details}

    `); + contentArray.push(`
    ${details}
    `); } // samples if (this.samples) { - contentArray.push(`

    ${this.samples}

    `); + contentArray.push(`
    ${this.samples}
    `); } // DOI if (this.entry.doi) { - let doiContent = `DOI:`; - doiContent += `\n
    `; + let doiContent = `
    DOI:
    `; + doiContent += `\n`; doiContent += `${this.entry.doi}`; - contentArray.push(`

    ${doiContent}

    `); + contentArray.push(`
    ${doiContent}
    `); } // Dataset ID if (this.entry.datasetId) { - let datasetIdContent = `Dataset ID:`; - datasetIdContent += `\n
    `; + let datasetIdContent = `
    Dataset ID:
    `; + datasetIdContent += `\n`; datasetIdContent += `${this.entry.datasetId}`; - contentArray.push(`

    ${datasetIdContent}

    `); + contentArray.push(`
    ${datasetIdContent}
    `); } // Dataset URL if (this.dataLocation) { - let dataLocationContent = `Dataset URL:`; - dataLocationContent += `\n
    `; + let dataLocationContent = `
    Dataset URL:
    `; + dataLocationContent += `\n`; dataLocationContent += `${this.dataLocation}`; - contentArray.push(`

    ${dataLocationContent}

    `); + contentArray.push(`
    ${dataLocationContent}
    `); } // Dataset version if (this.version) { - let versionContent = `Dataset version:`; - versionContent += `\n
    `; + let versionContent = `
    Dataset version:
    `; + versionContent += `\n`; versionContent += `${this.version}`; - contentArray.push(`

    ${versionContent}

    `); + contentArray.push(`
    ${versionContent}
    `); } this.copyContent = contentArray.join('\n\n
    '); From 363318208bcdb299c44eaf250f1bbcf6d73becf6 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 7 Aug 2024 11:59:25 +1200 Subject: [PATCH 27/36] Update map-utilities beta for copy-to-clipboard update --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index bc84c946..3f637f9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "2.3.2-beta.1", "dependencies": { "@abi-software/gallery": "^1.1.1", - "@abi-software/map-utilities": "^1.0.1-beta.1", + "@abi-software/map-utilities": "^1.0.1-beta.2", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", @@ -67,9 +67,9 @@ } }, "node_modules/@abi-software/map-utilities": { - "version": "1.0.1-beta.1", - "resolved": "https://registry.npmjs.org/@abi-software/map-utilities/-/map-utilities-1.0.1-beta.1.tgz", - "integrity": "sha512-bChPtzcCBwFOlIcvtE9H217PlBNRJtkXW7zHgZCJOwiqhT5N7isOhUTU9GgE4wsX9nyC+7KVPik3bfftMSauqw==", + "version": "1.0.1-beta.2", + "resolved": "https://registry.npmjs.org/@abi-software/map-utilities/-/map-utilities-1.0.1-beta.2.tgz", + "integrity": "sha512-GButE0Iw39jHcBofDz1WbSYn8RySTTaRlAdAYBARThundZdySl2W4wJUFAW3hpy93hd0FZfmQBR/+Q43Jzfuxg==", "dependencies": { "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", diff --git a/package.json b/package.json index 95b62012..a6a1ac96 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ }, "dependencies": { "@abi-software/gallery": "^1.1.1", - "@abi-software/map-utilities": "^1.0.1-beta.1", + "@abi-software/map-utilities": "^1.0.1-beta.2", "@abi-software/svg-sprite": "^1.0.0", "@element-plus/icons-vue": "^2.3.1", "algoliasearch": "^4.10.5", From cffa173e4c266ebb5d73fa811ebfbc2b701f2c79 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 7 Aug 2024 11:59:47 +1200 Subject: [PATCH 28/36] 2.3.2-beta.2 --- CHANGELOG.md | 304 ++++++++++++++++++++++------------------------ package-lock.json | 4 +- package.json | 2 +- 3 files changed, 149 insertions(+), 161 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd1b709b..e94a7499 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v2.3.2-beta.1](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.0...v2.3.2-beta.1) +## [v2.3.2-beta.2](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.1...v2.3.2-beta.2) + +### Commits + +- Update changelog [`e057338`](https://github.com/akhuoa/map-sidebar/commit/e05733805ae07d4541f266dd1e71d18d749ed0f6) +- Update copy clipboard formatting [`2f265a1`](https://github.com/akhuoa/map-sidebar/commit/2f265a134665c5ab3897fba79623ea037d277930) +- Update formatted copy-to-clipboard content for connectivity [`3162e3c`](https://github.com/akhuoa/map-sidebar/commit/3162e3c3c794192adc8bc73fa2cbe54cd7e8b3a0) + +## [v2.3.2-beta.1](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.0...v2.3.2-beta.1) - 2024-08-05 ### Commits @@ -27,289 +35,269 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) -## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) - -### Merged - -- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) - -### Commits - -- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) - -## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 - -### Merged - -- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) -- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) -- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) - ### Commits -- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) diff --git a/package-lock.json b/package-lock.json index 3f637f9c..51a36d0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.1", + "version": "2.3.2-beta.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.1", + "version": "2.3.2-beta.2", "dependencies": { "@abi-software/gallery": "^1.1.1", "@abi-software/map-utilities": "^1.0.1-beta.2", diff --git a/package.json b/package.json index a6a1ac96..cda63b1f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.1", + "version": "2.3.2-beta.2", "files": [ "dist/*", "src/*", From ef39a49fb083988c87ac454ca9f11170e8d874a9 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Wed, 7 Aug 2024 12:06:37 +1200 Subject: [PATCH 29/36] Update changelog --- CHANGELOG.md | 294 +++++++++++++++++++++++++++------------------------ 1 file changed, 157 insertions(+), 137 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e94a7499..69f6d6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,269 +35,289 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) +## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) + +### Merged + +- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) + +### Commits + +- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) + +## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 + +### Merged + +- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) + ### Commits -- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) \ No newline at end of file From ac32abd8894a7de5921d116b70682d61bc3f4014 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 9 Aug 2024 15:14:11 +1200 Subject: [PATCH 30/36] Update connectivity info copy-to-clipboard button placement --- src/components/ConnectivityInfo.vue | 50 +++++++++++++++++++---------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index d28f64c7..a93bd103 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -20,12 +20,12 @@
    -
    +
    @@ -479,6 +475,7 @@ export default { } .button-circle { + margin: 0; width: 24px !important; height: 24px !important; @@ -706,16 +703,35 @@ export default { top: 99.4%; } -.float-button-container { - position: absolute; - bottom: 8px; - right: 16px; - opacity: 0; - visibility: hidden; +.title-buttons { + display: flex; + flex-direction: row; + gap: 0.5rem; + + :deep(.copy-clipboard-button) { + &, + &:hover, + &:focus { + border-color: $app-primary-color !important; + border-radius: 50%; + } + } +} - .main:hover & { - opacity: 1; - visibility: visible; +:deep(.el-popper.popover-map-pin) { + padding: 4px 10px; + min-width: max-content; + font-family: Asap; + font-size: 12px; + line-height: inherit; + color: inherit; + background: #f3ecf6 !important; + border: 1px solid $app-primary-color; + + & .el-popper__arrow::before { + border: 1px solid; + border-color: $app-primary-color; + background: #f3ecf6; } } From cbdb806bdcc75c09430ab7b7b4242f9ff2c07b3d Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 9 Aug 2024 15:15:45 +1200 Subject: [PATCH 31/36] 2.3.2-beta.3 --- CHANGELOG.md | 303 ++++++++++++++++++++++------------------------ package-lock.json | 4 +- package.json | 2 +- 3 files changed, 148 insertions(+), 161 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f6d6ee..80ed157e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v2.3.2-beta.2](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.1...v2.3.2-beta.2) +## [v2.3.2-beta.3](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.2...v2.3.2-beta.3) + +### Commits + +- Update changelog [`ef39a49`](https://github.com/akhuoa/map-sidebar/commit/ef39a49fb083988c87ac454ca9f11170e8d874a9) +- Update connectivity info copy-to-clipboard button placement [`ac32abd`](https://github.com/akhuoa/map-sidebar/commit/ac32abd8894a7de5921d116b70682d61bc3f4014) + +## [v2.3.2-beta.2](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.1...v2.3.2-beta.2) - 2024-08-07 ### Commits @@ -35,289 +42,269 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) -## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) - -### Merged - -- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) - -### Commits - -- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) - -## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 - -### Merged - -- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) -- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) -- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) - ### Commits -- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) \ No newline at end of file +- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) diff --git a/package-lock.json b/package-lock.json index 51a36d0e..d27a8627 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.2", + "version": "2.3.2-beta.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.2", + "version": "2.3.2-beta.3", "dependencies": { "@abi-software/gallery": "^1.1.1", "@abi-software/map-utilities": "^1.0.1-beta.2", diff --git a/package.json b/package.json index cda63b1f..d87a24e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.2", + "version": "2.3.2-beta.3", "files": [ "dist/*", "src/*", From 566fd87dcf83e85f97173f2b28e857594e7bfcb1 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Fri, 9 Aug 2024 15:18:50 +1200 Subject: [PATCH 32/36] Update changelog --- CHANGELOG.md | 294 +++++++++++++++++++++++++++------------------------ 1 file changed, 157 insertions(+), 137 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80ed157e..005de41d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,269 +42,289 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) +## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) + +### Merged + +- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) + +### Commits + +- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) + +## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 + +### Merged + +- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) + ### Commits -- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) \ No newline at end of file From 03aa79ed3056eabd864ad0b67e8b9f45a3d7c9e3 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 12 Aug 2024 11:34:37 +1200 Subject: [PATCH 33/36] Add uberon information in connectivity copy data --- src/components/ConnectivityInfo.vue | 44 +++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 9 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index a93bd103..bcf3f448 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -396,14 +396,34 @@ export default { contentArray.push(`
    ${this.entry.paths}
    `); } + function transformData(items, itemsWithDatasets) { + const transformedItems = []; + items.forEach((item) => { + let itemNames = []; + item.split(',').forEach((name) => { + const match = itemsWithDatasets.find((a) => a.name === name.trim()); + if (match) { + itemNames.push(`${capitalise(name)} (${match.id})`); + } else { + itemNames.push(`${capitalise(name)}`); + } + }); + transformedItems.push(itemNames.join(',')); + }); + return transformedItems; + } + // Origins if (this.entry.origins?.length) { let originsContent = '
    Origin
    '; - const origins = this.entry.origins - .map((item) => `
  • ${capitalise(item)}
  • `) + const origins = this.entry.origins; + const originsWithDatasets = this.entry.originsWithDatasets; + const transformedOrigins = transformData(origins, originsWithDatasets); + const originsList = transformedOrigins + .map((item) => `
  • ${item}
  • `) .join('\n'); originsContent += '\n'; - originsContent += `
      ${origins}
    `; + originsContent += `
      ${originsList}
    `; contentArray.push(originsContent); } @@ -411,22 +431,28 @@ export default { if (this.entry.components?.length) { contentArray.push(); let componentsContent = '
    Components
    '; - const components = this.entry.components - .map((item) => `
  • ${capitalise(item)}
  • `) + const components = this.entry.components; + const componentsWithDatasets = this.entry.componentsWithDatasets; + const transformedComponents = transformData(components, componentsWithDatasets); + const componentsList = transformedComponents + .map((item) => `
  • ${item}
  • `) .join('\n'); componentsContent += '\n'; - componentsContent += `
      ${components}
    `; + componentsContent += `
      ${componentsList}
    `; contentArray.push(componentsContent); } // Destination if (this.entry.destinations?.length) { let destinationsContent = '
    Destination
    '; - const destinations = this.entry.destinations - .map((item) => `
  • ${capitalise(item)}
  • `) + const destinations = this.entry.destinations; + const destinationsWithDatasets = this.entry.destinationsWithDatasets; + const transformedDestinations = transformData(destinations, destinationsWithDatasets); + const destinationsList = transformedDestinations + .map((item) => `
  • ${item}
  • `) .join('\n'); destinationsContent += '\n'; - destinationsContent += `
      ${destinations}
    `; + destinationsContent += `
      ${destinationsList}
    `; contentArray.push(destinationsContent); } From bf65cf5a33d34336f2e1a41a541d8d6fd26bba32 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 12 Aug 2024 11:52:08 +1200 Subject: [PATCH 34/36] Refactor code for connectivity info copy to clipboard --- src/components/ConnectivityInfo.vue | 44 +++++++++++------------------ 1 file changed, 17 insertions(+), 27 deletions(-) diff --git a/src/components/ConnectivityInfo.vue b/src/components/ConnectivityInfo.vue index bcf3f448..2d5c2679 100644 --- a/src/components/ConnectivityInfo.vue +++ b/src/components/ConnectivityInfo.vue @@ -396,7 +396,8 @@ export default { contentArray.push(`
    ${this.entry.paths}
    `); } - function transformData(items, itemsWithDatasets) { + function transformData(title, items, itemsWithDatasets = []) { + let contentString = `
    ${title}
    `; const transformedItems = []; items.forEach((item) => { let itemNames = []; @@ -410,50 +411,39 @@ export default { }); transformedItems.push(itemNames.join(',')); }); - return transformedItems; + const contentList = transformedItems + .map((item) => `
  • ${item}
  • `) + .join('\n'); + contentString += '\n'; + contentString += `
      ${contentList}
    `; + return contentString; } // Origins if (this.entry.origins?.length) { - let originsContent = '
    Origin
    '; + const title = 'Origin'; const origins = this.entry.origins; const originsWithDatasets = this.entry.originsWithDatasets; - const transformedOrigins = transformData(origins, originsWithDatasets); - const originsList = transformedOrigins - .map((item) => `
  • ${item}
  • `) - .join('\n'); - originsContent += '\n'; - originsContent += `
      ${originsList}
    `; - contentArray.push(originsContent); + const transformedOrigins = transformData(title, origins, originsWithDatasets); + contentArray.push(transformedOrigins); } // Components if (this.entry.components?.length) { - contentArray.push(); - let componentsContent = '
    Components
    '; + const title = 'Components'; const components = this.entry.components; const componentsWithDatasets = this.entry.componentsWithDatasets; - const transformedComponents = transformData(components, componentsWithDatasets); - const componentsList = transformedComponents - .map((item) => `
  • ${item}
  • `) - .join('\n'); - componentsContent += '\n'; - componentsContent += `
      ${componentsList}
    `; - contentArray.push(componentsContent); + const transformedComponents = transformData(title, components, componentsWithDatasets); + contentArray.push(transformedComponents); } // Destination if (this.entry.destinations?.length) { - let destinationsContent = '
    Destination
    '; + const title = 'Destination'; const destinations = this.entry.destinations; const destinationsWithDatasets = this.entry.destinationsWithDatasets; - const transformedDestinations = transformData(destinations, destinationsWithDatasets); - const destinationsList = transformedDestinations - .map((item) => `
  • ${item}
  • `) - .join('\n'); - destinationsContent += '\n'; - destinationsContent += `
      ${destinationsList}
    `; - contentArray.push(destinationsContent); + const transformedDestinations = transformData(title, destinations, destinationsWithDatasets); + contentArray.push(transformedDestinations); } return contentArray.join('\n\n
    '); From b7e91d3c2a35fb36f673304ef86a159580801b76 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 12 Aug 2024 12:00:45 +1200 Subject: [PATCH 35/36] 2.3.2-beta.4 --- CHANGELOG.md | 304 ++++++++++++++++++++++------------------------ package-lock.json | 4 +- package.json | 2 +- 3 files changed, 149 insertions(+), 161 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 005de41d..9e941d13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v2.3.2-beta.3](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.2...v2.3.2-beta.3) +## [v2.3.2-beta.4](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.3...v2.3.2-beta.4) + +### Commits + +- Update changelog [`566fd87`](https://github.com/akhuoa/map-sidebar/commit/566fd87dcf83e85f97173f2b28e857594e7bfcb1) +- Refactor code for connectivity info copy to clipboard [`bf65cf5`](https://github.com/akhuoa/map-sidebar/commit/bf65cf5a33d34336f2e1a41a541d8d6fd26bba32) +- Add uberon information in connectivity copy data [`03aa79e`](https://github.com/akhuoa/map-sidebar/commit/03aa79ed3056eabd864ad0b67e8b9f45a3d7c9e3) + +## [v2.3.2-beta.3](https://github.com/akhuoa/map-sidebar/compare/v2.3.2-beta.2...v2.3.2-beta.3) - 2024-08-09 ### Commits @@ -42,289 +50,269 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) -## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) - -### Merged - -- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) - -### Commits - -- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) - -## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 - -### Merged - -- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) -- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) -- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) - ### Commits -- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) \ No newline at end of file +- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) diff --git a/package-lock.json b/package-lock.json index d27a8627..5d2aa0a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.3", + "version": "2.3.2-beta.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.3", + "version": "2.3.2-beta.4", "dependencies": { "@abi-software/gallery": "^1.1.1", "@abi-software/map-utilities": "^1.0.1-beta.2", diff --git a/package.json b/package.json index d87a24e1..01fec24d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@abi-software/map-side-bar", - "version": "2.3.2-beta.3", + "version": "2.3.2-beta.4", "files": [ "dist/*", "src/*", From 20714701b210a42cb89a2873df964e60e1e3dbd4 Mon Sep 17 00:00:00 2001 From: akhuoa Date: Mon, 12 Aug 2024 12:03:17 +1200 Subject: [PATCH 36/36] Update changelog --- CHANGELOG.md | 294 +++++++++++++++++++++++++++------------------------ 1 file changed, 157 insertions(+), 137 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e941d13..1c80a089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,269 +50,289 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - UI updates [`#73`](https://github.com/akhuoa/map-sidebar/pull/73) - Anatomy markers [`#72`](https://github.com/akhuoa/map-sidebar/pull/72) +## [v2.3.1](https://github.com/alan-wu/map-sidebar/compare/v2.3.0...v2.3.1) + +### Merged + +- Fix connectivity tab close button style [`#78`](https://github.com/alan-wu/map-sidebar/pull/78) + +### Commits + +- Update gallery. [`69cb365`](https://github.com/alan-wu/map-sidebar/commit/69cb3655782251730390c148ad7a65b16c5bfc58) + +## [v2.3.0](https://github.com/alan-wu/map-sidebar/compare/v2.2.0...v2.3.0) - 2024-07-10 + +### Merged + +- Display connectivity info without obstructing current map view [`#74`](https://github.com/alan-wu/map-sidebar/pull/74) +- Create cypress testing [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Connectivity explore buttons now check available facets [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- UI updates [`#73`](https://github.com/alan-wu/map-sidebar/pull/73) +- Anatomy markers [`#72`](https://github.com/alan-wu/map-sidebar/pull/72) + ### Commits -- Install Cypress [`d329c74`](https://github.com/akhuoa/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) -- Requires more dev dependencies [`859e578`](https://github.com/akhuoa/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) +- Install Cypress [`d329c74`](https://github.com/alan-wu/map-sidebar/commit/d329c7481de908fe85f9bed6c229bc86854c1d19) +- Requires more dev dependencies [`859e578`](https://github.com/alan-wu/map-sidebar/commit/859e578f498fde3e6e6c956f97738b078111380a) - Add testing for connectivity info [`9677c3c`](https://github.com/akhuoa/map-sidebar/commit/9677c3c1911121b2528d2cc637dc256c40b76462) ## [v2.2.1-beta.0](https://github.com/akhuoa/map-sidebar/compare/v2.2.0...v2.2.1-beta.0) - 2024-06-26 ### Commits -- Add provenance info in sidebar [`f65b2fe`](https://github.com/akhuoa/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) +- Add provenance info in sidebar [`f65b2fe`](https://github.com/alan-wu/map-sidebar/commit/f65b2fecbadd4afb92a1212cafc545228bd14d31) - Move connectivity info tab to top with close button [`d77e018`](https://github.com/akhuoa/map-sidebar/commit/d77e0185283dae36ca851fe48117365b45bde174) - Move pubmed button of provenance info into title area [`a3f4ab2`](https://github.com/akhuoa/map-sidebar/commit/a3f4ab2ba9cf74d8fe644c5417f9ea867a17bd55) -## [v2.2.0](https://github.com/akhuoa/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 +## [v2.2.0](https://github.com/alan-wu/map-sidebar/compare/v2.1.0...v2.2.0) - 2024-05-17 ### Merged -- Hover dataset callback [`#71`](https://github.com/akhuoa/map-sidebar/pull/71) +- Hover dataset callback [`#71`](https://github.com/alan-wu/map-sidebar/pull/71) ### Commits -- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/akhuoa/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) -- add comment [`4921885`](https://github.com/akhuoa/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) +- add hover-changed callback to return anatomy [`d8e94bf`](https://github.com/alan-wu/map-sidebar/commit/d8e94bffa9d3a64c60b0aa46ff3a8e3ae53fe407) +- add comment [`4921885`](https://github.com/alan-wu/map-sidebar/commit/49218855f4af815af068f9bab976231cd2ca31b1) -## [v2.1.0](https://github.com/akhuoa/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 +## [v2.1.0](https://github.com/alan-wu/map-sidebar/compare/v2.0.1...v2.1.0) - 2024-05-10 ### Merged -- Add dataset click event [`#70`](https://github.com/akhuoa/map-sidebar/pull/70) +- Add dataset click event [`#70`](https://github.com/alan-wu/map-sidebar/pull/70) ### Commits -- Rename dataset click to datalink click [`b7b4411`](https://github.com/akhuoa/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) -- Update gallery version for PR #70 [`54a6c69`](https://github.com/akhuoa/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) -- Add dataset click event from gallery [`6cbde23`](https://github.com/akhuoa/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) +- Rename dataset click to datalink click [`b7b4411`](https://github.com/alan-wu/map-sidebar/commit/b7b44113adc33e163722a9f7f8235a7168f1757d) +- Update gallery version for PR #70 [`54a6c69`](https://github.com/alan-wu/map-sidebar/commit/54a6c694c6d5a7cf3edc9b8e3994ab6e211c6d9d) +- Add dataset click event from gallery [`6cbde23`](https://github.com/alan-wu/map-sidebar/commit/6cbde233626ac689121cebbde402e09315de28b0) -## [v2.0.1](https://github.com/akhuoa/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 +## [v2.0.1](https://github.com/alan-wu/map-sidebar/compare/v2.0.0...v2.0.1) - 2024-04-29 ### Commits -- Fix an issue with addFilter method. [`854611c`](https://github.com/akhuoa/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) +- Fix an issue with addFilter method. [`854611c`](https://github.com/alan-wu/map-sidebar/commit/854611c9c2b369f57c5afaefffc4acbc0ba2022d) -## [v2.0.0](https://github.com/akhuoa/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 +## [v2.0.0](https://github.com/alan-wu/map-sidebar/compare/v1.6.0...v2.0.0) - 2024-04-22 ### Merged -- Filter tags UI updates for space [`#69`](https://github.com/akhuoa/map-sidebar/pull/69) -- API Documentation [`#68`](https://github.com/akhuoa/map-sidebar/pull/68) -- Vue3 migration [`#67`](https://github.com/akhuoa/map-sidebar/pull/67) +- Filter tags UI updates for space [`#69`](https://github.com/alan-wu/map-sidebar/pull/69) +- API Documentation [`#68`](https://github.com/alan-wu/map-sidebar/pull/68) +- Vue3 migration [`#67`](https://github.com/alan-wu/map-sidebar/pull/67) ### Commits -- vue cli to vite [`13f0925`](https://github.com/akhuoa/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) -- vue2 to vue3 [`b5b9acd`](https://github.com/akhuoa/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) -- Minor tweaks on the styles. [`39b47a8`](https://github.com/akhuoa/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) +- vue cli to vite [`13f0925`](https://github.com/alan-wu/map-sidebar/commit/13f092578d163420c7e79cc4ca87d527dd80d288) +- vue2 to vue3 [`b5b9acd`](https://github.com/alan-wu/map-sidebar/commit/b5b9acdb64e241641bb2435dfba3b24c5f048e68) +- Minor tweaks on the styles. [`39b47a8`](https://github.com/alan-wu/map-sidebar/commit/39b47a89d56173dd2839934fcdc78e559dcacdea) -## [v1.6.0](https://github.com/akhuoa/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 +## [v1.6.0](https://github.com/alan-wu/map-sidebar/compare/v1.5.4...v1.6.0) - 2024-01-05 ### Commits -- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/akhuoa/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) +- Switch to using s3 uri to get the prefix before filepath. [`9fef3b6`](https://github.com/alan-wu/map-sidebar/commit/9fef3b6e73ce5410e35ef53b4e719cec2e477cc0) -## [v1.5.4](https://github.com/akhuoa/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 +## [v1.5.4](https://github.com/alan-wu/map-sidebar/compare/v1.5.0...v1.5.4) - 2024-01-05 ### Merged -- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/akhuoa/map-sidebar/pull/64) -- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/akhuoa/map-sidebar/pull/66) -- Add in basic but functional search history [`#62`](https://github.com/akhuoa/map-sidebar/pull/62) -- Drawer control [`#61`](https://github.com/akhuoa/map-sidebar/pull/61) +- Create the third level of facets and hook it up with algolia: [`#64`](https://github.com/alan-wu/map-sidebar/pull/64) +- Trim whitespace and set max-width on search pop-up [`#66`](https://github.com/alan-wu/map-sidebar/pull/66) +- Add in basic but functional search history [`#62`](https://github.com/alan-wu/map-sidebar/pull/62) +- Drawer control [`#61`](https://github.com/alan-wu/map-sidebar/pull/61) ### Commits -- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/akhuoa/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) -- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/akhuoa/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) -- Add selector for search history [`a633920`](https://github.com/akhuoa/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) +- Create the third level of facets and hook it up with alolia: [`a0e1d7b`](https://github.com/alan-wu/map-sidebar/commit/a0e1d7b383843b6e0947685ca089ea30d0f0abeb) +- Added a function to find facets given without full hierchy [`4c3b4ff`](https://github.com/alan-wu/map-sidebar/commit/4c3b4ffc978f1f56a07e614bd1914dda8ffcdd22) +- Add selector for search history [`a633920`](https://github.com/alan-wu/map-sidebar/commit/a633920312b7e9a51be81ec8e45a29b203e52636) -## [v1.5.0](https://github.com/akhuoa/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 +## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.5.0) - 2023-09-14 ### Merged -- Mapintegrated context cards [`#60`](https://github.com/akhuoa/map-sidebar/pull/60) -- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/akhuoa/map-sidebar/pull/59) +- Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60) +- Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59) ### Commits -- Revert changes in dependencies. [`f39600a`](https://github.com/akhuoa/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) -- Update dependencies. [`48bbd2e`](https://github.com/akhuoa/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) -- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/akhuoa/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) +- Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333) +- Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe) +- Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745) -## [v1.4.0](https://github.com/akhuoa/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 +## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.4.0) - 2023-06-12 ### Merged -- Update vue to 2.7.14 [`#57`](https://github.com/akhuoa/map-sidebar/pull/57) -- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/akhuoa/map-sidebar/pull/58) -- Support scss. [`#56`](https://github.com/akhuoa/map-sidebar/pull/56) +- Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57) +- Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58) +- Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56) ### Commits -- Add autochangelog to release command. [`c57a6a0`](https://github.com/akhuoa/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) -- Update package. [`1b2c4b8`](https://github.com/akhuoa/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) -- Update packages. [`e1a3924`](https://github.com/akhuoa/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) +- Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc) +- Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c) +- Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af) -## [v1.3.38](https://github.com/akhuoa/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 +## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10 ### Commits -- Replace css with scss. [`5970c81`](https://github.com/akhuoa/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) -- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/akhuoa/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) +- Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1) +- Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f) -## [v1.3.37](https://github.com/akhuoa/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 +## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10 ### Commits -- Version 1.3.37 release. [`17c88e6`](https://github.com/akhuoa/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) +- Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9) -## [v1.3.36](https://github.com/akhuoa/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 +## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23 ### Merged -- Support S3 bucket for all related resources [`#55`](https://github.com/akhuoa/map-sidebar/pull/55) -- Sidebar feedback sprint 27 [`#54`](https://github.com/akhuoa/map-sidebar/pull/54) -- Refactoring [`#53`](https://github.com/akhuoa/map-sidebar/pull/53) +- Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55) +- Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54) +- Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53) ### Commits -- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/akhuoa/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) -- Switch to using algolia 'type' facet [`861ee60`](https://github.com/akhuoa/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) -- Add s3 bucket information [`dc139dd`](https://github.com/akhuoa/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) +- Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465) +- Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69) +- Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0) -## [v1.3.34](https://github.com/akhuoa/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 +## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02 ### Merged -- Fix a bug caused by retracted datasets. [`#52`](https://github.com/akhuoa/map-sidebar/pull/52) +- Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52) ### Commits -- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/akhuoa/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) -- increment version to 1.3.34. [`b0126a1`](https://github.com/akhuoa/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) -- Update .gitignore [`89cfe13`](https://github.com/akhuoa/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) +- Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d) +- increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663) +- Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa) -## [v1.3.33](https://github.com/akhuoa/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 +## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15 ### Merged -- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/akhuoa/map-sidebar/pull/51) -- Tab color change [`#50`](https://github.com/akhuoa/map-sidebar/pull/50) -- Switch to using markdown and checking for XSS [`#48`](https://github.com/akhuoa/map-sidebar/pull/48) -- remove hardcoded root url [`#46`](https://github.com/akhuoa/map-sidebar/pull/46) -- Context card source fix [`#45`](https://github.com/akhuoa/map-sidebar/pull/45) -- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/akhuoa/map-sidebar/pull/44) +- Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51) +- Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50) +- Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48) +- remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46) +- Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45) +- Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44) ### Commits -- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/akhuoa/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) -- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/akhuoa/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) -- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/akhuoa/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) +- Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c) +- Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd) +- Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7) -## [v1.3.18](https://github.com/akhuoa/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 +## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22 ### Merged -- Facets check [`#43`](https://github.com/akhuoa/map-sidebar/pull/43) -- Remove unused hardcoded keywords [`#42`](https://github.com/akhuoa/map-sidebar/pull/42) -- Fix css error, add comments [`#41`](https://github.com/akhuoa/map-sidebar/pull/41) -- Keyword search [`#40`](https://github.com/akhuoa/map-sidebar/pull/40) -- Keyword search typo fixes [`#39`](https://github.com/akhuoa/map-sidebar/pull/39) -- Add keyword search [`#38`](https://github.com/akhuoa/map-sidebar/pull/38) -- Add scrollbar for content overflow on context card [`#37`](https://github.com/akhuoa/map-sidebar/pull/37) -- Dynamic components [`#36`](https://github.com/akhuoa/map-sidebar/pull/36) +- Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43) +- Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42) +- Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41) +- Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40) +- Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39) +- Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38) +- Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37) +- Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36) ### Commits -- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/akhuoa/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) -- Add missing file [`4e98a6e`](https://github.com/akhuoa/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) -- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/akhuoa/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) +- Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c) +- Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b) +- Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5) -## [v1.3.1](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 +## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.1) - 2022-06-09 ### Merged -- Fix for context card banners [`#35`](https://github.com/akhuoa/map-sidebar/pull/35) -- Image gallery on sidebar [`#34`](https://github.com/akhuoa/map-sidebar/pull/34) +- Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35) +- Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34) ### Commits -- Increment version to 1.3.0 [`415916c`](https://github.com/akhuoa/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) -- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/akhuoa/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) -- Update gallery. [`06241ae`](https://github.com/akhuoa/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) +- Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765) +- Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b) +- Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217) -## [v1.2.0-beta.11](https://github.com/akhuoa/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 +## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23 ### Commits -- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/akhuoa/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) +- Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d) -## [v1.2.0-beta.10](https://github.com/akhuoa/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 +## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18 ### Merged -- Updated the way to detect a simulation dataset [`#33`](https://github.com/akhuoa/map-sidebar/pull/33) -- Fix package number being out of date [`#32`](https://github.com/akhuoa/map-sidebar/pull/32) -- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/akhuoa/map-sidebar/pull/31) -- Contex cards via scicrunch [`#30`](https://github.com/akhuoa/map-sidebar/pull/30) -- Add hardcoded data and ability to display samples: [`#29`](https://github.com/akhuoa/map-sidebar/pull/29) -- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/akhuoa/map-sidebar/pull/28) -- Context cards via scicrunch [`#27`](https://github.com/akhuoa/map-sidebar/pull/27) -- Fix facets not being passed in emit [`#26`](https://github.com/akhuoa/map-sidebar/pull/26) -- Fix an issue the auto merge caused [`#25`](https://github.com/akhuoa/map-sidebar/pull/25) -- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/akhuoa/map-sidebar/pull/24) -- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/akhuoa/map-sidebar/pull/23) -- Algolia search [`#22`](https://github.com/akhuoa/map-sidebar/pull/22) -- Fix sample size text. [`#21`](https://github.com/akhuoa/map-sidebar/pull/21) -- Fix facet not set correctly with open search [`#20`](https://github.com/akhuoa/map-sidebar/pull/20) +- Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33) +- Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32) +- Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31) +- Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30) +- Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29) +- Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28) +- Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27) +- Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26) +- Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25) +- Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24) +- Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23) +- Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22) +- Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21) +- Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20) ### Commits -- Initial commit of gallery. [`4f9e96a`](https://github.com/akhuoa/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) -- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/akhuoa/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) -- Initial supports for image gallery. [`1a178bd`](https://github.com/akhuoa/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) +- Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd) +- Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143) +- Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf) -## [1.1.3-fix-0](https://github.com/akhuoa/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 +## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28 ### Merged -- Integrated features [`#19`](https://github.com/akhuoa/map-sidebar/pull/19) -- Add published year [`#6`](https://github.com/akhuoa/map-sidebar/pull/6) -- Remove setinterval, use cascader callback [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Make labels in sidebar cascader clickable [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) +- Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19) +- Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6) +- Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) ### Commits -- Updated package-lock.json. [`6cc7a9c`](https://github.com/akhuoa/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) -- Merged in simulation branch changes. [`dfb6245`](https://github.com/akhuoa/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) -- Updates to package-lock.json. [`e401cfc`](https://github.com/akhuoa/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) +- Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290) +- Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506) +- Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca) ## 1.0.12 - 2021-07-15 ### Merged -- Filters and other fixes [`#18`](https://github.com/akhuoa/map-sidebar/pull/18) -- Emit event [`#17`](https://github.com/akhuoa/map-sidebar/pull/17) -- Add check for organ labels [`#15`](https://github.com/akhuoa/map-sidebar/pull/15) -- Add neuron search [`#14`](https://github.com/akhuoa/map-sidebar/pull/14) -- Tehsurfer add neuron search [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Fix label 'Genotype' being wrong [`#13`](https://github.com/akhuoa/map-sidebar/pull/13) -- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/akhuoa/map-sidebar/pull/11) -- Change endpoint to pennsieve. [`#10`](https://github.com/akhuoa/map-sidebar/pull/10) -- Fix sidebar not searching on load [`#9`](https://github.com/akhuoa/map-sidebar/pull/9) -- Give the mockup label more meaningful name. [`#8`](https://github.com/akhuoa/map-sidebar/pull/8) -- small clean up [`#7`](https://github.com/akhuoa/map-sidebar/pull/7) -- Fix search displaying result from previous search input. [`#5`](https://github.com/akhuoa/map-sidebar/pull/5) -- Fix sizing with information card [`#4`](https://github.com/akhuoa/map-sidebar/pull/4) -- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/akhuoa/map-sidebar/pull/3) -- Merge in upstream changes. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) -- Added tabs and context cards to sidebar [`#2`](https://github.com/akhuoa/map-sidebar/pull/2) -- Tidy up for releases. [`#1`](https://github.com/akhuoa/map-sidebar/pull/1) +- Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18) +- Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17) +- Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15) +- Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14) +- Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13) +- Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11) +- Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10) +- Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9) +- Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8) +- small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7) +- Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5) +- Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4) +- Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3) +- Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) +- Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2) +- Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1) ### Commits -- Create map-sidebar repo [`ce887ae`](https://github.com/akhuoa/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) -- Change version to 1.0.0. [`a431eed`](https://github.com/akhuoa/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) -- Clean up and small improvements. [`98d19cd`](https://github.com/akhuoa/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) +- Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411) +- Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757) +- Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca) \ No newline at end of file