diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b87c2b..69bafccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [0.3.3.1] - 2022-11-13 +* setting.ymlにmacroを使って「スプラ用マクロ、惰性キャンセル」の閾値を設定できない不具合を修正しました + ## [0.3.3] - 2022-11-13 * 以前に削除した「スプラ用マクロ、惰性キャンセル」を使えるようにしました * docs/setting/splatoon2_macro_dasei_cancel.md, docs/setting/splatoon3_macro_dasei_cancel.md を参照してください diff --git a/Gemfile.lock b/Gemfile.lock index 2da9d22b..e2c32c54 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - procon_bypass_man (0.3.3) + procon_bypass_man (0.3.3.1) action_cable_client blue_green_process pbmenv (>= 0.1.9) diff --git a/lib/procon_bypass_man/buttons_setting_configuration/layer.rb b/lib/procon_bypass_man/buttons_setting_configuration/layer.rb index fed94322..3c661bca 100644 --- a/lib/procon_bypass_man/buttons_setting_configuration/layer.rb +++ b/lib/procon_bypass_man/buttons_setting_configuration/layer.rb @@ -53,7 +53,7 @@ def flip(button, if_pressed: false, force_neutral: nil, flip_interval: nil) end # @param [String, Class] プラグインのclass - # @param [Hash, NilClass] if_tilted_left_stick + # @param [Hash, Boolean, NilClass] if_tilted_left_stick def macro(name, if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) case if_tilted_left_stick when Integer, String, Symbol, Array @@ -91,6 +91,7 @@ def macro(name, if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) end # 設定ファイルに直接マクロを打ち込める + # @param [Hash, Boolean, NilClass] if_tilted_left_stick # @param [String, Class] macroの識別子 # @paramh[Array] macroの本体. ボタンの配列 def open_macro(name, steps: [], if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil) diff --git a/lib/procon_bypass_man/version.rb b/lib/procon_bypass_man/version.rb index c78aea68..b06968fc 100644 --- a/lib/procon_bypass_man/version.rb +++ b/lib/procon_bypass_man/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ProconBypassMan - VERSION = "0.3.3" + VERSION = "0.3.3.1" end diff --git a/project_template/app.rb b/project_template/app.rb index 1ff9a93d..e2a94e7f 100644 --- a/project_template/app.rb +++ b/project_template/app.rb @@ -12,7 +12,7 @@ gemfile do source 'https://rubygems.org' git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } - gem 'procon_bypass_man', '0.3.3' + gem 'procon_bypass_man', '0.3.3.1' end rescue Bundler::Source::Git::GitCommandError => e retry_count_on_git_command_error = retry_count_on_git_command_error + 1 diff --git a/project_template/app.rb.erb b/project_template/app.rb.erb index 56977bcb..37ce513f 100644 --- a/project_template/app.rb.erb +++ b/project_template/app.rb.erb @@ -12,7 +12,7 @@ begin gemfile do source 'https://rubygems.org' git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } - gem 'procon_bypass_man', '0.3.3' + gem 'procon_bypass_man', '0.3.3.1' end rescue Bundler::Source::Git::GitCommandError => e retry_count_on_git_command_error = retry_count_on_git_command_error + 1