Skip to content

Commit

Permalink
switch to turbowrap
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent.abbal committed Nov 29, 2024
1 parent 053312d commit af5bb1b
Show file tree
Hide file tree
Showing 1,878 changed files with 573,542 additions and 1,223,594 deletions.
66 changes: 0 additions & 66 deletions .github/CONTRIBUTING.md

This file was deleted.

15 changes: 0 additions & 15 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

39 changes: 0 additions & 39 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

93 changes: 0 additions & 93 deletions .github/workflows/ci-cd.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/commitlint.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/daily-tx-pull.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/signature-assistant.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md

This file was deleted.

56 changes: 56 additions & 0 deletions addons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Addon Settings - TurboWarp</title>
<style>
body[data-splash-theme="dark"] {
background: #111;
}

noscript {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
</style>
</head>
<body>
<noscript>
<h1>This page requires JavaScript</h1>
</noscript>

<script>
(function() {
var theme = '';

try {
var themeSetting = localStorage.getItem('tw:theme');
} catch (e) {
// ignore
}
if (themeSetting === 'light') {
theme = 'light';
} else if (themeSetting === 'dark') {
theme = 'dark';
} else if (themeSetting) {
try {
var parsed = JSON.parse(themeSetting);
if (parsed.gui === 'dark' || parsed.gui === 'light') {
theme = parsed.gui;
}
} catch (e) {
// ignore
}
}

if (!theme) {
theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}

document.body.setAttribute('data-splash-theme', theme);
})();
</script>

<div id="app"></div>
<script src="js/vendors~addon-settings~credits~editor~embed~fullscreen~player.js"></script><script src="js/addon-settings~addons~editor~fullscreen~player.js"></script><script src="js/addon-settings~editor~embed~fullscreen~player.js"></script><script src="js/addon-settings.js"></script></body>
</html>
12 changes: 0 additions & 12 deletions blocks-only.html

This file was deleted.

Loading

0 comments on commit af5bb1b

Please sign in to comment.