-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[About Dialog] Switched to WebView for credits
Signed-off-by: Kevin López Brante <kevin@kddlb.cl>
- Loading branch information
Showing
3 changed files
with
57 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<body style="text-align:center;"> | ||
Now with 92% more future! | ||
<br><br> | ||
<em>This program has been made possible through contributions from users like you.</em> | ||
<br><br> | ||
All Cog code is copyrighted by me, and is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GPL</a>. Cog contains bits of other code from third parties that are under their own licenses. | ||
<br><br> | ||
Sample rate converter designed by Aleksey Vaneev of Voxengo. | ||
<br><br> | ||
Thanks to my patrons: | ||
<br> | ||
Alexander Pecheny, Electric Keet, Antti Aro, Fjölnir Ásgeirsson, Giampaolo Bellavite, Louis Martinez V, alga | ||
</body> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>SpoGen web view</title> | ||
<style> | ||
|
||
:root { | ||
color-scheme: light dark; | ||
} | ||
|
||
html, body { | ||
font: -apple-system-body; | ||
-webkit-text-size-adjust: 100%; | ||
} | ||
|
||
div { | ||
text-align: center; | ||
} | ||
|
||
a:link { | ||
color: #ffb565; | ||
text-decoration: none; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<div> | ||
Now with 92% more future! | ||
<br><br> | ||
<em>This program has been made possible through contributions from users like you.</em> | ||
<br><br> | ||
All Cog code is copyrighted by me, and is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GPL</a>. Cog contains bits of other code from third parties that are under their own licenses. | ||
<br><br> | ||
Sample rate converter designed by Aleksey Vaneev of Voxengo. | ||
<br><br> | ||
Thanks to my patrons: | ||
<br> | ||
Alexander Pecheny, Electric Keet, Antti Aro, Fjölnir Ásgeirsson, Giampaolo Bellavite, Louis Martinez V, alga | ||
</div> | ||
</body> | ||
</html> |