Skip to content

Commit 94be4a4

Browse files
committed
add partner, signpath, and fossa on homepage
1 parent 0aba680 commit 94be4a4

File tree

5 files changed

+109
-0
lines changed

5 files changed

+109
-0
lines changed

home/index.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ features:
5252
<script setup>
5353
import './index.css'
5454
import vtuberLogo from './scripts/index.logo.vue';
55+
import JetBrainsLogo from './scripts/JetBrainsLogo.vue';
56+
import TransifexLogo from './scripts/TransifexLogo.vue';
57+
import SignPathLogo from './scripts/SignPathLogo.vue';
58+
import SentryLogo from './scripts/SentryLogo.vue';
5559

5660
if (typeof document !== 'undefined') {
5761
document.title = "Collapse Launcher - Advanced Game Launcher";
@@ -82,3 +86,46 @@ Collapse came from the **Honkai Impact** translation in Chinese and Japanese. Th
8286
Not only that, this launcher also has some advanced features for **Genshin Impact**, including but not limited to:
8387
* Choosing your voice-line language during the first installation, so you don't have to download it inside the game.
8488
* Repair the game files including Game Caches, Cutscenes, Audio Pack & persistent files outside of the game.
89+
90+
91+
## Special Thanks
92+
> The teams over at Collapse are really thankful for all of our users and contributors that has been keeping this project alive and well. We are also giving our outmost gratitude for these company/organization for providing their service for us.
93+
94+
1. JetBrains for providing complete .NET suite and Qodana for our internal use
95+
<p align="center"><JetBrainsLogo /></p>
96+
97+
2. Transifex for their translation platform
98+
<p align="center"><TransifexLogo /></p>
99+
100+
3. SignPath Foundation for providing us free code signing!
101+
<p align="center"><SignPathLogo /></p>
102+
103+
4. Sentry for providing us with error collection platform!
104+
<p align="center"><SentryLogo /></p>
105+
106+
107+
# Code Signing Policy
108+
::: info
109+
Free code signing provided by [SignPath.io], certificate by [SignPath Foundation]
110+
:::
111+
- This program will only transfer user data to user configured database server. Exception data will be sent to [Sentry.io] for error tracking purposes (user are able to disable the behavior in App Settings).
112+
- Read our full [**Privacy Policy**](https://github.com/CollapseLauncher/Collapse/blob/main/PRIVACY.md)
113+
- Also read our [**Third Party Notices**](https://github.com/CollapseLauncher/Collapse/blob/main/THIRD_PARTY_NOTICES.md) for license used by third party libraries that we use.
114+
115+
[SignPath Foundation]:https://signpath.org
116+
[SignPath.io]:https://signpath.io
117+
118+
# FOSSA Analysis For Key Projects
119+
<p align="center" style="vertical-align: top;">
120+
<a href="https://app.fossa.com/projects/git%2Bgithub.com%2FCollapseLauncher%2FCollapse?ref=badge_large&issueType=license" target="_blank" style="display: inline-block; vertical-align: top;">
121+
<img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2FCollapseLauncher%2FCollapse.svg?type=large&issueType=license" alt="Collapse FOSSA Status" width=280/>
122+
</a>
123+
&nbsp;
124+
<a href="https://app.fossa.com/projects/git%2Bgithub.com%2FCollapseLauncher%2FSharpHDiffPatch.Core?ref=badge_large&issueType=license" target="_blank" style="display: inline-block; vertical-align: top;">
125+
<img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2FCollapseLauncher%2FSharpHDiffPatch.Core.svg?type=large&issueType=license" alt="SharpHDiffPatch FOSSA Status" width=280/>
126+
</a>
127+
&nbsp;
128+
<a href="https://app.fossa.com/projects/git%2Bgithub.com%2FCollapseLauncher%2FHi3Helper.Sophon?ref=badge_large&issueType=license" target="_blank" style="display: inline-block; vertical-align: top;">
129+
<img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2FCollapseLauncher%2FHi3Helper.Sophon.svg?type=large&issueType=license" alt="Sophon FOSSA Status" width=280/>
130+
</a>
131+
</p>

home/scripts/JetBrainsLogo.vue

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<template>
2+
<a href="https://jb.gg/OpenSourceSupport" class="logo-container">
3+
<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/ReSharper_icon.png" alt="ReSharper logo." class="logo" />
4+
<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/Qodana_icon.png" alt="Qodana logo." class="logo" />
5+
</a>
6+
</template>
7+
8+
<style scoped>
9+
.logo {
10+
height: 80px;
11+
}
12+
.logo-container {
13+
display: flex;
14+
gap: 10px;
15+
justify-content: center;
16+
}
17+
</style>

home/scripts/SentryLogo.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<a href="https://sentry.io/about/">
3+
<img src="https://raw.githubusercontent.com/CollapseLauncher/.github/main/profile/sentry-wordmark-light-400x119.png" alt="Sentry Logo" class="logo" />
4+
</a>
5+
</template>
6+
7+
<script setup>
8+
// No script needed for this component
9+
</script>
10+
11+
<style scoped>
12+
.logo {
13+
height: 80px;
14+
}
15+
</style>

home/scripts/SignPathLogo.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<a href="https://signpath.org/about/">
3+
<img src="https://pbs.twimg.com/media/EKY08ToXsAAJh-Y.png" alt="SignPath Logo" class="logo" />
4+
</a>
5+
</template>
6+
7+
<script setup>
8+
// No script needed for this component
9+
</script>
10+
11+
<style scoped>
12+
.logo {
13+
height: 70px;
14+
}
15+
</style>

home/scripts/TransifexLogo.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<a href="https://explore.transifex.com/collapse-launcher/collapse-mainapp/" target="_blank">
3+
<img src="https://upload.wikimedia.org/wikipedia/commons/f/f7/Transifex_logo.svg" alt="Collapse Launcher Localization at Transifex" class="logo" />
4+
</a>
5+
</template>
6+
7+
<script setup>
8+
// No script needed for this component
9+
</script>
10+
11+
<style scoped>
12+
.logo {
13+
height: 70px;
14+
}
15+
</style>

0 commit comments

Comments
 (0)