procon_bypass_man 0.1.19 → 0.1.19.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7db95a3b559da58846417c4c1130c20c1fdfabae51f0b089660c3fa0d9ac9f30
4
- data.tar.gz: 397b20e751282f15fd65bc22dc81be62cde78e8a765abc5185c4bc45a63b3e5e
3
+ metadata.gz: 51f609e2bfb3366e10ae0cf76380ad969416040b73e0a4d0db91f6df783f0264
4
+ data.tar.gz: ea030a8b78a102b9ef8e6c12fab196b7aab2d2b91519f57e0dc63327ca57f4b1
5
5
  SHA512:
6
- metadata.gz: d83e34d63afbd6e46da32f00cc0a79330d55dfea6c9ae1451c0ed12c14607b5c9623b96c036b6ad2ec8668047212ecf21aa6d6dd80c9b300633d514e4f4c1a0a
7
- data.tar.gz: c518539e4d905ccf1754b49ecf9de1a3ff0ed3ce1c71c9e262a6e468126647b415dbfe87d0e99cb468bfd8c3f5267ef4204622b3134831f1ab2600bf3d8dffd4
6
+ metadata.gz: 074f5f69ce22021c0a1393883d0a7cc5c20437ba77206968d1041d18ace23938e586b760aa480a4deca8f8e85904cc36d728890affc669e793911575a3fd7f36
7
+ data.tar.gz: f6240a68720f29e76a214a34015062f6c78ae3bb1c6691d6c3f39e70ae3c3b87823ec50412efb6fe84ad9611f005b3cf82d470bc8b87238c6213af031c5642aa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
+ ## [0.1.19.1] - 2022-02-09
2
+ - 設定ファイルをpbm-cloudから復元するときに設定ファイルの改行コードが消える不具合を修正しました
3
+
1
4
  ## [0.1.19] - 2022-02-09
2
5
  - 設定ファイルを再読み込みするときに構文がエラーがあると、接続が切れる不具合を修正しました
3
- - 設定ファイルをpbm-cloudから復元するときに設定ファイルの改行コードが消える不具合を修正しました
6
+ - ~設定ファイルをpbm-cloudから復元するときに設定ファイルの改行コードが消える不具合を修正しました~
4
7
 
5
8
  ## [0.1.18] - 2022-02-05
6
9
  - macroでできることが増えました
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- procon_bypass_man (0.1.19)
4
+ procon_bypass_man (0.1.19.1)
5
5
  action_cable_client
6
6
  pbmenv
7
7
  sorted_set
@@ -36,7 +36,7 @@ GEM
36
36
  parallel (1.21.0)
37
37
  parser (3.0.3.2)
38
38
  ast (~> 2.4.1)
39
- pbmenv (0.1.7)
39
+ pbmenv (0.1.8)
40
40
  pry (0.14.1)
41
41
  coderay (~> 1.1)
42
42
  method_source (~> 1.0)
@@ -0,0 +1,40 @@
1
+ # スプラトゥーン2: おすすめの設定
2
+ ## 全般
3
+ ### 簡単スニーキング
4
+
5
+ ボタンを押している間は、水飛沫のたたないスニーキングの感度まで調整することができます。
6
+ [設定方法](/docs/setting/left-analogstick-cap.md)
7
+
8
+ ### ナイス玉連打
9
+
10
+ `flip :down, if_pressed: :down`
11
+ 十字キーの下ボタンは常に連打にしておくとナイス玉が来たときに楽です。
12
+
13
+ ### マクロでスーパージャンプ
14
+
15
+ ```
16
+ install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn
17
+ install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToUpKey
18
+ install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToRightKey
19
+ install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToLeftKey
20
+
21
+ layer :up, mode: :manual do
22
+ macro ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn, if_pressed: [:y, :b, :down]
23
+ macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToUpKey, if_pressed: [:y, :b, :up]
24
+ macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToRightKey, if_pressed: [:y, :b, :right]
25
+ macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToLeftKey, if_pressed: [:y, :b, :left]
26
+ end
27
+ ```
28
+
29
+ リスポーンや味方にスーパージャンプするマクロがあります。トリガーは自由に設定できます。
30
+
31
+ ## 武器に特化した設定
32
+ ### パブロ向け
33
+
34
+ `flip :zr, if_pressed: :zr, force_neutral: :zl`
35
+ zrを連打にします。`force_neutral: :zl` というオプションをつけることで、ZRを押している間はZLを押しても無視されるようになります。パブロでは意味がありませんが、シューターだと煽りのような動作を抑制することができます。
36
+
37
+ ### ボトルガイザー(フォイル)向け
38
+
39
+ バブル即割のマクロがあります。
40
+ [設定方法](/docs/setting/splatoon2_macro_sokuwari_bubble.md)
@@ -6,7 +6,7 @@ module ProconBypassMan
6
6
  require "pbmenv"
7
7
  ProconBypassMan.logger.info "execute RestorePbmSettingAction!"
8
8
  setting = args.dig("setting") or raise(ProconBypassMan::RemotePbmAction::NeedPbmVersionError, "settingが必要です, #{args.inspect}")
9
- ProconBypassMan::YamlWriter.execute(
9
+ ProconBypassMan::YamlWriter.write(
10
10
  path: ProconBypassMan::ButtonsSettingConfiguration.instance.setting_path,
11
11
  content: setting,
12
12
  )
@@ -3,7 +3,14 @@ class ProconBypassMan::YamlWriter
3
3
  def self.write(path: , content: )
4
4
  File.write(
5
5
  path,
6
- content.gsub("\r\n", "\n").to_yaml,
6
+ content.transform_values { |x|
7
+ case x
8
+ when String
9
+ x.gsub("\r\n", "\n")
10
+ else
11
+ x
12
+ end
13
+ }.to_yaml
7
14
  )
8
15
  end
9
16
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ProconBypassMan
4
- VERSION = "0.1.19"
4
+ VERSION = "0.1.19.1"
5
5
  end
@@ -5,7 +5,7 @@ require 'bundler/inline'
5
5
  gemfile do
6
6
  source 'https://rubygems.org'
7
7
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
8
- gem 'procon_bypass_man', '0.1.19'
8
+ gem 'procon_bypass_man', '0.1.19.1'
9
9
  end
10
10
 
11
11
  ProconBypassMan.configure do |config|
@@ -1,35 +1,28 @@
1
1
  version: 1.0
2
2
  setting: |-
3
- fast_return = ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn
4
- guruguru = ProconBypassMan::Plugin::Splatoon2::Mode::Guruguru
5
-
6
- install_macro_plugin fast_return
3
+ install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn
7
4
  install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToUpKey
8
5
  install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToRightKey
9
6
  install_macro_plugin ProconBypassMan::Plugin::Splatoon2::Macro::JumpToLeftKey
10
- install_mode_plugin guruguru
7
+ install_mode_plugin ProconBypassMan::Plugin::Splatoon2::Mode::Guruguru
11
8
 
12
9
  prefix_keys_for_changing_layer [:zr, :zl, :l]
13
10
 
14
11
  layer :up, mode: :manual do
15
- # flip :zr, if_pressed: :zr, force_neutral: :zl
16
12
  flip :zr, if_pressed: :zr, force_neutral: :zl
17
13
  flip :zl, if_pressed: [:y, :b, :zl]
18
14
  flip :a, if_pressed: [:a]
19
15
  flip :down, if_pressed: :down
20
- macro fast_return.name, if_pressed: [:y, :b, :down]
16
+ macro ProconBypassMan::Plugin::Splatoon2::Macro::FastReturn, if_pressed: [:y, :b, :down]
21
17
  macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToUpKey, if_pressed: [:y, :b, :up]
22
18
  macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToRightKey, if_pressed: [:y, :b, :right]
23
19
  macro ProconBypassMan::Plugin::Splatoon2::Macro::JumpToLeftKey, if_pressed: [:y, :b, :left]
24
20
  remap :l, to: :zr
25
21
  end
26
- layer :right, mode: guruguru.name
22
+ layer :right, mode: ProconBypassMan::Plugin::Splatoon2::Mode::Guruguru
27
23
  layer :left do
28
- # flip :zr, if_pressed: :zr, force_neutral: :zl
29
24
  remap :l, to: :zr
30
25
  end
31
26
  layer :down do
32
- # flip :zl
33
- # flip :zr, if_pressed: :zr, force_neutral: :zl, flip_interval: "1F"
34
27
  remap :l, to: :zr
35
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: procon_bypass_man
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jiikko
@@ -80,6 +80,7 @@ files:
80
80
  - docs/how_to_connect_procon.md
81
81
  - docs/setting/left-analogstick-cap.md
82
82
  - docs/setting/splatoon2_macro_sokuwari_bubble.md
83
+ - docs/setting/splatoon2_recommended_setting.md
83
84
  - docs/setup_raspi.md
84
85
  - docs/setup_raspi.mitamae.rb
85
86
  - docs/setup_raspi_by_mitamae.md