From 45fa4d0fd6f7fb4e9ef2a3156c72136270e27f98 Mon Sep 17 00:00:00 2001 From: fincs Date: Sun, 11 Feb 2018 20:20:33 +0100 Subject: [PATCH] v2.7 --- Changelog.md | 7 +++++++ configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 6796619..666ec9d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # picasso Changelog +# v2.7 + +- Added `dst`, `litp` and `break` instructions (thanks to @Tilka). +- Added check to enforce index regs being used only with floating point vector uniforms. +- Renamed index registers to match D3D naming conventions (`a0.x`, `a0.y`, `aL`) (old names still accepted). +- Miscellaneous bugfixes and improvements (thanks to @lioncash). + # v2.6.2 - Fixed several compilation errors in some compilers. diff --git a/configure.ac b/configure.ac index c25b094..c911e59 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([picasso],[2.6.2],[fincs.alt1@gmail.com]) +AC_INIT([picasso],[2.7.0],[fincs.alt1@gmail.com]) AC_CONFIG_SRCDIR([source/picasso_frontend.cpp]) AM_INIT_AUTOMAKE([1.10])