diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-05 12:46:34 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-05 12:46:34 +1000 |
| commit | 78becfe2da9cae2c84b766d7a32143a52728dcb5 (patch) | |
| tree | 884ca9204f815954505a1dbbbe25c3b5d335a564 /src/components | |
| parent | 1d443d39a5dda4c6993e03aeb1384e8c1e17205b (diff) | |
Add licensing information
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/HelpModal.vue | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/src/components/HelpModal.vue b/src/components/HelpModal.vue index ab55325..46dfa2f 100644 --- a/src/components/HelpModal.vue +++ b/src/components/HelpModal.vue @@ -336,18 +336,30 @@ <template #summary="slotProps"> <div :class="scSummaryClasses"> <down-icon :class="slotProps.collapsed ? downIconClasses : downIconExpandedClasses"/> - Other Credits + Project Information </div> </template> <template #content> <div :class="contentClasses"> + <h1 class="text-lg font-bold">Other Credits</h1> <ul class="list-disc pl-4"> <li> - The UI was built using the + The UI was largely coded in + <a href="https://www.typescriptlang.org/" :style="anchorStyles">Typescript</a> + <external-link-icon :class="linkIconClasses"/>, + and built using the <a href="https://vuejs.org/" :style="anchorStyles">Vue framework</a> <external-link-icon :class="linkIconClasses"/> </li> <li> + Tree data was processed using + <a href="https://www.python.org/" :style="anchorStyles">Python</a> + <external-link-icon :class="linkIconClasses"/>, + and stored using + <a href="https://www.sqlite.org/index.html" :style="anchorStyles">Sqlite</a> + <external-link-icon :class="linkIconClasses"/> + </li> + <li> Styling was enhanced using <a href="https://tailwindcss.com/" :style="anchorStyles">Tailwind</a> <external-link-icon :class="linkIconClasses"/> @@ -369,6 +381,28 @@ <external-link-icon :class="linkIconClasses"/> </li> </ul> + <br/> + <h1 class="text-lg font-bold">Licensing</h1> + <ul class="list-disc pl-4"> + <li>The project's code is licensed under the MIT license</li> + <li> + Tree data from the Open Tree of Life is licensed under the + <a href="https://raw.githubusercontent.com/OpenTreeOfLife/opentree/master/LICENSE.txt" + :style="anchorStyles">BSD 2-Clause License</a> + <external-link-icon :class="linkIconClasses"/> + </li> + <li> + Image licensing information is available from a tile's info pane, + under 'Source information' + </li> + <li> + The short descriptions are extracted from Wikipedia's page content, + which is available under the + <a href="https://creativecommons.org/licenses/by-sa/3.0/" :style="anchorStyles" + >CC BY-SA 3.0 license</a> + <external-link-icon :class="linkIconClasses"/> + </li> + </ul> </div> </template> </s-collapsible> |
