-
Notifications
You must be signed in to change notification settings - Fork 0
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 #18 from fhstp/buttons_changes
Buttons changes, info screen
- Loading branch information
Showing
11 changed files
with
255 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# easyBiograph Version History | ||
|
||
## version 2.0.4 beta, released 18 Mar 2024 | ||
|
||
* (feature) standard dimensions are not changeable | ||
* (feature) high contrast mode | ||
* (feature) info button shows card with version and links | ||
* (bugfix) zoom button only visible if zoomed | ||
* (bugfix) cancel after new results in start screen | ||
|
||
## version 2.0.3 beta, released 26 Jan 2024 | ||
|
||
... | ||
|
||
## version 2.0.2 beta, released 3 May 2023 | ||
|
||
... |
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 +1,3 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
declare const __APP_VERSION__: string; |
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,39 @@ | ||
<script setup> | ||
// eslint-disable-next-line no-undef | ||
const appVersion = __APP_VERSION__; | ||
</script> | ||
|
||
<template> | ||
<div class="card"> | ||
<div class="card-content"> | ||
<div class="content"> | ||
<p class="title is-4">easyBiograph</p> | ||
<p class="subtitle is-6">version {{ appVersion }}</p> | ||
<p class="block"> | ||
<!-- TODO provide link to https://easybiograph.fhstp.ac.at/ --> | ||
Die Webseite mit Handbüchern und Einführungsmaterialien ist noch nicht | ||
verfügbar. | ||
</p> | ||
<p class="block"> | ||
easyBiograph ist Free and Open Source Software. Den Source Code finden | ||
Sie auf <a href="https://github.com/fhstp/easybiograph">GitHub</a>. | ||
</p> | ||
<p class="block"> | ||
Diese Software wurde im Rahmen des Erasmus+ Projekts | ||
<a | ||
href="https://research.fhstp.ac.at/en/projects/transsodia-transnational-and-digital-learning-and-teaching-in-cooperative-social-diagnostics" | ||
target="_blank" | ||
> | ||
TransSoDia | ||
</a> | ||
entwickelt, das von der Europäischen Union kofinanziert wurde. | ||
</p> | ||
<div class="buttons is-centered"> | ||
<button class="button" @click="$emit('abort')">Schließen</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped></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
Oops, something went wrong.