diff --git a/CHANGELOG.md b/CHANGELOG.md
index a856a9a..89fd4db 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 2.0.3
+
+### Changes
+
+- Updated instructions for building and running locally
+
# 2.0.2
### Changes
diff --git a/CITATION.cff b/CITATION.cff
index 579f8df..021118c 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -30,5 +30,5 @@ keywords:
- MIDI keyboard
license: GNU Affero General Public License v3.0
-version: 2.0.2
+version: 2.0.3
date-released: "2022-07-08"
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0a3fc4a..fdec5d4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,7 +1,7 @@
# Contributing
First off, **thank you** for considering to contribute! We aim to build an
-inclusive community around the JSS-01 project. You should know that there
+inclusive community around the *JSS-01* project. You should know that there
are many ways to contribute. You can write tutorials, create videos or blog posts,
improve the documentation, submit issues (such as bug reports or feature requests), as well as write actual code.
All of these are very worthwhile contributions and are more than welcome!
diff --git a/FUNDING.yml b/FUNDING.yml
index 3b6449c..5fc745f 100644
--- a/FUNDING.yml
+++ b/FUNDING.yml
@@ -1 +1,2 @@
github: michaelkolesidis
+
diff --git a/LICENSE b/LICENSE
index be3f7b2..2beb9e1 100644
--- a/LICENSE
+++ b/LICENSE
@@ -659,3 +659,4 @@ specific requirements.
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
.
+
diff --git a/README.md b/README.md
index f1da44a..ba268e1 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
[![made-with-typescript](https://img.shields.io/badge/Made%20with-TypeScript-01004c.svg)](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
[![MIT license](https://img.shields.io/badge/License-AGPLv3-01004c.svg)](https://www.gnu.org/licenses/agpl-3.0.html)
-[![Version](https://img.shields.io/badge/version-2.0.2-01004c.svg)](https://shields.io/)
+[![Version](https://img.shields.io/badge/version-2.0.3-01004c.svg)](https://shields.io/)
## Technologies Used
@@ -46,10 +46,18 @@ cd javascript-software-synthesizer
Install the project dependencies:
```
-yarn build
+yarn
```
-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.
+Start the Vite development server:
+
+```
+yarn dev
+```
+
+### For versions 1.x.x
+
+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.
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)
diff --git a/package.json b/package.json
index 27dece0..76fb75f 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "javascript-software-synthesizer",
"author": "Michael Kolesidis",
"license": "AGPL-3.0-or-later",
- "version": "2.0.2",
+ "version": "2.0.3",
"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.",
"private": false,
"type": "module",
diff --git a/src/elements/footer.ts b/src/elements/footer.ts
index 5f94a71..b9a3912 100644
--- a/src/elements/footer.ts
+++ b/src/elements/footer.ts
@@ -15,7 +15,7 @@ export default function footer() {
`;