Skip to content

Commit

Permalink
Merge pull request #14 from phillipivan/master
Browse files Browse the repository at this point in the history
fix password regex
  • Loading branch information
phillipivan authored May 29, 2024
2 parents 94efc4c + 543bb62 commit 100420b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions companion/HELP.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@ Enter the IP address, port of the media player. If a password is required, enter

## Version History

### Version 2.1.3
- Fix password regex

### Version 2.1.2
- Better status updates
- Better preset formatting
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tascam-cd",
"version": "2.1.2",
"version": "2.1.3",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
label: 'Password',
width: 6,
default: 'SS-CDR250N',
regex: '/^.{0,10}/',
regex: '/^.{0,10}$/',
tooltip: 'Defaults to model name: SS-CDR250N / SS-R250N',
},
]
Expand Down

0 comments on commit 100420b

Please sign in to comment.