From 10ed12b2e0c088c1383962772a3a2396da82ec1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:36:29 +0900 Subject: [PATCH 1/3] Update array.ts --- aiscript/intellisense/primitive/array.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aiscript/intellisense/primitive/array.ts b/aiscript/intellisense/primitive/array.ts index 229f58a..2d9d5c1 100644 --- a/aiscript/intellisense/primitive/array.ts +++ b/aiscript/intellisense/primitive/array.ts @@ -28,6 +28,8 @@ export default languages.registerCompletionItemProvider('aiscript', { createCompletionItemKindMethod('fill'), createCompletionItemKindMethod('repeat'), createCompletionItemKindMethod('index_of'), + createCompletionItemKindMethod('every'), + createCompletionItemKindMethod('some'), ]; } -}, '.'); \ No newline at end of file +}, '.'); From a091ce7027ddde6d63e1d8a3085386110d458e8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:29:30 +0900 Subject: [PATCH 2/3] Update Date.ts --- aiscript/intellisense/functions/Date.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aiscript/intellisense/functions/Date.ts b/aiscript/intellisense/functions/Date.ts index 14945db..8011b33 100644 --- a/aiscript/intellisense/functions/Date.ts +++ b/aiscript/intellisense/functions/Date.ts @@ -25,6 +25,7 @@ export default languages.registerCompletionItemProvider('aiscript', { createCompletionItemKindMethod('second'), createCompletionItemKindMethod('millisecond'), createCompletionItemKindMethod('parse'), + createCompletionItemKindMethod('to_iso_str'), ]; } -}, ':'); \ No newline at end of file +}, ':'); From 27f01b3d9f8d7dfd167531be5d3b0499ad899d6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=A3=E3=81=93=E3=81=8B=E3=82=8A?= <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Tue, 23 Apr 2024 16:30:34 +0900 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 426e015..ae0596d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to the "aiscript" extension will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## 0.1.7 +- 関数のIntellisenseを追加 + - https://github.com/aiscript-dev/aiscript/pull/620 - `[].every()`, `[].some()` + - https://github.com/aiscript-dev/aiscript/pull/623 - `Date:to_iso_str()` + ## 0.1.6 - 関数のIntellisenseを追加 - https://github.com/aiscript-dev/aiscript/pull/411 … `[].index_of()`