File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog][],
6
6
and this project adheres to [ Semantic Versioning] [ ] .
7
7
8
8
9
+ ## [ v0.8.1] ( https://github.com/mishamyrt/nuga-lib/releases/tag/v0.8.1 ) - 2024-05-02
10
+ ### Bug Fixes
11
+ - use correct length for set effects request
12
+
13
+
9
14
## [ v0.8.0] ( https://github.com/mishamyrt/nuga-lib/releases/tag/v0.8.0 ) - 2024-05-02
10
15
### Bug Fixes
11
16
- declare custom header type
@@ -183,7 +188,8 @@ and this project adheres to [Semantic Versioning][].
183
188
184
189
[ keep a changelog ] : https://keepachangelog.com/en/1.0.0/
185
190
[ semantic versioning ] : https://semver.org/spec/v2.0.0.html
186
- [ Unreleased ] : https://github.com/mishamyrt/nuga-lib/compare/v0.8.0...HEAD
191
+ [ Unreleased ] : https://github.com/mishamyrt/nuga-lib/compare/v0.8.1...HEAD
192
+ [ v0.8.1 ] : https://github.com/mishamyrt/nuga-lib/compare/v0.8.0...v0.8.1
187
193
[ v0.8.0 ] : https://github.com/mishamyrt/nuga-lib/compare/v0.7.5...v0.8.0
188
194
[ v0.7.5 ] : https://github.com/mishamyrt/nuga-lib/compare/v0.7.4...v0.7.5
189
195
[ v0.7.4 ] : https://github.com/mishamyrt/nuga-lib/compare/v0.7.3...v0.7.4
Original file line number Diff line number Diff line change @@ -103,10 +103,11 @@ func (f *Feature) SetEffects(p *Effects) error {
103
103
if err != nil {
104
104
return err
105
105
}
106
- paramsRequest := make ([]byte , 1032 )
106
+ paramsRequest := make ([]byte , 0 , 1032 )
107
107
paramsRequest = append (paramsRequest , CmdSetParams ... )
108
108
paramsRequest = append (paramsRequest , p .Bytes ()... )
109
109
paramsRequest = append (paramsRequest , currentParams ... )
110
+ paramsRequest = append (paramsRequest , make ([]byte , 770 )... )
110
111
return f .handle .Send (paramsRequest )
111
112
}
112
113
You can’t perform that action at this time.
0 commit comments