Skip to content

Commit

Permalink
Merge pull request #28 from abgox/module
Browse files Browse the repository at this point in the history
fix(module): update version to 4.3.2
  • Loading branch information
abgox authored Aug 18, 2024
2 parents 0329fdf + 32408ae commit c9d927a
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 4 deletions.
4 changes: 4 additions & 0 deletions module/CHANGELOG-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<a href="./CHANGELOG-CN.md">简体中文</a>
</p>

## 4.3.2 (2024/8/18)

- 修复一个方法(`show_module_menu`)的参数类型转换错误

## 4.3.1 (2024/8/18)

- 添加一个配置项 `menu_is_loop`, 控制是否循环显示菜单,默认值为 `1`
Expand Down
13 changes: 13 additions & 0 deletions module/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"version": "4.3.2",
"info": {
"zh-CN": [
"修复(2024/8/18)\n",
"- 修复一个方法(show_module_menu)的参数类型转换错误\n"
],
"en-US": [
"Fix(2024/8/18)\n",
"- Fix a method(show_module_menu) parameter type conversion error.\n"
]
}
},
{
"version": "4.3.1",
"info": {
Expand Down
4 changes: 4 additions & 0 deletions module/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<a href="./CHANGELOG.md">English</a>
</p>

## 4.3.2 (2024/8/18)

- Fix a method(`show_module_menu`) parameter type conversion error.

## 4.3.1 (2024/8/18)

- Add a configuration item `menu_is_loop`, controlling whether the menu is looped, with a default value of `1`.
Expand Down
2 changes: 1 addition & 1 deletion module/PSCompletions.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

RootModule = 'PSCompletions.psm1'

ModuleVersion = '4.3.1'
ModuleVersion = '4.3.2'

GUID = '00929632-527d-4dab-a5b3-21197faccd05'

Expand Down
2 changes: 1 addition & 1 deletion module/core/init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
New-Variable -Name PSCompletions -Value @{} -Option ReadOnly

# 模块版本
$PSCompletions.version = '4.3.1'
$PSCompletions.version = '4.3.2'
$PSCompletions.path = @{}
$PSCompletions.path.root = Split-Path $PSScriptRoot -Parent
$PSCompletions.path.completions = Join-Path $PSCompletions.path.root 'completions'
Expand Down
2 changes: 1 addition & 1 deletion module/core/menu/win.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ Add-Member -InputObject $PSCompletions.menu -MemberType ScriptMethod reset {
}
}
Add-Member -InputObject $PSCompletions.menu -MemberType ScriptMethod show_module_menu {
param([array]$filter_list, [bool]$is_menu_enhance)
param($filter_list, [bool]$is_menu_enhance)

if (!$filter_list) { return }

Expand Down
10 changes: 10 additions & 0 deletions module/log.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{
"4.3.2": {
"zh-CN": [
"修复(2024/8/18)\n",
"- 修复一个方法(show_module_menu)的参数类型转换错误\n"
],
"en-US": [
"Fix(2024/8/18)\n",
"- Fix a method(show_module_menu) parameter type conversion error.\n"
]
},
"4.3.1": {
"zh-CN": [
"更新(2024/8/18)\n",
Expand Down
2 changes: 1 addition & 1 deletion module/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.1
4.3.2

0 comments on commit c9d927a

Please sign in to comment.