From 4296238874df17e02c421dd147d7a47d5619cb06 Mon Sep 17 00:00:00 2001
From: Florent Berthaut <florent.berthaut@univ-lille.fr>
Date: Tue, 22 Aug 2023 12:12:40 +0200
Subject: [PATCH] Updated readme

---
 README.md | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8be96cc..527a23b 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,25 @@
 # gdpd
 
 gdpd is a Godot add-on for loading and processing Pure Data patches.
+The audio is played using Jack on GNU/Linux and CoreAudio on OSX.
+
+
+The *master* branch is for Godot 4.X.
+Use the Godot3 branch for previous versions.
+
 
 # Using gdpd
 
+
+Install the gdpd folder in the addons folder of your Godot project.
+
+
 In a script, 
 
 1. Initialize gdpd
 
 ```python
-@onready var _gdpd = load("res://addons/gdpd/bin/gdpd.gdns").new()
+@onready var _gdpd = GdPd.new()
 ```
 
 2. Initialize the audio inputs and outputs
-- 
GitLab