Increment version number and changelog

pull/105/head v1.27.4
James Ball 2022-07-20 17:32:12 +01:00 zatwierdzone przez James H Ball
rodzic 3666eff842
commit e19fa93527
3 zmienionych plików z 14 dodań i 2 usunięć

Wyświetl plik

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

Wyświetl plik

@ -1,3 +1,15 @@
- 1.27.4
- Allow the 3D perspective effect to be live-programmed with Lua
- By default, the behaviour is the same as before and the image is not modified
- Variables `x`, `y`, and `z` are available to used to transform the 3D position of the image
- `step` is also available as with regular live-coding
- This lets you animate the effects you apply
- Most interesting transformations include modifying the depth to be a function of `x` and `y`
- Example: `return { x, y, z + 0.1 * math.sin(x * 10 + step / 100000) }`
- This creates a wave effect for the image which can be visualised more clearly by rotating the image
- Functions written are saved with the project
- 1.27.3
- Fix [#102](https://github.com/jameshball/osci-render/issues/102) which caused errors when using trace min and small focal lengths at the same time
- Thanks [Luiginotcool](https://github.com/Luiginotcool) for reporting this issue!

Wyświetl plik

@ -27,7 +27,7 @@
<Button fx:id="newProjectButton" layoutX="222.0" layoutY="562.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="131.0" text="Start new project" />
<CheckBox fx:id="startMutedCheckBox" layoutX="240.0" layoutY="623.0" mnemonicParsing="false" text="Start muted" />
<Label layoutX="188.0" layoutY="247.0" styleClass="title" text="Recently opened projects" />
<Label layoutX="14.0" layoutY="700.0" text="v1.27.3" />
<Label layoutX="14.0" layoutY="700.0" text="v1.27.4" />
<Label layoutX="727.0" layoutY="20.0" styleClass="title" text="Changelog" />
<AnchorPane layoutX="582.0" layoutY="65.0" prefHeight="200.0" prefWidth="380.0">
<children>