Skip to content

Commit c270b6b

Browse files
v.2.0.3
1 parent 69af359 commit c270b6b

File tree

8 files changed

+23
-7
lines changed

8 files changed

+23
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 2.0.3
2+
3+
### Changes
4+
5+
- Updated instructions for building and running locally
6+
17
# 2.0.2
28

39
### Changes

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ keywords:
3030
- MIDI keyboard
3131

3232
license: GNU Affero General Public License v3.0
33-
version: 2.0.2
33+
version: 2.0.3
3434
date-released: "2022-07-08"

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing
22

33
First off, **thank you** for considering to contribute! We aim to build an
4-
inclusive community around the JSS-01 project. You should know that there
4+
inclusive community around the *JSS-01* project. You should know that there
55
are many ways to contribute. You can write tutorials, create videos or blog posts,
66
improve the documentation, submit issues (such as bug reports or feature requests), as well as write actual code.
77
All of these are very worthwhile contributions and are more than welcome!

FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
github: michaelkolesidis
2+

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -659,3 +659,4 @@ specific requirements.
659659
if any, to sign a "copyright disclaimer" for the program, if necessary.
660660
For more information on this, and how to apply and follow the GNU AGPL, see
661661
<https://www.gnu.org/licenses/>.
662+

README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![made-with-typescript](https://img.shields.io/badge/Made%20with-TypeScript-01004c.svg)](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
77
[![MIT license](https://img.shields.io/badge/License-AGPLv3-01004c.svg)](https://www.gnu.org/licenses/agpl-3.0.html)
8-
[![Version](https://img.shields.io/badge/version-2.0.2-01004c.svg)](https://shields.io/)
8+
[![Version](https://img.shields.io/badge/version-2.0.3-01004c.svg)](https://shields.io/)
99

1010
## Technologies Used
1111

@@ -46,10 +46,18 @@ cd javascript-software-synthesizer
4646
Install the project dependencies:
4747

4848
```
49-
yarn build
49+
yarn
5050
```
5151

52-
You can now run the _JavaScript Software Synthesizer_ locally easily by using a VSCode extension like **Live Server** ([Live Server on the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)) or Python's **http.server** module.
52+
Start the Vite development server:
53+
54+
```
55+
yarn dev
56+
```
57+
58+
### For versions 1.x.x
59+
60+
Before the introduction of Vite in version 2.0.0, after installing the dependencies, users could run _JavaScript Software Synthesizer_ locally by using a VSCode extension like **Live Server** ([Live Server on the Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)) or Python's **http.server** module.
5361

5462
For more information, please refer to MDN's excellent article: [MDN article](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Tools_and_setup/set_up_a_local_testing_server)
5563

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "javascript-software-synthesizer",
33
"author": "Michael Kolesidis",
44
"license": "AGPL-3.0-or-later",
5-
"version": "2.0.2",
5+
"version": "2.0.3",
66
"description": "TThe JSS-01 | JavaScript Software Synthesizer is a web app enabling you to make and play music in the browser. It is a software synthesizer implementing a variety of JavaScript frameworks and libraries, such as Tone.js and NexusUI2.",
77
"private": false,
88
"type": "module",

src/elements/footer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function footer() {
1515
</p>
1616
</div>
1717
<div id="version">
18-
<a href="https://github.com/michaelkolesidis/javascript-software-synthesizer/releases" target="_blank">v.2.0.2
18+
<a href="https://github.com/michaelkolesidis/javascript-software-synthesizer/releases" target="_blank">v.2.0.3
1919
</a>
2020
</div>
2121
`;

0 commit comments

Comments
 (0)