Skip to content

Commit

Permalink
Release v0.1.12 (#14)
Browse files Browse the repository at this point in the history
* Update array.ts

* Update package.json

* Update CHANGELOG.md

* Update package-lock.json

* Update outdated docs

* ignore
kakkokari-gtyih authored Aug 11, 2024
1 parent e1e1b27 commit 6641304
Showing 7 changed files with 13 additions and 7 deletions.
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
readme-assets/**
aiscript/intellisense/**
node_modules/**
scripts/**
.gitignore
*.vsix
vsc-extension-quickstart.md
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,10 @@ 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.12
- 関数のIntellisenseを追加
- https://github.com/aiscript-dev/aiscript/pull/661 - `[].at()`

## 0.1.11
- 変数名に`let``var`などが含まれるときにハイライトに失敗する問題を修正

4 changes: 2 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
@@ -33,9 +33,9 @@ CHANGELOG.md をご覧ください
$ npm i

# VSCEを使いvsixパッケージ化
$ npx vsce package
$ npx @vscode/vsce package

# もしnpxでうまくいかなければ、以下をお試しください:
$ npm install -g vsce
$ npm install -g @vscode/vsce
$ vsce package
```
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -35,9 +35,9 @@ Run:
$ npm i

# Pack into .vsix file using VSCE
$ npx vsce package
$ npx @vscode/vsce package

# (If command above didn't work, try below)
$ npm install -g vsce
$ npm install -g @vscode/vsce
$ vsce package
```
1 change: 1 addition & 0 deletions aiscript/intellisense/primitive/array.ts
Original file line number Diff line number Diff line change
@@ -35,6 +35,7 @@ export default languages.registerCompletionItemProvider('aiscript', {
createCompletionItemKindMethod('flat_map'),
createCompletionItemKindMethod('insert'),
createCompletionItemKindMethod('remove'),
createCompletionItemKindMethod('at'),
];
}
}, '.');
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/aiscript-dev/aiscript-vscode"
},
"version": "0.1.11",
"version": "0.1.12",
"engines": {
"vscode": "^1.83.0"
},

0 comments on commit 6641304

Please sign in to comment.