diff --git a/README.md b/README.md
index fab1330..30ca037 100644
--- a/README.md
+++ b/README.md
@@ -19,14 +19,14 @@ The table below aims to explain the scope format from a music-production perspec
| Time Format
(seconds/beats) | Beats and seconds can be combined | Beats | Seconds |
| Audio | Audio
Events/Clips
Fades
Crossfades
Amplitude
Pan
Time Warping
Transpose | - | Audio
Events/Clips
Fades
Crossfades
Amplitude
Pan |
| Notes | Notes
Note Expressions | Notes | - |
-| Automation | Tempo
Time Signature
MIDI Messages
Volume
Pan
Mute
Sends
Plug-in Parameters
Built-in Device Parameters | Tempo
Time Signature
MIDI Messages
SySex Messages | Volume
Pan
Video Related Parameters |
+| Automation | Tempo
Time Signature
MIDI Messages
Volume
Pan
Mute
Sends
Plug-in Parameters
Built-in Device Parameters | Tempo
Time Signature
MIDI Messages
SysEx Messages | Volume
Pan
Video Related Parameters |
| Plug-ins | Stores full plug-in state
and automation of parameters | - | - |
| Built-in Devices | Generic EQ
Generic Compressor
Generic Gate
Generic Limiter | - | - |
| Clip Launcher | Clips
Scenes | - | - |
## Status
-The format is being actively developed and will still undergo structural changes. The aim is to have a stable (1.0) specification of the format in 2023.
+The format is version 1.0 and is stable.
## Goals
@@ -89,7 +89,7 @@ As an example, here's the project.xml of a simple file saved in Bitwig Studio 5.
```xml
-
+
@@ -172,18 +172,8 @@ As an example, here's the project.xml of a simple file saved in Bitwig Studio 5.
## DAW Support
-### Enable experimental support in Bitwig Studio (4.0 or later)
+DAWproject 1.0 is currently supported by the following DAWs
-Create a file named config.json with the following content inside you user settings directory.
-
-```
-dawproject : true
-```
-
-The user settings directory is different on each platform
-
-* Windows: %LOCALAPPDATA%/Bitwig Studio
-* Mac: Library/Application Support/Bitwig/Bitwig Studio
-* Linux: ~/.BitwigStudio
-
-This will add an "Export Project..." entry in the FILE menu and allow DAWproject files to be opened.
+* Bitwig Studio 5.0.9
+* PreSonus Studio One 6.5
+
diff --git a/src/main/java/com/bitwig/dawproject/DawProject.java b/src/main/java/com/bitwig/dawproject/DawProject.java
index 43fc24f..a6dd900 100644
--- a/src/main/java/com/bitwig/dawproject/DawProject.java
+++ b/src/main/java/com/bitwig/dawproject/DawProject.java
@@ -31,7 +31,7 @@
public class DawProject
{
- public static final String FORMAT_NAME = "DAW-project exchange format";
+ public static final String FORMAT_NAME = "DAWproject exchange format";
public static final String FILE_EXTENSION = "dawproject";
private static final String PROJECT_FILE = "project.xml";
diff --git a/src/main/java/com/bitwig/dawproject/Project.java b/src/main/java/com/bitwig/dawproject/Project.java
index a3903cd..86a432f 100644
--- a/src/main/java/com/bitwig/dawproject/Project.java
+++ b/src/main/java/com/bitwig/dawproject/Project.java
@@ -18,7 +18,7 @@
@XmlSeeAlso({Device.class, Timeline.class})
public class Project
{
- public static String CURRENT_VERSION = "0.1";
+ public static String CURRENT_VERSION = "1.0";
/** Version of DAWPROJECT format this file was saved as. */
@XmlAttribute(required = true)