Skip to content

Commit b9c5734

Browse files
committed
Set python to production environment.
1 parent 3dcbc67 commit b9c5734

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

resources/js/components/Home/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<v-card outlined class="rounded-lg pt-0 mr-4 mb-4" width="290px">
8484
<v-card-title>Version</v-card-title>
8585
<v-card-text>
86-
The current LinguaCafe version is v0.14.beta.3.
86+
The current LinguaCafe version is v0.14.beta.4.
8787
<div class="footer-link-box mb-1 mt-4">
8888
<router-link to="/patch-notes"><v-icon class="mr-2">mdi-update</v-icon>Update notes</router-link>
8989
</div>

resources/js/components/Home/PatchNotes.vue

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44
Update notes
55
</div>
66

7+
<v-card outlined class="rounded-lg mb-8">
8+
<v-card-title>v0.14.beta.4<v-spacer /> 2025.03.17.</v-card-title>
9+
<v-card-text>
10+
<b>Bug fixes:</b>
11+
<ul>
12+
<li>Word level indicator's background color was incorrect in hover vocabulary.</li>
13+
</ul>
14+
15+
<b>Other changes:</b>
16+
<ul>
17+
<li>Set python to production environment.</li>
18+
</ul>
19+
</v-card-text>
20+
</v-card>
21+
722
<v-card outlined class="rounded-lg mb-8">
823
<v-card-title>v0.14.beta.3<v-spacer /> 2025.01.05.</v-card-title>
924
<v-card-text>

tools/tokenizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,4 +664,4 @@ def model_remove():
664664
continue
665665
return HTTPResponse(status=500, body="Error: Model directory could not be removed in 5 retries")
666666

667-
run(host='0.0.0.0', port=8678, reloader=True, debug=True)
667+
run(host='0.0.0.0', port=8678, reloader=False, debug=False)

0 commit comments

Comments
 (0)