Skip to content

Commit

Permalink
Merge pull request #46 from jeffnawroth/development
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffnawroth authored Nov 23, 2024
2 parents af42b3c + d56223e commit 2b2200b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "source-taster",
"displayName": "The Source Taster",
"version": "1.6.0",
"version": "1.6.1",
"private": true,
"description": "Source Taster is a browser extension that helps users quickly verify the validity and existence of sources cited in academic papers.",
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions src/components/Options/OptionCategories/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ const items = [
appendIcon: 'mdi-open-in-new',
prependIcon: 'mdi-github',
},
{
title: 'Homepage',
subtitle: 'https://source-taster.jeffnawroth.me',
href: 'https://source-taster.jeffnawroth.me',
appendIcon: 'mdi-open-in-new',
prependIcon: 'mdi-home-outline',
},
]
</script>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { sendMessage } from 'webext-bridge/popup'
import { sendMessage } from 'webext-bridge/options'
import { localeOption } from '~/logic'
// I18n
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const { copy, copied } = useClipboard()
<v-btn
v-bind="tooltipProps"
density="compact"
icon="mdi-content-copy"
:icon="copied ? 'mdi-check ' : 'mdi-content-copy'"
variant="plain"
size="large"
@click="copy(dois[index])"
Expand Down

0 comments on commit 2b2200b

Please sign in to comment.