Skip to content

Commit 30adf1d

Browse files
committed
フロントエンドのリファクタリング
1 parent af641e2 commit 30adf1d

26 files changed

Lines changed: 1161 additions & 998 deletions

.env

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file contains version and configuration used by build scripts
33

44
# Application Version (should match version in backend/Cargo.toml)
5-
VERSION=0.8.1-alpha.1
5+
VERSION=0.8.2-alpha.1
66

77
# Application Information
88
APP_NAME=Vrm2SL
@@ -20,8 +20,8 @@ GITHUB_REPO=vrm2sl
2020

2121
# URLs
2222
PROJECT_URL=https://github.com/logue/vrm2sl
23-
HOMEPAGE_URL=https://github.com/logue/vrm2sl
24-
DOCS_URL=https://github.com/logue/vrm2sl
23+
HOMEPAGE_URL=https://logue.dev/vrm2sl
24+
DOCS_URL=https://logue.dev/vrm2sl
2525

2626
# Vite exposed variables (public environment variables)
2727
# Note: __APP_NAME__, __APP_VERSION__, __PROJECT_SITE__ are injected at build time via vite.config.ts define

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vrm2sl-tauri"
3-
version = "0.8.2-alpha.0"
3+
version = "0.8.2-alpha.1"
44
default-run = "vrm2sl-tauri"
55
authors = ["Logue <logue@hotmail.co.jp>"]
66
edition = "2024"

backend/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "vrm2sl",
4-
"version": "0.8.1-alpha.1",
4+
"version": "0.8.2-alpha.1",
55
"identifier": "com.vrm2sl",
66
"build": {
77
"beforeDevCommand": "pnpm --dir frontend dev",

frontend/eslint.config.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
import configPrettier from '@vue/eslint-config-prettier';
22
import { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript';
33

4-
import { globalIgnores } from 'eslint/config';
54
import pluginVueI18n from '@intlify/eslint-plugin-vue-i18n';
5+
import { globalIgnores } from 'eslint/config';
66
import pluginImport from 'eslint-plugin-import-x';
77
import pluginOxlint from 'eslint-plugin-oxlint';
88
// @ts-ignore
99
import pluginSecurity from 'eslint-plugin-security';
1010
import pluginVue from 'eslint-plugin-vue';
1111
import pluginVueA11y from 'eslint-plugin-vuejs-accessibility';
12-
import pluginYml from 'eslint-plugin-yml';
13-
// @ts-ignore
1412
import pluginVuetify from 'eslint-plugin-vuetify';
13+
import pluginYml from 'eslint-plugin-yml';
1514

1615
// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:
1716
// import { configureVueProject } from '@vue/eslint-config-typescript'
@@ -118,7 +117,6 @@ export default defineConfigWithVueTs(
118117
'import-x/no-default-export': 'off',
119118
'import-x/no-named-as-default-member': 'off',
120119
'import-x/no-named-as-default': 'off',
121-
/*
122120
// Sort Import Order.
123121
// see https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/order.md#importorder-enforce-a-convention-in-module-import-order
124122
'import-x/order': [
@@ -147,7 +145,6 @@ export default defineConfigWithVueTs(
147145
'newlines-between': 'always'
148146
}
149147
],
150-
*/
151148
// A tag with no content should be written like <br />.
152149
'vue/html-self-closing': [
153150
'error',

frontend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@tauri-vuetify-starter/frontend",
3-
"version": "0.8.1-alpha.1",
2+
"name": "@vrm2sl/frontend",
3+
"version": "0.8.2-alpha.1",
44
"description": "Convert VRM avatars to Second Life format with ease",
55
"license": "MIT",
66
"type": "module",
@@ -76,7 +76,7 @@
7676
"jiti": "^2.6.1",
7777
"lint-staged": "^16.4.0",
7878
"npm-run-all2": "^8.0.4",
79-
"oxlint": "^1.57.0",
79+
"oxlint": "^1.58.0",
8080
"postcss-html": "^1.8.1",
8181
"prettier": "^3.8.1",
8282
"resize-observer-polyfill": "^1.5.1",
@@ -98,4 +98,4 @@
9898
"vue-tsc": "^3.2.6",
9999
"yaml-eslint-parser": "^2.0.0"
100100
}
101-
}
101+
}

frontend/src/App.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<script setup lang="ts">
2+
import { useConfigStore, useGlobalStore } from '@/store';
23
import { computed, nextTick, onMounted, ref, watch } from 'vue';
4+
35
// Components
46
import AppBarMenuComponent from '@/components/AppBarMenuComponent.vue';
57
import MainContent from '@/components/MainContent.vue';
6-
import { useConfigStore, useGlobalStore } from '@/store';
78
89
/** Global Store */
910
const globalStore = useGlobalStore();

frontend/src/components/AppBarMenuComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
2-
import { useI18n } from 'vue-i18n';
32
import { useConfigStore } from '@/store';
3+
import { useI18n } from 'vue-i18n';
44
55
import LocaleSelector from './LocaleSelector.vue';
66
import AboutDialog from './modals/AboutDialog.vue';

frontend/src/components/LocaleSelector.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<script setup lang="ts">
22
/** 言語セレクター */
3-
4-
import { useI18n } from 'vue-i18n';
53
import { useConfigStore } from '@/store';
4+
import { useI18n } from 'vue-i18n';
65
76
/** vue i18n */
87
const { t, availableLocales } = useI18n();

0 commit comments

Comments
 (0)