Skip to content

Commit

Permalink
Bump/revise to version 3.6.0
Browse files Browse the repository at this point in the history
There were too many deep changes with the Neo branch to bump the
bugfix version instead of the minor version. Linux repository
maintainers would not be too happy with that kind of massive
change in a bugfix release.
  • Loading branch information
qyot27 committed May 20, 2020
1 parent 962eb28 commit e08d7c8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions avs_core/core/version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

#define AVS_PROJECT AviSynth+
#define AVS_MAJOR_VER 3
#define AVS_MINOR_VER 5
#define AVS_BUGFIX_VER 2
#define AVS_MINOR_VER 6
#define AVS_BUGFIX_VER 0
#ifdef RELEASE_TARBALL
#define AVS_FULLVERSION AVS_PPSTR(AVS_PROJECT) " " AVS_PPSTR(AVS_MAJOR_VER) "." AVS_PPSTR(AVS_MINOR_VER) "." AVS_PPSTR(AVS_BUGFIX_VER) " (" AVS_PPSTR(AVS_ARCH) ")"
#else
Expand Down
2 changes: 1 addition & 1 deletion avs_core/include/avisynth.h
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ class IScriptEnvironment {
// noThrow version of GetVar
virtual AVSValue __stdcall GetVarDef(const char* name, const AVSValue& def = AVSValue()) = 0;

// **** AVISYNTH_INTERFACE_VERSION 8 **** AviSynth+ 3.5.2-
// **** AVISYNTH_INTERFACE_VERSION 8 **** AviSynth+ 3.6.0-
virtual PVideoFrame __stdcall SubframePlanarA(PVideoFrame src, int rel_offset, int new_pitch, int new_row_size,
int new_height, int rel_offsetU, int rel_offsetV, int new_pitchUV, int rel_offsetA) = 0;

Expand Down
12 changes: 6 additions & 6 deletions distrib/Readme/readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Avisynth+ v3.5.? (dev-20200322)
-------------------------
Avisynth+ v3.6.0
----------------

Use the installer or copy files directly
- 64 bit OS:
Expand Down Expand Up @@ -31,8 +31,8 @@ Short info for plugin writers

(see readme_history.txt for details, syntax element, etc. They also appear on avisynth.nl)

20200331 3.5.? (dev)
--------------------
20200331 3.6.0
--------------
- New function:
SetMaxCPU(string feature)

Expand Down Expand Up @@ -218,8 +218,8 @@ Short info for plugin writers
- Frame properties (still from Neo!)
(experimental, we have planned it in Avs+, probably we'll try to follow the VapourSynth methods(?))

20200322 3.5.? (dev)
--------------------
20200322 3.6.0
--------------
- Fix: Multithreading enhancements and fixes (Nekopanda, from Neo fork)
- Fix old ScriptClip (runtime filters) issue
In this example "current_frame" variable was not seen by YDifferenceFromPrevious scripted within SubTitle
Expand Down
7 changes: 4 additions & 3 deletions distrib/Readme/readme_history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Source: https://github.com/AviSynth/AviSynthPlus

For a more logical (non-historical) arrangement of changes see readme.txt

20200504 3.5.2 (dev)
20200504 3.6.0
--------------
- Scripts arrays (Info for plugin writers)
Plugin parameter definition: allow type+'.' and type+'*' syntax for named array parameters

Expand Down Expand Up @@ -74,8 +75,8 @@ For a more logical (non-historical) arrangement of changes see readme.txt

- Test build published on (20200428)

20200428 3.5.2 (dev)
--------------------
20200428 3.6.0
--------------
- New: Format function

Syntax:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ AviSynth v2.5.x header will work in AviSynth 2.6.x and specific
Avisynth+ version (though a bit late) changed version to
``AVISYNTH_INTERFACE_VERSION = 7.``

From AviSynth+ version 3.5.2 new interface functions arrived
From AviSynth+ version 3.6.0 new interface functions arrived
along with frame properties support
``AVISYNTH_INTERFACE_VERSION = 8.``

Expand Down
4 changes: 2 additions & 2 deletions distrib/docs/english/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '3.5'
version = '3.6'
# The full version, including alpha/beta/rc tags.
release = '3.5'
release = '3.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit e08d7c8

Please sign in to comment.