Skip to content

Commit

Permalink
Merge pull request #226 from splaplapla/bump
Browse files Browse the repository at this point in the history
0.3.3.1
  • Loading branch information
jiikko authored Nov 13, 2022
2 parents f1bf84e + 9d88045 commit 2a777eb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 を参照してください
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
3 changes: 2 additions & 1 deletion lib/procon_bypass_man/buttons_setting_configuration/layer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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<Symbol>] macroの本体. ボタンの配列
def open_macro(name, steps: [], if_pressed: nil, if_tilted_left_stick: nil, force_neutral: nil)
Expand Down
2 changes: 1 addition & 1 deletion lib/procon_bypass_man/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ProconBypassMan
VERSION = "0.3.3"
VERSION = "0.3.3.1"
end
2 changes: 1 addition & 1 deletion project_template/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion project_template/app.rb.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a777eb

Please sign in to comment.