Skip to content

Commit 217081c

Browse files
rebases, fixes build assets, minor temporary style fixes
1 parent fc2b9e5 commit 217081c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+60
-56
lines changed

client/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -231,16 +231,16 @@
231231
<script src="/socket.io/socket.io.js"></script>
232232

233233
<!-- jQuery -->
234-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
235-
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
236-
<script src="/js/jQuery/jquery.ui.touch-punch.min.js"></script>
237-
<script src="/js/jQuery/chosen.jquery.min.js"></script>
234+
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
235+
<script defer src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
236+
<script defer src="/js/jQuery/jquery.ui.touch-punch.min.js"></script>
237+
<script defer src="/js/jQuery/chosen.jquery.min.js"></script>
238238

239239
<!-- import from the character list handlebars -->
240-
<script src="https://unpkg.com/pdf-lib/dist/pdf-lib.min.js"></script>
241-
<script src="https://unpkg.com/downloadjs@1.4.7"></script>
242-
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.8.0/html2pdf.bundle.min.js"></script>
243-
<link rel="stylesheet" href="/css/character-list.css" />
240+
<script defer src="https://unpkg.com/pdf-lib/dist/pdf-lib.min.js"></script>
241+
<script defer src="https://unpkg.com/downloadjs@1.4.7"></script>
242+
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.8.0/html2pdf.bundle.min.js"></script>
243+
<link defer rel="stylesheet" href="/css/character-list.css" />
244244

245245
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/crate@3" async defer>
246246
new Crate({
@@ -249,8 +249,8 @@
249249
})
250250
</script>
251251
</head>
252-
<body>
253-
<div id="app"></div>
252+
<body style="background-color: #1c1c1c">
253+
<div id="app" ></div>
254254
<!-- Socket IO -->
255255
<script src="/socket.io/socket.io.js"></script>
256256

49.5 KB
Loading

client/public/images/logo.png

44.3 KB
Loading

client/vite.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ export default defineConfig({
66
plugins: [vue()],
77
server: {
88
proxy: {
9-
109
// There's probably a better way to do this, but I don't know my way around proxies well enough!
1110
"/vue-data": {
1211
target: "http://localhost:3000",

client/vue-src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import CharacterList from "./views/dashboard/character-list/character-list.vue";
88
</script>
99

10-
<style scoped>
10+
<style>
1111
#modal-root {
1212
width: 0;
1313
height: 0;

client/vue-src/views/dashboard/character-list/character-list-legacy.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,20 @@
66
<div
77
class="header d-md-flex justify-content-between align-items-center pt-1 pl-1 pr-5"
88
>
9-
<div>
9+
<!-- just threw in inline styles for the sake of speed. This needs to be refactored along with the header still -->
10+
<div style="display: flex; align-self: start">
1011
<a href="/"
1112
><img
1213
src="/images/logo.png"
13-
style="height: 50px"
14+
style="height: 50px; align-self: top"
1415
alt="Wanderer's Guide"
1516
/></a>
16-
<sup
17+
<div
18+
style="padding-top: 8px"
1719
class="is-inline has-txt-value-number is-size-6-5 font-bebas-neue text-overflow-none is-hidden-mobile"
18-
>&nbsp&nbspBeta 1.9.3</sup
1920
>
21+
&nbsp&nbspBeta 1.9.3
22+
</div>
2023
</div>
2124

2225
<div>

package-lock.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/express/views/builder/build_planner_abc.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233

234234
{{#section "nav_characters"}}
235235
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
236-
href="/profile/characters"
236+
href="/v/profile/characters"
237237
class="active"
238238
>Characters</a></li>
239239
{{/section}}

services/express/views/builder/build_planner_level.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233

234234
{{#section "nav_characters"}}
235235
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
236-
href="/profile/characters"
236+
href="/v/profile/characters"
237237
class="active"
238238
>Characters</a></li>
239239
{{/section}}

services/express/views/builds/build_creator.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180

181181
{{#section "nav_characters"}}
182182
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
183-
href="/profile/characters"
183+
href="/v/profile/characters"
184184
>Characters</a></li>
185185
{{/section}}
186186

services/express/views/builds/build_creator_init.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
{{#section "nav_characters"}}
3434
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
35-
href="/profile/characters"
35+
href="/v/profile/characters"
3636
>Characters</a></li>
3737
{{/section}}
3838

services/express/views/builds/builds.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
{{#section "nav_characters"}}
5353
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
54-
href="/profile/characters"
54+
href="/v/profile/characters"
5555
>Characters</a></li>
5656
{{/section}}
5757

services/express/views/char_builder/char_builder.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207

208208
{{#section "nav_characters"}}
209209
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
210-
href="/profile/characters"
210+
href="/v/profile/characters"
211211
class="active"
212212
>Characters</a></li>
213213
{{/section}}

services/express/views/char_builder/char_builder_init.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
{{#section "nav_characters"}}
3030
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
31-
href="/profile/characters"
31+
href="/v/profile/characters"
3232
class="active"
3333
>Characters</a></li>
3434
{{/section}}

services/express/views/docs/guidechar_docs.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/error/403_builder_error.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/error/404_error.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/error/500_error.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/error/patreon_link_error.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/error/private_character_error.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
{{#section "nav_characters"}}
1515
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
16-
href="/profile/characters"
16+
href="/v/profile/characters"
1717
>Characters</a></li>
1818
{{/section}}
1919

services/express/views/gm_tools/campaigns.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
{{#section "nav_characters"}}
3232
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
33-
href="/profile/characters"
33+
href="/v/profile/characters"
3434
>Characters</a></li>
3535
{{/section}}
3636

services/express/views/gm_tools/encounter_builder.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
{{#section "nav_characters"}}
7373
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
74-
href="/profile/characters"
74+
href="/v/profile/characters"
7575
>Characters</a></li>
7676
{{/section}}
7777

services/express/views/gm_tools/gm_tools.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
{{#section "nav_characters"}}
1414
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
15-
href="/profile/characters"
15+
href="/v/profile/characters"
1616
>Characters</a></li>
1717
{{/section}}
1818

services/express/views/homebrew/builder_ancestry.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_animal-companion.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_archetype.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_background.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
{{#section "nav_characters"}}
2525
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
26-
href="/profile/characters"
26+
href="/v/profile/characters"
2727
>Characters</a></li>
2828
{{/section}}
2929

services/express/views/homebrew/builder_class-feature.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_class.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_feat-action.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_heritage.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_item.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
{{#section "nav_characters"}}
2525
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
26-
href="/profile/characters"
26+
href="/v/profile/characters"
2727
>Characters</a></li>
2828
{{/section}}
2929

services/express/views/homebrew/builder_language.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_spell.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_toggleable.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
{{#section "nav_characters"}}
2525
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
26-
href="/profile/characters"
26+
href="/v/profile/characters"
2727
>Characters</a></li>
2828
{{/section}}
2929

services/express/views/homebrew/builder_trait.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/homebrew/builder_uni-heritage.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{{#section "nav_characters"}}
2424
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
25-
href="/profile/characters"
25+
href="/v/profile/characters"
2626
>Characters</a></li>
2727
{{/section}}
2828

services/express/views/pages/character_list.handlebars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
{{#section "nav_characters"}}
3838
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
39-
href="/profile/characters"
39+
href="/v/profile/characters"
4040
class="active"
4141
>Characters</a></li>
4242
{{/section}}

services/express/views/pages/home.handlebars

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
{{#section "nav_characters"}}
1818
<li class="mx-lg-4 mx-md-3 my-md-0 my-2"><a
19-
href="/profile/characters"
19+
href="/v/profile/characters"
2020
>Characters</a></li>
2121
{{/section}}
2222

@@ -62,7 +62,7 @@
6262
><i class="fas fa-search"></i> Search Pf2e</a>
6363
{{#if user}}
6464
<a
65-
href="/profile/characters"
65+
href="/v/profile/characters"
6666
style="max-width: 180px;"
6767
class="btn button-style m-1"
6868
>Create Character</a>
@@ -104,7 +104,7 @@
104104
><i class="fas fa-search"></i> Search Pf2e</a>
105105
{{#if user}}
106106
<a
107-
href="/profile/characters"
107+
href="/v/profile/characters"
108108
style="max-width: 180px;"
109109
class="btn button-style m-1"
110110
>Create Character</a>

0 commit comments

Comments
 (0)