Update changelog and version

pull/88/head
James Ball 2022-06-19 16:16:49 +01:00 zatwierdzone przez James H Ball
rodzic 5a28a31944
commit 66b37f6a16
4 zmienionych plików z 28 dodań i 6 usunięć

Wyświetl plik

@ -1,3 +1,25 @@
- 1.26.0
- Reorganise the interface so that more sliders are considered audio effects
- This means you can animate things like volume, rotation, and translation!
- Add a precedence to audio effects so that they are consistently applied in the same order
- Lower precedence means the effect will be applied earlier
- Precedence of current effects from lowest to highest:
- Vector cancelling
- Bit crush
- Vertical distort
- Horizontal distort
- Wobble
- Rotate 2D
- Translation
- Depth 3D
- Smoothing
- This means that smoothing is always applied last
- Add 3D audio effects
- This treats the image being displayed as a 3D object and rotates it
- This means you can now rotate 2D images, like SVGs and text files
- COMING SOON: A way to control the depth or Z-coordinate of the image using a depth-map/displacement-map image
- 1.25.2
- Bug fix: Fix FileSystemNotFoundException on start-up due to faulty loading of code editor file

Wyświetl plik

@ -6,7 +6,7 @@
<groupId>sh.ball</groupId>
<artifactId>osci-render</artifactId>
<version>1.25.2</version>
<version>1.26.0</version>
<name>osci-render</name>

Wyświetl plik

@ -80,10 +80,10 @@
</Separator>
<EffectComponentGroup fx:id="rotateSpeed" increment="0.05" label="rotateSpeed" majorTickUnit="1.0" max="10.0" min="0.0" name="2D Rotate speed" type="ROTATE" value="0.0" />
<EffectComponentGroup fx:id="depthScale" increment="0.005" label="depthScale" majorTickUnit="0.1" max="1.0" min="0.0" name="3D Depth" type="DEPTH_3D" value="0.1" />
<EffectComponentGroup fx:id="rotateSpeed3D" alwaysEnabled="true" increment="0.005" label="rotateSpeed3D" majorTickUnit="0.2" max="1.0" min="-1.0" name="3D Rotate speed" type="ROTATE_SPEED_3D" value="0.0" />
<EffectComponentGroup fx:id="rotateX" alwaysEnabled="true" increment="0.01" label="perspective" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate x" type="ROTATE_X" value="1.0" />
<EffectComponentGroup fx:id="rotateY" alwaysEnabled="true" increment="0.01" label="perspective" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate y" type="ROTATE_Y" value="1.0" />
<EffectComponentGroup fx:id="rotateZ" alwaysEnabled="true" increment="0.01" label="perspective" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate z" type="ROTATE_Z" value="0.0" />
<EffectComponentGroup fx:id="rotateSpeed3D" alwaysEnabled="true" increment="0.005" label="rotateSpeed3d" majorTickUnit="0.2" max="1.0" min="-1.0" name="3D Rotate speed" type="ROTATE_SPEED_3D" value="0.0" />
<EffectComponentGroup fx:id="rotateX" alwaysEnabled="true" increment="0.01" label="imageRotateX" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate x" type="ROTATE_X" value="1.0" />
<EffectComponentGroup fx:id="rotateY" alwaysEnabled="true" increment="0.01" label="imageRotateY" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate y" type="ROTATE_Y" value="1.0" />
<EffectComponentGroup fx:id="rotateZ" alwaysEnabled="true" increment="0.01" label="imageRotateZ" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate z" type="ROTATE_Z" value="0.0" />
<Label alignment="CENTER" prefWidth="601.0" text="Other" textAlignment="JUSTIFY">
<padding>
<Insets bottom="5.0" />

Wyświetl plik

@ -21,7 +21,7 @@
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem disable="true" mnemonicParsing="false" text="osci-render v1.25.2" />
<MenuItem disable="true" mnemonicParsing="false" text="osci-render v1.26.0" />
<MenuItem fx:id="openProjectMenuItem" mnemonicParsing="false" text="Open Project">
<accelerator>
<KeyCodeCombination alt="UP" code="O" control="UP" meta="UP" shift="UP" shortcut="DOWN" />