Skip to content

Commit

Permalink
Merge pull request #13 from ReiFan49/fix/simai-offset
Browse files Browse the repository at this point in the history
patch to allow simai negative offsets
  • Loading branch information
donmai-me authored Feb 22, 2023
2 parents 9d1850f + e88987c commit a2050a3
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
35 changes: 33 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,35 @@
__pycache__
output
*.sdt
*.txt
*.txt

# Created by https://www.toptal.com/developers/gitignore/api/python
# Edit at https://www.toptal.com/developers/gitignore?templates=python

### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
2 changes: 1 addition & 1 deletion maiconverter/simai/simai.lark
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ artist: "&artist=" STRING
smsg: "&smsg" ("_" INT)? "=" STRING
des: "&des" ("_" INT)? "=" STRING
freemsg: "&freemsg=" MULTILINE_STRING
first: "&first" ("_" INT)? "=" NUMBER
first: "&first" ("_" INT)? "=" ("-")? NUMBER
pvstart: "&PVStart=" NUMBER
pvend: "&PVEnd=" NUMBER
wholebpm: "&wholebpm=" STRING
Expand Down

0 comments on commit a2050a3

Please sign in to comment.