-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- version bump to `1.0.0` - changed author to "Primordial Team" - added apex (sponsor) logo assets - added apex sponsor link to installer welcome screen - changed singleplayer save name to filter out invalid characters - changed singleplayer save name to append version to the name
- Loading branch information
Showing
9 changed files
with
104 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Drehmal* | ||
map | ||
map* | ||
parts | ||
archive |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,57 @@ | ||
<template> | ||
<div> | ||
<!-- <p> | ||
Drehmal is sponsored by Apex Hosting. Click the banner below to support | ||
the dev team and create your multiplayer Drehmal server! | ||
</p> --> | ||
<q-list bordered separator> | ||
<q-item clickable v-ripple @click="openUrl(partner.affilLink)"> | ||
<q-item-section | ||
style="display: flex; justify-content: center; align-items: center" | ||
> | ||
<q-item-label header class="text-info" | ||
>Drehmal is sponsored by Apex Hosting!</q-item-label | ||
> | ||
<q-item-label class="text-accent"> | ||
Click the banner below to support the dev team and create your | ||
multiplayer Drehmal server! | ||
</q-item-label> | ||
<q-img | ||
src="../assets/images/partner/apex_hosting_logo_white.png" | ||
style="max-width: 480px" | ||
no-spinner | ||
no-transition | ||
/> | ||
</q-item-section> | ||
</q-item> | ||
</q-list> | ||
|
||
<!-- <q-item | ||
clickable | ||
v-ripple | ||
to="/singleplayer/" | ||
@click="typeSelect('singleplayer')" | ||
> --> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { storeToRefs } from 'pinia'; | ||
import { useSourcesStore } from 'src/stores/SourcesStore'; | ||
const { ipcRenderer } = require('electron'); | ||
const { partner } = storeToRefs(useSourcesStore()); | ||
const openUrl = (url: string) => { | ||
ipcRenderer.invoke('openInBrowser', url); | ||
}; | ||
</script> | ||
|
||
<style scoped lang="sass"> | ||
p | ||
font-size: 14px | ||
.border | ||
border: 2px solid #e2e2e2 | ||
.selector | ||
width: 100% | ||
</style> |
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