Semver
Given a version number MAJOR.MINOR.PATCH
:
. n.n.n refers to sections in the WebGL 1.0 specification. n.n.n refers to sections in the WebGL 2.0 specification. Content in blue is newly added with WebGL 2.0. Content in purple or marked with. has no corresponding OpenGL ES 3.0 function. Per-Fragment Operations 5.14.3 void blendColor(clampf red, clampf green, clampf blue. CHEAT SHEET 1 5-8 1-16 1-16 2 3 4 PAD INPUT MODES NOTE REPEAT AND ARP Select pad input modes Play note repeat or arp Set note repeat length / value In order to change a layout without changing display focus hold shift and press any of the pad input mode buttons above. Strum sounds Create a new project Save a project Save a copy of project. Font awesome Cheat sheet. Search for icons. Icon Name Class Code Unicode Search Changed in Version. Data Visualization - RStudio. Office cheat sheets. Get up to speed in minutes, quickly refer to things you've learned, and master keyboard shortcuts. If you have trouble viewing these PDFs, install the free Adobe Acrobat Reader DC.
Cheatsheet 1 3 2 0 15 Download
MAJOR | incompatible API changes |
MINOR | add functionality (backwards-compatible) |
PATCH | bug fixes (backwards-compatible) |
Simple ranges
Note that suffixed versions (1.2.3-rc1
) are not matched.
Ranges
Range | Description | Notes |
---|
~1.2.3 | is >=1.2.3 <1.3.0 |
^1.2.3 | is >=1.2.3 <2.0.0 |
^0.2.3 | is >=0.2.3 <0.3.0 | (0.x.x is special) |
^0.0.1 | is =0.0.1 | (0.0.x is special) |
^1.2 | is >=1.2.0 <2.0.0 | (like ^1.2.0) |
~1.2 | is >=1.2.0 <1.3.0 | (like ~1.2.0) |
^1 | is >=1.0.0 <2.0.0 |
~1 | same |
1.x | same |
1.* | same |
1 | same |
* | any version |
x | same |
Hyphenated ranges
Range | Description |
---|
1.2.3 - 2.3.4 | is >=1.2.3 <=2.3.4 |
Partial right
Range | Description |
---|
1.2.3 - 2.3 | is >=1.2.3 <2.4.0 |
1.2.3 - 2 | is >=1.2.3 <3.0.0 |