mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
bump version to 0.95.1, update documents for changes so far.
This commit is contained in:
parent
aba330cacd
commit
58bf9dff65
6 changed files with 160 additions and 132 deletions
|
@ -3,7 +3,7 @@
|
|||
<title>QuakeSpasm
|
||||
<toc>
|
||||
|
||||
<em>Page last edited: September 2022.</em>
|
||||
<em>Page last edited: October 2022.</em>
|
||||
|
||||
<sect>About<p>
|
||||
|
||||
|
@ -25,7 +25,6 @@ but no CD-ROM support.
|
|||
|
||||
|
||||
<sect>Hints<p>
|
||||
|
||||
<em>Visit the <url url="http://www.celephais.net/fitzquake" name="FitzQuake homepage"> for a full run-down of the engine's commands and variables.</em>
|
||||
<itemize>
|
||||
<item>To disable some changes, use "<bf>quakespasm -fitz</bf>"
|
||||
|
@ -101,7 +100,7 @@ These buttons can be bound normally:
|
|||
|
||||
quakespasm.pak contains a default.cfg which has been updated to give some default bindings. L/R shoulder buttons are bound to weapon switching, and L/R triggers are jump and attack.
|
||||
<p>
|
||||
The controller support started as Jeremiah Sypult's implementation in Quakespasm-Rift and also uses ideas and code from LordHavoc (DarkPlaces).
|
||||
The controller support started as Jeremiah Sypult's implementation in Quakespasm-Rift, and also uses ideas/code from LordHavoc's DarkPlaces.
|
||||
|
||||
|
||||
<sect>Compiling and Installation<p>
|
||||
|
@ -136,6 +135,15 @@ QuakeSpasm 0.94 has support for playing the 2021 re-release content: Copy the qu
|
|||
|
||||
<sect>Changes<p>
|
||||
|
||||
<sect1>Changes in 0.95.1<p>
|
||||
<itemize>
|
||||
<item> Fix screen flashes in some maps with AMD's new drivers (patch from temx)
|
||||
<item> Defend against zero-sized textures, e.g. __TB_empty in qbj_grue.bsp (patch from temx)
|
||||
<item> Fix possible file pointer leak in game load code (patch from temx)
|
||||
<item> Minor code cleanups. Updated third party code, e.g. SDL, music codecs, etc.
|
||||
</itemize>
|
||||
</p>
|
||||
|
||||
<sect1>Changes in 0.95.0<p>
|
||||
<itemize>
|
||||
<item> Add support for lit water (patch contributed by Josiah Jack, with fixes from Eric Wasylishen.)
|
||||
|
|
Binary file not shown.
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.95.0</string>
|
||||
<string>0.95.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
|
|
@ -37,7 +37,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#define FITZQUAKE_VERSION 0.85 //johnfitz
|
||||
#define QUAKESPASM_VERSION 0.95
|
||||
#define QUAKESPASM_VER_PATCH 0 // helper to print a string like 0.94.7
|
||||
#define QUAKESPASM_VER_PATCH 1 // helper to print a string like 0.94.7
|
||||
#ifndef QUAKESPASM_VER_SUFFIX
|
||||
#define QUAKESPASM_VER_SUFFIX // optional version suffix string literal like "-beta1"
|
||||
#endif
|
||||
|
|
127
Quakespasm.html
127
Quakespasm.html
|
@ -8,21 +8,18 @@
|
|||
<H1>QuakeSpasm</H1>
|
||||
|
||||
<H2></H2>
|
||||
<P><EM>Page last edited: September 2022.</EM></P>
|
||||
<P><EM>Page last edited: October 2022.</EM></P>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc1">1.</A> <A HREF="Quakespasm.html#s1">About</A></H2>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc2">2.</A> <A HREF="Quakespasm.html#s2">Downloads</A></H2>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc3">3.</A> <A HREF="Quakespasm.html#s3">Hints</A></H2>
|
||||
<UL>
|
||||
<LI><A NAME="toc3.1">3.1</A> <A HREF="Quakespasm.html#ss3.1">Music Playback</A>
|
||||
<LI><A NAME="toc3.2">3.2</A> <A HREF="Quakespasm.html#ss3.2">Controller Support</A>
|
||||
</UL>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc4">4.</A> <A HREF="Quakespasm.html#s4">Compiling and Installation</A></H2>
|
||||
<UL>
|
||||
|
@ -32,42 +29,40 @@
|
|||
<LI><A NAME="toc4.4">4.4</A> <A HREF="Quakespasm.html#ss4.4">Quake '2021 re-release'</A>
|
||||
</UL>
|
||||
<P>
|
||||
|
||||
<H2><A NAME="toc5">5.</A> <A HREF="Quakespasm.html#s5">Changes</A></H2>
|
||||
<UL>
|
||||
<LI><A NAME="toc5.1">5.1</A> <A HREF="Quakespasm.html#ss5.1">Changes in 0.95.0</A>
|
||||
<LI><A NAME="toc5.2">5.2</A> <A HREF="Quakespasm.html#ss5.2">Changes in 0.94.7</A>
|
||||
<LI><A NAME="toc5.3">5.3</A> <A HREF="Quakespasm.html#ss5.3">Changes in 0.94.6</A>
|
||||
<LI><A NAME="toc5.4">5.4</A> <A HREF="Quakespasm.html#ss5.4">Changes in 0.94.5</A>
|
||||
<LI><A NAME="toc5.5">5.5</A> <A HREF="Quakespasm.html#ss5.5">Changes in 0.94.4</A>
|
||||
<LI><A NAME="toc5.6">5.6</A> <A HREF="Quakespasm.html#ss5.6">Changes in 0.94.3</A>
|
||||
<LI><A NAME="toc5.7">5.7</A> <A HREF="Quakespasm.html#ss5.7">Changes in 0.94.2</A>
|
||||
<LI><A NAME="toc5.8">5.8</A> <A HREF="Quakespasm.html#ss5.8">Changes in 0.94.1</A>
|
||||
<LI><A NAME="toc5.9">5.9</A> <A HREF="Quakespasm.html#ss5.9">Changes in 0.94.0</A>
|
||||
<LI><A NAME="toc5.10">5.10</A> <A HREF="Quakespasm.html#ss5.10">Changes in 0.93.2</A>
|
||||
<LI><A NAME="toc5.11">5.11</A> <A HREF="Quakespasm.html#ss5.11">Changes in 0.93.1</A>
|
||||
<LI><A NAME="toc5.12">5.12</A> <A HREF="Quakespasm.html#ss5.12">Changes in 0.93.0</A>
|
||||
<LI><A NAME="toc5.13">5.13</A> <A HREF="Quakespasm.html#ss5.13">Changes in 0.92.1</A>
|
||||
<LI><A NAME="toc5.14">5.14</A> <A HREF="Quakespasm.html#ss5.14">Changes in 0.92.0</A>
|
||||
<LI><A NAME="toc5.15">5.15</A> <A HREF="Quakespasm.html#ss5.15">Changes in 0.91.0</A>
|
||||
<LI><A NAME="toc5.16">5.16</A> <A HREF="Quakespasm.html#ss5.16">Changes in 0.90.1</A>
|
||||
<LI><A NAME="toc5.17">5.17</A> <A HREF="Quakespasm.html#ss5.17">Changes in 0.90.0</A>
|
||||
<LI><A NAME="toc5.18">5.18</A> <A HREF="Quakespasm.html#ss5.18">Changes in 0.85.9</A>
|
||||
<LI><A NAME="toc5.19">5.19</A> <A HREF="Quakespasm.html#ss5.19">Changes in 0.85.8</A>
|
||||
<LI><A NAME="toc5.20">5.20</A> <A HREF="Quakespasm.html#ss5.20">Changes in 0.85.7</A>
|
||||
<LI><A NAME="toc5.21">5.21</A> <A HREF="Quakespasm.html#ss5.21">Changes in 0.85.6</A>
|
||||
<LI><A NAME="toc5.22">5.22</A> <A HREF="Quakespasm.html#ss5.22">Changes in 0.85.5</A>
|
||||
<LI><A NAME="toc5.23">5.23</A> <A HREF="Quakespasm.html#ss5.23">Changes in 0.85.4</A>
|
||||
<LI><A NAME="toc5.24">5.24</A> <A HREF="Quakespasm.html#ss5.24">Changes in 0.85.3</A>
|
||||
<LI><A NAME="toc5.25">5.25</A> <A HREF="Quakespasm.html#ss5.25">Changes in 0.85.2</A>
|
||||
<LI><A NAME="toc5.26">5.26</A> <A HREF="Quakespasm.html#ss5.26">Changes in 0.85.1</A>
|
||||
<LI><A NAME="toc5.1">5.1</A> <A HREF="Quakespasm.html#ss5.1">Changes in 0.95.1</A>
|
||||
<LI><A NAME="toc5.2">5.2</A> <A HREF="Quakespasm.html#ss5.2">Changes in 0.95.0</A>
|
||||
<LI><A NAME="toc5.3">5.3</A> <A HREF="Quakespasm.html#ss5.3">Changes in 0.94.7</A>
|
||||
<LI><A NAME="toc5.4">5.4</A> <A HREF="Quakespasm.html#ss5.4">Changes in 0.94.6</A>
|
||||
<LI><A NAME="toc5.5">5.5</A> <A HREF="Quakespasm.html#ss5.5">Changes in 0.94.5</A>
|
||||
<LI><A NAME="toc5.6">5.6</A> <A HREF="Quakespasm.html#ss5.6">Changes in 0.94.4</A>
|
||||
<LI><A NAME="toc5.7">5.7</A> <A HREF="Quakespasm.html#ss5.7">Changes in 0.94.3</A>
|
||||
<LI><A NAME="toc5.8">5.8</A> <A HREF="Quakespasm.html#ss5.8">Changes in 0.94.2</A>
|
||||
<LI><A NAME="toc5.9">5.9</A> <A HREF="Quakespasm.html#ss5.9">Changes in 0.94.1</A>
|
||||
<LI><A NAME="toc5.10">5.10</A> <A HREF="Quakespasm.html#ss5.10">Changes in 0.94.0</A>
|
||||
<LI><A NAME="toc5.11">5.11</A> <A HREF="Quakespasm.html#ss5.11">Changes in 0.93.2</A>
|
||||
<LI><A NAME="toc5.12">5.12</A> <A HREF="Quakespasm.html#ss5.12">Changes in 0.93.1</A>
|
||||
<LI><A NAME="toc5.13">5.13</A> <A HREF="Quakespasm.html#ss5.13">Changes in 0.93.0</A>
|
||||
<LI><A NAME="toc5.14">5.14</A> <A HREF="Quakespasm.html#ss5.14">Changes in 0.92.1</A>
|
||||
<LI><A NAME="toc5.15">5.15</A> <A HREF="Quakespasm.html#ss5.15">Changes in 0.92.0</A>
|
||||
<LI><A NAME="toc5.16">5.16</A> <A HREF="Quakespasm.html#ss5.16">Changes in 0.91.0</A>
|
||||
<LI><A NAME="toc5.17">5.17</A> <A HREF="Quakespasm.html#ss5.17">Changes in 0.90.1</A>
|
||||
<LI><A NAME="toc5.18">5.18</A> <A HREF="Quakespasm.html#ss5.18">Changes in 0.90.0</A>
|
||||
<LI><A NAME="toc5.19">5.19</A> <A HREF="Quakespasm.html#ss5.19">Changes in 0.85.9</A>
|
||||
<LI><A NAME="toc5.20">5.20</A> <A HREF="Quakespasm.html#ss5.20">Changes in 0.85.8</A>
|
||||
<LI><A NAME="toc5.21">5.21</A> <A HREF="Quakespasm.html#ss5.21">Changes in 0.85.7</A>
|
||||
<LI><A NAME="toc5.22">5.22</A> <A HREF="Quakespasm.html#ss5.22">Changes in 0.85.6</A>
|
||||
<LI><A NAME="toc5.23">5.23</A> <A HREF="Quakespasm.html#ss5.23">Changes in 0.85.5</A>
|
||||
<LI><A NAME="toc5.24">5.24</A> <A HREF="Quakespasm.html#ss5.24">Changes in 0.85.4</A>
|
||||
<LI><A NAME="toc5.25">5.25</A> <A HREF="Quakespasm.html#ss5.25">Changes in 0.85.3</A>
|
||||
<LI><A NAME="toc5.26">5.26</A> <A HREF="Quakespasm.html#ss5.26">Changes in 0.85.2</A>
|
||||
<LI><A NAME="toc5.27">5.27</A> <A HREF="Quakespasm.html#ss5.27">Changes in 0.85.1</A>
|
||||
</UL>
|
||||
<P>
|
||||
<H2><A NAME="toc6">6.</A> <A HREF="Quakespasm.html#s6">Copyright</A></H2>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc7">7.</A> <A HREF="Quakespasm.html#s7">Contact</A></H2>
|
||||
|
||||
<P>
|
||||
<H2><A NAME="toc8">8.</A> <A HREF="Quakespasm.html#s8">Links</A></H2>
|
||||
|
||||
|
@ -171,7 +166,7 @@ where DRIVER may be alsa, dsp, pulse, esd ...</LI>
|
|||
</UL>
|
||||
</P>
|
||||
<P>quakespasm.pak contains a default.cfg which has been updated to give some default bindings. L/R shoulder buttons are bound to weapon switching, and L/R triggers are jump and attack.</P>
|
||||
<P>The controller support started as Jeremiah Sypult's implementation in Quakespasm-Rift and also uses ideas and code from LordHavoc (DarkPlaces).</P>
|
||||
<P>The controller support started as Jeremiah Sypult's implementation in Quakespasm-Rift, and also uses ideas/code from LordHavoc's DarkPlaces.</P>
|
||||
|
||||
|
||||
<H2><A NAME="s4">4.</A> <A HREF="#toc4">Compiling and Installation</A></H2>
|
||||
|
@ -212,7 +207,18 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
|
||||
<H2><A NAME="s5">5.</A> <A HREF="#toc5">Changes</A></H2>
|
||||
|
||||
<H2><A NAME="ss5.1">5.1</A> <A HREF="#toc5.1">Changes in 0.95.0</A>
|
||||
<H2><A NAME="ss5.1">5.1</A> <A HREF="#toc5.1">Changes in 0.95.1</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
<LI> Fix screen flashes in some maps with AMD's new drivers (patch from temx)</LI>
|
||||
<LI> Defend against zero-sized textures, e.g. __TB_empty in qbj_grue.bsp (patch from temx)</LI>
|
||||
<LI> Fix possible file pointer leak in game load code (patch from temx)</LI>
|
||||
<LI> Minor code cleanups. Updated third party code, e.g. SDL, music codecs, etc.</LI>
|
||||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.2">5.2</A> <A HREF="#toc5.2">Changes in 0.95.0</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -225,7 +231,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.2">5.2</A> <A HREF="#toc5.2">Changes in 0.94.7</A>
|
||||
<H2><A NAME="ss5.3">5.3</A> <A HREF="#toc5.3">Changes in 0.94.7</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -236,7 +242,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.3">5.3</A> <A HREF="#toc5.3">Changes in 0.94.6</A>
|
||||
<H2><A NAME="ss5.4">5.4</A> <A HREF="#toc5.4">Changes in 0.94.6</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -249,7 +255,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.4">5.4</A> <A HREF="#toc5.4">Changes in 0.94.5</A>
|
||||
<H2><A NAME="ss5.5">5.5</A> <A HREF="#toc5.5">Changes in 0.94.5</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -262,7 +268,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.5">5.5</A> <A HREF="#toc5.5">Changes in 0.94.4</A>
|
||||
<H2><A NAME="ss5.6">5.6</A> <A HREF="#toc5.6">Changes in 0.94.4</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -284,7 +290,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.6">5.6</A> <A HREF="#toc5.6">Changes in 0.94.3</A>
|
||||
<H2><A NAME="ss5.7">5.7</A> <A HREF="#toc5.7">Changes in 0.94.3</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -294,7 +300,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.7">5.7</A> <A HREF="#toc5.7">Changes in 0.94.2</A>
|
||||
<H2><A NAME="ss5.8">5.8</A> <A HREF="#toc5.8">Changes in 0.94.2</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -305,7 +311,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.8">5.8</A> <A HREF="#toc5.8">Changes in 0.94.1</A>
|
||||
<H2><A NAME="ss5.9">5.9</A> <A HREF="#toc5.9">Changes in 0.94.1</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -313,7 +319,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.9">5.9</A> <A HREF="#toc5.9">Changes in 0.94.0</A>
|
||||
<H2><A NAME="ss5.10">5.10</A> <A HREF="#toc5.10">Changes in 0.94.0</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -338,7 +344,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.10">5.10</A> <A HREF="#toc5.10">Changes in 0.93.2</A>
|
||||
<H2><A NAME="ss5.11">5.11</A> <A HREF="#toc5.11">Changes in 0.93.2</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -351,7 +357,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.11">5.11</A> <A HREF="#toc5.11">Changes in 0.93.1</A>
|
||||
<H2><A NAME="ss5.12">5.12</A> <A HREF="#toc5.12">Changes in 0.93.1</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -365,7 +371,7 @@ Alternatively, have a look at <B>Makefile.darwin</B> for more instructions on bu
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.12">5.12</A> <A HREF="#toc5.12">Changes in 0.93.0</A>
|
||||
<H2><A NAME="ss5.13">5.13</A> <A HREF="#toc5.13">Changes in 0.93.0</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -408,7 +414,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.13">5.13</A> <A HREF="#toc5.13">Changes in 0.92.1</A>
|
||||
<H2><A NAME="ss5.14">5.14</A> <A HREF="#toc5.14">Changes in 0.92.1</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -418,7 +424,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.14">5.14</A> <A HREF="#toc5.14">Changes in 0.92.0</A>
|
||||
<H2><A NAME="ss5.15">5.15</A> <A HREF="#toc5.15">Changes in 0.92.0</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -437,7 +443,8 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
<LI> Updated some of the third-party libraries. Other fixes/clean-ups.</LI>
|
||||
</UL>
|
||||
</P>
|
||||
<H2><A NAME="ss5.15">5.15</A> <A HREF="#toc5.15">Changes in 0.91.0</A>
|
||||
|
||||
<H2><A NAME="ss5.16">5.16</A> <A HREF="#toc5.16">Changes in 0.91.0</A>
|
||||
</H2>
|
||||
<H3>Bugfixes</H3>
|
||||
<P>
|
||||
|
@ -487,7 +494,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.16">5.16</A> <A HREF="#toc5.16">Changes in 0.90.1</A>
|
||||
<H2><A NAME="ss5.17">5.17</A> <A HREF="#toc5.17">Changes in 0.90.1</A>
|
||||
</H2>
|
||||
<H3>Bugfixes</H3>
|
||||
<P>
|
||||
|
@ -537,7 +544,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.17">5.17</A> <A HREF="#toc5.17">Changes in 0.90.0</A>
|
||||
<H2><A NAME="ss5.18">5.18</A> <A HREF="#toc5.18">Changes in 0.90.0</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -583,7 +590,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.18">5.18</A> <A HREF="#toc5.18">Changes in 0.85.9</A>
|
||||
<H2><A NAME="ss5.19">5.19</A> <A HREF="#toc5.19">Changes in 0.85.9</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -607,7 +614,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.19">5.19</A> <A HREF="#toc5.19">Changes in 0.85.8</A>
|
||||
<H2><A NAME="ss5.20">5.20</A> <A HREF="#toc5.20">Changes in 0.85.8</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -632,7 +639,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.20">5.20</A> <A HREF="#toc5.20">Changes in 0.85.7</A>
|
||||
<H2><A NAME="ss5.21">5.21</A> <A HREF="#toc5.21">Changes in 0.85.7</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -650,7 +657,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.21">5.21</A> <A HREF="#toc5.21">Changes in 0.85.6</A>
|
||||
<H2><A NAME="ss5.22">5.22</A> <A HREF="#toc5.22">Changes in 0.85.6</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -661,7 +668,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.22">5.22</A> <A HREF="#toc5.22">Changes in 0.85.5</A>
|
||||
<H2><A NAME="ss5.23">5.23</A> <A HREF="#toc5.23">Changes in 0.85.5</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -680,7 +687,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.23">5.23</A> <A HREF="#toc5.23">Changes in 0.85.4</A>
|
||||
<H2><A NAME="ss5.24">5.24</A> <A HREF="#toc5.24">Changes in 0.85.4</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -698,7 +705,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.24">5.24</A> <A HREF="#toc5.24">Changes in 0.85.3</A>
|
||||
<H2><A NAME="ss5.25">5.25</A> <A HREF="#toc5.25">Changes in 0.85.3</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -720,7 +727,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.25">5.25</A> <A HREF="#toc5.25">Changes in 0.85.2</A>
|
||||
<H2><A NAME="ss5.26">5.26</A> <A HREF="#toc5.26">Changes in 0.85.2</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
@ -738,7 +745,7 @@ quakespasm (cl_alwaysrun 1, cl_forwardspeed 200, cl_backspeed 200)
|
|||
</UL>
|
||||
</P>
|
||||
|
||||
<H2><A NAME="ss5.26">5.26</A> <A HREF="#toc5.26">Changes in 0.85.1</A>
|
||||
<H2><A NAME="ss5.27">5.27</A> <A HREF="#toc5.27">Changes in 0.85.1</A>
|
||||
</H2>
|
||||
<P>
|
||||
<UL>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
______________________________________________________________________
|
||||
|
||||
|
||||
Page last edited: September 2022.
|
||||
Page last edited: October 2022.
|
||||
|
||||
|
||||
1. About
|
||||
|
@ -149,8 +149,7 @@
|
|||
switching, and L/R triggers are jump and attack.
|
||||
|
||||
The controller support started as Jeremiah Sypult's implementation in
|
||||
Quakespasm-Rift and also uses ideas and code from LordHavoc
|
||||
(DarkPlaces).
|
||||
Quakespasm-Rift, and also uses ideas/code from LordHavoc's DarkPlaces.
|
||||
|
||||
|
||||
4. Compiling and Installation
|
||||
|
@ -207,6 +206,20 @@
|
|||
|
||||
5. Changes
|
||||
|
||||
Changes in 0.95.1:
|
||||
|
||||
o Fix screen flashes in some maps with AMD's new drivers (patch from
|
||||
temx)
|
||||
|
||||
o Defend against zero-sized textures, e.g. __TB_empty in qbj_grue.bsp
|
||||
(patch from temx)
|
||||
|
||||
o Fix possible file pointer leak in game load code (patch from temx)
|
||||
|
||||
o Minor code cleanups. Updated third party code, e.g. SDL, music
|
||||
codecs, etc.
|
||||
|
||||
|
||||
Changes in 0.95.0:
|
||||
|
||||
o Add support for lit water (patch contributed by Josiah Jack, with
|
||||
|
|
Loading…
Reference in a new issue