kopia lustrzana https://github.com/jameshball/osci-render
Update changelog and version
rodzic
5a28a31944
commit
66b37f6a16
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -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
|
- 1.25.2
|
||||||
- Bug fix: Fix FileSystemNotFoundException on start-up due to faulty loading of code editor file
|
- Bug fix: Fix FileSystemNotFoundException on start-up due to faulty loading of code editor file
|
||||||
|
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>sh.ball</groupId>
|
<groupId>sh.ball</groupId>
|
||||||
<artifactId>osci-render</artifactId>
|
<artifactId>osci-render</artifactId>
|
||||||
<version>1.25.2</version>
|
<version>1.26.0</version>
|
||||||
|
|
||||||
<name>osci-render</name>
|
<name>osci-render</name>
|
||||||
|
|
||||||
|
|
|
@ -80,10 +80,10 @@
|
||||||
</Separator>
|
</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="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="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="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="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="perspective" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate y" type="ROTATE_Y" 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="perspective" majorTickUnit="0.2" max="1.0" min="-1.0" name="Rotate z" type="ROTATE_Z" value="0.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">
|
<Label alignment="CENTER" prefWidth="601.0" text="Other" textAlignment="JUSTIFY">
|
||||||
<padding>
|
<padding>
|
||||||
<Insets bottom="5.0" />
|
<Insets bottom="5.0" />
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
<menus>
|
<menus>
|
||||||
<Menu mnemonicParsing="false" text="File">
|
<Menu mnemonicParsing="false" text="File">
|
||||||
<items>
|
<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">
|
<MenuItem fx:id="openProjectMenuItem" mnemonicParsing="false" text="Open Project">
|
||||||
<accelerator>
|
<accelerator>
|
||||||
<KeyCodeCombination alt="UP" code="O" control="UP" meta="UP" shift="UP" shortcut="DOWN" />
|
<KeyCodeCombination alt="UP" code="O" control="UP" meta="UP" shift="UP" shortcut="DOWN" />
|
||||||
|
|
Ładowanie…
Reference in New Issue