Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
houmaster committed Dec 23, 2020
1 parent 4761475 commit bdb974d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [Version 1.14] - 2020-12-23
### Added
- Expressions for texture dimensions.
- Expressions for block offset and row count.
- Separating recent files and sessions.
- Script/Expression evaluation timeout.
- Made source compatible with Qt6.

### Fixed
- Fixed session modified indicator.
- Fixed buffer field invalidation.
- Fixed untitled buffer upload.
- Improved buffer editing performance.

## [Version 1.13] - 2020-11-21
### Added
- Added indirect compute call.
Expand Down Expand Up @@ -201,7 +215,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Version 1.0] - 2019-04-14

[Unreleased]: https://github.com/houmaster/gpupad/compare/1.13...HEAD
[Unreleased]: https://github.com/houmaster/gpupad/compare/1.14...HEAD
[Version 1.14]: https://github.com/houmaster/gpupad/compare/1.13...1.14
[Version 1.13]: https://github.com/houmaster/gpupad/compare/1.12...1.13
[Version 1.12]: https://github.com/houmaster/gpupad/compare/1.11...1.12
[Version 1.11]: https://github.com/houmaster/gpupad/compare/1.10...1.11
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ There is one JavaScript state for the whole session and the scripts are evaluate

Building
--------
A C++17 conforming compiler and [Qt5](https://www.qt.io/) is required. A script for the
A C++17 conforming compiler and [Qt5 or Qt6](https://www.qt.io/) are required. A script for the
[CMake](https://cmake.org) build system is provided.

**Arch Linux** users can install it from the [AUR](https://aur.archlinux.org/packages/gpupad-git).
Expand Down
8 changes: 4 additions & 4 deletions samples/Particles/Particles.gpjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"format": "RGB8_UNorm",
"height": 512,
"height": "512",
"id": 77,
"name": "Texture",
"target": "Target2D",
"type": "Texture",
"width": 512
"width": "512"
},
{
"executeOn": "EveryEvaluation",
Expand Down Expand Up @@ -39,8 +39,8 @@
}
],
"name": "Particle",
"offset": 0,
"rowCount": 100000,
"offset": "0",
"rowCount": "particleCount",
"type": "Block"
}
],
Expand Down

0 comments on commit bdb974d

Please sign in to comment.