Skip to content

Commit e2901fe

Browse files
authored
Merge pull request #3 from IoeCmcomc/redesign
Redesign
2 parents 3c96b0d + 358e7c4 commit e2901fe

21 files changed

+3826
-1807
lines changed

.gitignore

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ ClientBin/
221221
*.publishsettings
222222
orleans.codegen.cs
223223

224-
# Including strong name files can present a security risk
224+
# Including strong name files can present a security risk
225225
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
226226
#*.snk
227227

@@ -317,7 +317,7 @@ __pycache__/
317317
# OpenCover UI analysis results
318318
OpenCover/
319319

320-
# Azure Stream Analytics local run output
320+
# Azure Stream Analytics local run output
321321
ASALocalRun/
322322

323323
# MSBuild Binary and Structured Log
@@ -326,29 +326,29 @@ ASALocalRun/
326326
# NVidia Nsight GPU debugger configuration file
327327
*.nvuser
328328

329-
# MFractors (Xamarin productivity tool) working folder
329+
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331331

332332
## Ignore output/exported files and datapacks.
333333
*.nbs
334334
*.mid
335335
*.mp3
336-
add*/
337-
pack.mcmeta/
336+
*.mscx
337+
*.mscz
338+
datapacks/
339+
Downloaded song/
338340

339341
## Ignore other files/folders.
340342
#*.ico
341343
*.spec
342344
*.bat
343345
*.pyo
344-
version.*
345-
346-
.vscode/
347346

348347
build/
349348
dist/
349+
test/
350350
main.build/
351351
main.dist/
352+
.mscbackup/
352353

353-
sounds/block.note.sax.ogg
354354
setup.py

.vscode/launch.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python: Current File (Integrated Terminal)",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "Python: Current File and Libs",
16+
"type": "python",
17+
"request": "launch",
18+
"program": "${file}",
19+
"console": "integratedTerminal",
20+
"justMyCode": false
21+
},
22+
{
23+
"name": "Python: Remote Attach",
24+
"type": "python",
25+
"request": "attach",
26+
"port": 5678,
27+
"host": "localhost",
28+
"pathMappings": [
29+
{
30+
"localRoot": "${workspaceFolder}",
31+
"remoteRoot": "."
32+
}
33+
]
34+
},
35+
{
36+
"name": "Python: Module",
37+
"type": "python",
38+
"request": "launch",
39+
"module": "enter-your-module-name-here",
40+
"console": "integratedTerminal"
41+
},
42+
{
43+
"name": "Python: Django",
44+
"type": "python",
45+
"request": "launch",
46+
"program": "${workspaceFolder}/manage.py",
47+
"console": "integratedTerminal",
48+
"args": [
49+
"runserver",
50+
"--noreload",
51+
"--nothreading"
52+
],
53+
"django": true
54+
},
55+
{
56+
"name": "Python: Flask",
57+
"type": "python",
58+
"request": "launch",
59+
"module": "flask",
60+
"env": {
61+
"FLASK_APP": "app.py"
62+
},
63+
"args": [
64+
"run",
65+
"--no-debugger",
66+
"--no-reload"
67+
],
68+
"jinja": true
69+
},
70+
{
71+
"name": "Python: Current File (External Terminal)",
72+
"type": "python",
73+
"request": "launch",
74+
"program": "${file}",
75+
"console": "externalTerminal"
76+
}
77+
]
78+
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"python.pythonPath": "C:\\Users\\Admin\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",
3+
"python.jediEnabled": false,
4+
"python.languageServer": "Microsoft",
5+
}

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@
22
[![License](https://img.shields.io/github/license/IoeCmcomc/NBSTool "License")](https://opensource.org/licenses/MIT "License")
33

44
A tool to work with .nbs (Note Block Studio) files.
5+
6+
## Features
7+
- Process multiple files simultaneously;
8+
- Modify header information and change between versions;
9+
- Arrange notes;
10+
- Import .nbs files from MuseScore files;
11+
- Export .nbs files to MIDI files.

attr.py

Lines changed: 0 additions & 227 deletions
This file was deleted.

0 commit comments

Comments
 (0)