-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #249 from Future-Scholars/rc-v2.2.2
Release v2.2.2
- Loading branch information
Showing
19 changed files
with
275 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<script setup lang="ts"> | ||
import { | ||
BIconCoin, | ||
BIconDiscord, | ||
BIconGithub, | ||
BIconGlobe, | ||
} from "bootstrap-icons-vue"; | ||
defineProps({ | ||
darkMode: Boolean, | ||
}); | ||
const openURL = (url: string) => { | ||
window.appInteractor.open(url); | ||
}; | ||
</script> | ||
|
||
<template> | ||
<div class="flex flex-col"> | ||
<img | ||
class="w-12 mx-auto mb-2" | ||
src="../../assets/logo-dark.png" | ||
v-if="darkMode" | ||
/> | ||
<img class="w-10 mx-auto mb-2" src="../../assets/logo-light.png" v-else /> | ||
|
||
<div class="mx-auto text-xl font-semibold mb-4">PAPERLIB</div> | ||
|
||
<div class="flex mx-auto space-x-5"> | ||
<div | ||
class="flex flex-col space-y-1 hover:text-neutral-500 cursor-pointer" | ||
@click="openURL('https://github.com/Future-Scholars/paperlib')" | ||
> | ||
<BIconGithub class="mx-auto" /> | ||
<span class="mx-auto text-xs">Github</span> | ||
</div> | ||
<div | ||
class="flex flex-col space-y-1 hover:text-neutral-500 cursor-pointer" | ||
@click="openURL('https://discord.gg/4unrSRjcM9')" | ||
> | ||
<BIconDiscord class="mx-auto" /> | ||
<span class="mx-auto text-xs">Discord</span> | ||
</div> | ||
<div | ||
class="flex flex-col space-y-1 hover:text-neutral-500 cursor-pointer" | ||
@click="openURL('https://paperlib.app')" | ||
> | ||
<BIconGlobe class="mx-auto" /> | ||
<span class="mx-auto text-xs">Webpage</span> | ||
</div> | ||
<div | ||
class="flex flex-col space-y-1 hover:text-neutral-500 cursor-pointer" | ||
@click="openURL('https://paperlib.app/en/donate.html')" | ||
> | ||
<BIconCoin class="mx-auto" /> | ||
<span class="mx-auto text-xs">Donate</span> | ||
</div> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.