mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00

* web: Added error handling. Fixed table overflow issues. Improved release status titles. Fixed a few bugs where certain forms/modals didn't close properly. feat(web): Added react-error-boundary and stacktracey for handling errors. In case of a recoverable/non-state updating error, a notification is thrown, otherwise the user is shown an error page with the appropriate stack trace and error type and cause with the possibility of resolving the error by reseting the page's state. enhancement(web/data-table/cells): Improved cell display behavior in tables -- it's now scrollable on mobile. Improved release status string readability. enhancement(web/settings/Irc): Made IRC refetch interval every 3 seconds for those who are not patient. fix(web/modals/DeleteModal): Fixed modal bug where it didn't close on button click. fix(web/forms/IndexerForms): Fixed bug where the form didn't close on button click. enhancement(web/ReleaseTable): Made the table more compact by utilizing 3em padding between cells instead of 6. enhancement(web/ActivityTable): Ditto as above. enhancement(web): Changed width of every page section from max-w-7xl (1280px to where applicable) chore(web/dashboard/ActivityTable): Reformatted the file to a saner syntax. enhancement(web/dashboard/StatsItem): Enlarged font size, set font to extrabold instead of bold and made padding consistent. fix(web/navbar): Fixed bold font not showing properly on Firefox due to an argument ordering issue. * chore: update pkg and fix broken proxy
33 lines
999 B
HTML
33 lines
999 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%PUBLIC_URL%/static/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<meta
|
|
name="description"
|
|
content="autobrr"
|
|
/>
|
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/static/logo192.png" />
|
|
<link crossorigin="use-credentials" rel="manifest" href="%PUBLIC_URL%/static/manifest.json" />
|
|
<title>autobrr</title>
|
|
<!-- {{if eq .BaseUrl "/" }}
|
|
<base href="%PUBLIC_URL%/">
|
|
<script>
|
|
window.APP = {}
|
|
window.APP.baseUrl = "/"
|
|
</script>
|
|
{{else}} -->
|
|
<base href="{{.BaseUrl}}">
|
|
<script>
|
|
window.APP = {}
|
|
window.APP.baseUrl = "{{.BaseUrl}}"
|
|
</script>
|
|
<!-- {{end}} -->
|
|
</head>
|
|
<body class="bg-color">
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root" class="pattern"></div>
|
|
</body>
|
|
</html>
|