Skip to content

Commit

Permalink
v.2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkolesidis committed Jul 2, 2023
1 parent 69af359 commit c270b6b
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 2.0.3

### Changes

- Updated instructions for building and running locally

# 2.0.2

### Changes
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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!
Expand Down
1 change: 1 addition & 0 deletions FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
github: michaelkolesidis

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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
<https://www.gnu.org/licenses/>.

14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/elements/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function footer() {
</p>
</div>
<div id="version">
<a href="https://github.com/michaelkolesidis/javascript-software-synthesizer/releases" target="_blank">v.2.0.2
<a href="https://github.com/michaelkolesidis/javascript-software-synthesizer/releases" target="_blank">v.2.0.3
</a>
</div>
`;
Expand Down

0 comments on commit c270b6b

Please sign in to comment.