Skip to content

Commit

Permalink
Replace Bootstrap with Mantine (#1795)
Browse files Browse the repository at this point in the history
  • Loading branch information
LASER-Yi committed May 31, 2022
1 parent 6515c42 commit 2cecb4c
Show file tree
Hide file tree
Showing 217 changed files with 10,429 additions and 12,425 deletions.
11 changes: 7 additions & 4 deletions changelog-dev.hbs
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
From newest to oldest:
{{#each releases}}
{{#each merges}}
- {{message}}{{#if href}} [#{{id}}]({{href}}){{/if}}
-
{{message}}{{#if href}} [#{{id}}]({{href}}){{/if}}
{{/each}}
{{#each fixes}}
- {{commit.subject}}{{#if href}} [#{{id}}]({{href}}){{/if}}
-
{{commit.subject}}{{#if href}} [#{{id}}]({{href}}){{/if}}
{{/each}}
{{#each commits}}
- {{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}}
-
{{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}}
{{/each}}
{{/each}}
{{/each}}
11 changes: 7 additions & 4 deletions changelog-master.hbs
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
From newest to oldest:
{{#each releases}}
{{#each merges}}
- {{message}}{{#if href}} [#{{id}}]({{href}}){{/if}}
-
{{message}}{{#if href}} [#{{id}}]({{href}}){{/if}}
{{/each}}
{{#each fixes}}
- {{commit.subject}}{{#if href}} [#{{id}}]({{href}}){{/if}}
-
{{commit.subject}}{{#if href}} [#{{id}}]({{href}}){{/if}}
{{/each}}
{{#each commits}}
- {{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}}
-
{{subject}}{{#if href}} [{{shorthash}}]({{href}}){{/if}}
{{/each}}
{{/each}}
{{/each}}
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ node_modules
dist
*.local
build
coverage

*.tsbuildinfo
1 change: 0 additions & 1 deletion frontend/config/chunks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { dependencies } from "../package.json";

const vendors = [
"react",
"react-redux",
"react-router-dom",
"react-dom",
"react-query",
Expand Down
4 changes: 3 additions & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script>
window.Bazarr = {{BAZARR_SERVER_INJECT | tojson | safe}};
try {
window.Bazarr = JSON.parse(`{{BAZARR_SERVER_INJECT | tojson | safe}}`);
} catch (error) {}
</script>
<script type="module" src="./src/dom.tsx"></script>
</body>
Expand Down

0 comments on commit 2cecb4c

Please sign in to comment.