AiScriptを0.19.0にアップデート (#14226)
* Update autogen files * Update CHANGELOG.md * Update flash-edit.vue
This commit is contained in:
		| @@ -37,6 +37,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||
| <script lang="ts" setup> | ||||
| import { computed, ref } from 'vue'; | ||||
| import * as Misskey from 'misskey-js'; | ||||
| import { AISCRIPT_VERSION } from '@syuilo/aiscript'; | ||||
| import MkButton from '@/components/MkButton.vue'; | ||||
| import * as os from '@/os.js'; | ||||
| import { misskeyApi } from '@/scripts/misskey-api.js'; | ||||
| @@ -48,7 +49,7 @@ import MkInput from '@/components/MkInput.vue'; | ||||
| import MkSelect from '@/components/MkSelect.vue'; | ||||
| import { useRouter } from '@/router/supplier.js'; | ||||
|  | ||||
| const PRESET_DEFAULT = `/// @ 0.18.0 | ||||
| const PRESET_DEFAULT = `/// @ ${AISCRIPT_VERSION} | ||||
|  | ||||
| var name = "" | ||||
|  | ||||
| @@ -66,7 +67,7 @@ Ui:render([ | ||||
| ]) | ||||
| `; | ||||
|  | ||||
| const PRESET_OMIKUJI = `/// @ 0.18.0 | ||||
| const PRESET_OMIKUJI = `/// @ ${AISCRIPT_VERSION} | ||||
| // ユーザーごとに日替わりのおみくじのプリセット | ||||
|  | ||||
| // 選択肢 | ||||
| @@ -109,7 +110,7 @@ Ui:render([ | ||||
| ]) | ||||
| `; | ||||
|  | ||||
| const PRESET_SHUFFLE = `/// @ 0.18.0 | ||||
| const PRESET_SHUFFLE = `/// @ ${AISCRIPT_VERSION} | ||||
| // 巻き戻し可能な文字シャッフルのプリセット | ||||
|  | ||||
| let string = "ペペロンチーノ" | ||||
| @@ -188,7 +189,7 @@ var cursor = 0 | ||||
| do() | ||||
| `; | ||||
|  | ||||
| const PRESET_QUIZ = `/// @ 0.18.0 | ||||
| const PRESET_QUIZ = `/// @ ${AISCRIPT_VERSION} | ||||
| let title = '地理クイズ' | ||||
|  | ||||
| let qas = [{ | ||||
| @@ -301,7 +302,7 @@ qaEls.push(Ui:C:container({ | ||||
| Ui:render(qaEls) | ||||
| `; | ||||
|  | ||||
| const PRESET_TIMELINE = `/// @ 0.18.0 | ||||
| const PRESET_TIMELINE = `/// @ ${AISCRIPT_VERSION} | ||||
| // APIリクエストを行いローカルタイムラインを表示するプリセット | ||||
|  | ||||
| @fetch() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 FineArchs
					FineArchs