Skip to content

Commit 7bbdfcd

Browse files
authored
Release 1.2 (#529)
1 parent 7da5242 commit 7bbdfcd

File tree

503 files changed

+15539
-4748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

503 files changed

+15539
-4748
lines changed
Lines changed: 27 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,49 @@
11
---
2-
name: 🕷 Bug report
2+
name: "\U0001F577 Bug report"
33
about: Report a bug.
4+
title: ''
5+
labels: ":spider: type-bug"
6+
assignees: Danielku15
47

58
---
69

710
<!--
8-
9-
!!! The issue templates provided here are mandatory to be used !!!
10-
!!! Issues not filling out the provided structure and details !!!
11-
!!! will be closed without addressing them. It takes you 2mins !!!
12-
!!! more for us it takes a lot of time to organize and address !!!
13-
!!! clarify open points if you do not provide them !!!
14-
15-
16-
Additionally for bugs:
17-
18-
- IMPORTANT: Do not simply delete the whole template and submit without providing the details asked for! Issues not following the template will be closed without being worked on. Please try to be precise and provide all details that help to work on the issue.
19-
- Please make sure that no other bug with the same topic exists already. Rather reopen a closed one than enter a new one.
20-
- Ensure that you are using the lastest version.
21-
11+
❗❗ The issue templates provided here are mandatory to be used and filled out
12+
❗❗ Issues not filling out the provided structure and details will be closed
2213
-->
2314

24-
# Your environment
25-
26-
* Version used: (master branch)
27-
* Platform used: JavaScript or C#
28-
* Rendering engine used: SVG (default), HTML5 or GDI
29-
* Browser Name and Version:
30-
* Operating System and version (desktop or mobile):
31-
* Link to your project:
32-
33-
34-
# Expected Results
15+
### Expected Results
3516
<!-- Explain here what is your expected behavior of alphaTab. -->
3617

37-
# Observed Results
18+
### Observed Results
3819
<!-- Explain here how alphaTab is behaving currently. -->
3920

40-
# Steps to Reproduce (for bugs)
21+
### Steps to Reproduce
4122
<!--
4223
Explain here the exact steps how to reproduce the problem. Try to provide a
4324
running sample showing the issue. If you have problem with a dedicated input file,
4425
please provide a download link or attach it to the issue.
4526
-->
4627

28+
Link to jsFiddle, CodePen, Project etc.:
29+
4730
1.
4831
2.
4932
3.
5033

51-
# Possible Solution
52-
<!-- If you already know a solution to the problem please provide it here. -->
34+
### Further details
35+
<!-- Provide any further valuable details here, feel free to leave this empty if you do not have more details or an idea how to solve it -->
36+
37+
### Your environment
38+
39+
**Version**
40+
- [ ] 1.0
41+
- [ ] 1.1
42+
- [ ] 1.2-alpha.## <!-- Add your exact version here -->
43+
44+
**Flavor**
45+
- [ ] JavaScript
46+
- [ ] .net
47+
48+
**System**
49+
<!-- Any details about your test environment like Browser name and version, .net version, operating system etc. -->

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Feature Request
4+
url: https://github.com/CoderLine/alphaTab/discussions?discussions_q=category%3AIdeas
5+
about: Propose your desired feature with a new discussion.
6+
- name: General Question
7+
url: https://github.com/CoderLine/alphaTab/discussions?discussions_q=category%3AQ%26A
8+
about: Ask any question about alphaTab.

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/ISSUE_TEMPLATE/question.md

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

.github/pull_request_template.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
### Issues
2+
<!-- Each pull request needs to be related to an issue, mention it here below -->
3+
Fixes #
4+
5+
### Proposed changes
6+
<!-- Describe the proposed changes -->
7+
8+
### Checklist
9+
- [ ] I consent that this change becomes part of alphaTab under it's current or any future open source license
10+
- [ ] Changes are implemented
11+
- [ ] Existing builds tests pass
12+
- [ ] New tests were added
13+
14+
## Further details
15+
- [ ] This is a breaking change
16+
- [ ] This change will require update of the documentation/website

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@ bin/
88
.vs/
99
*.user
1010
*.tgz
11-
test-results/
11+
test-results/
12+
debug.log
13+
src/generated/VersionInfo.ts

.vscode/launch.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
78
{
89
"name": "Launch C# Compiler",
910
"type": "node",
@@ -25,6 +26,45 @@
2526
"env": {
2627
"TS_NODE_PROJECT": "tsconfig.build-csharp.json"
2728
}
29+
},
30+
31+
{
32+
"name": "Launch TypeScript Generator",
33+
"type": "node",
34+
"request": "launch",
35+
"args": [
36+
"src.compiler/typescript/AlphaTabGenerator.ts",
37+
"--project",
38+
"tsconfig.build-csharp.json"
39+
],
40+
"runtimeArgs": [
41+
"--nolazy",
42+
"-r",
43+
"ts-node/register"
44+
],
45+
"cwd": "${workspaceRoot}",
46+
"protocol": "inspector",
47+
"smartStep": false,
48+
"internalConsoleOptions": "openOnSessionStart",
49+
"env": {
50+
"TS_NODE_PROJECT": "tsconfig.build-csharp.json"
51+
}
52+
},
53+
54+
{
55+
"name": "Launch JavaScript Compiler",
56+
"type": "node",
57+
"request": "launch",
58+
"runtimeExecutable": "npm",
59+
"windows": {
60+
"runtimeExecutable": "npm.cmd"
61+
},
62+
"runtimeArgs": [
63+
"run-script",
64+
"build",
65+
"--inspect-brk=5858"
66+
],
67+
"port": 5858
2868
}
2969
]
3070
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"files.exclude": {
33
"dist/lib.csharp/**": true,
4-
"src.csharp/**": true
4+
"src.csharp/**": true,
5+
"node_modules/**": true
56
}
67
}

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ alphaTab is a cross platform music notation and guitar tablature rendering libra
88

99
![alphaTab](img/banner.png?raw=true "alphaTab")
1010

11+
# Getting Started
12+
13+
To get started follow our guides and tutorials at:
14+
15+
* https://www.alphatab.net/docs/introduction
16+
* https://www.alphatab.net/docs/tutorials
17+
1118
## Build Status
1219

1320
> Until the official 1.0 release we recommend to use pre release versions based on the `develop` branch.
@@ -20,9 +27,7 @@ alphaTab is a cross platform music notation and guitar tablature rendering libra
2027
# Downloads
2128

2229
The latest binaries based are available for download at either npmjs.org or NuGet.org.
23-
Use the links below to grab the binaries from the latest builds. Please do not use the GitHub releases yet, they are not maintained. We recommend using package managers to pull the files to your projects.
24-
25-
> Until the official 1.0 release we recommend to use `develop` branch which are available as "pre-release" versions on the package registries.
30+
Use the links below to grab the binaries from the latest builds. We recommend using package managers to pull the files to your projects.
2631

2732
&nbsp; | &nbsp;
2833
--- | --- |

code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at [email protected]. All
58+
reported by contacting the project team via GitHub options. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

0 commit comments

Comments
 (0)