Skip to content

Commit

Permalink
version 1.6 (2022-11-26)
Browse files Browse the repository at this point in the history
  • Loading branch information
treellama committed Nov 27, 2022
1 parent 809dcb0 commit 789b88c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Source_Files/Misc/alephversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ ALEPHVERSION.H


#define A1_DISPLAY_NAME "Aleph One"
#define A1_DISPLAY_VERSION "1.5"
#define A1_DISPLAY_DATE_VERSION "2022-01-15"
#define A1_DATE_VERSION "20220115"
#define A1_DISPLAY_VERSION "1.6"
#define A1_DISPLAY_DATE_VERSION "2022-11-26"
#define A1_DATE_VERSION "20221126"

#ifdef WIN32
#define WIN_VERSION_STRING 0,2022,01,15 // <-- don't forget to update that for windows releases
#define WIN_VERSION_STRING 0,2022,11,26 // <-- don't forget to update that for windows releases
#define A1_DISPLAY_PLATFORM "Windows"
#define A1_UPDATE_PLATFORM "windows"
#elif defined (__APPLE__) && defined(__MACH__)
#ifdef MAC_APP_STORE
#define A1_DISPLAY_PLATFORM "Mac OS X (App Store)"
#define A1_UPDATE_PLATFORM "macappstore"
#else
#define A1_DISPLAY_PLATFORM "Mac OS X"
#define A1_DISPLAY_PLATFORM "macOS"
#define A1_UPDATE_PLATFORM "macosx"
#endif
#elif defined (linux)
Expand Down
4 changes: 2 additions & 2 deletions docs/Lua.html
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ <h3>
<p class="description">returns a random number between 0 and n-1 using a good random number generator</p>
<p class="note">use only for local player effects (see Net Games and Films) </p>
</dd>
<dt>.replay<span class="access"> (read-only)</span> <span class="version">git</span>
<dt>.replay<span class="access"> (read-only)</span> <span class="version">20221126</span>
</dt>
<dd>
<p class="description">is the script being run during a film replay</p>
Expand Down Expand Up @@ -1266,7 +1266,7 @@ <h3>
</dd>
<dt>.speed</dt>
<dd><p class="description">platform speed</p></dd>
<dt>.tag <span class="version">git</span>
<dt>.tag <span class="version">20221126</span>
</dt>
<dd><p class="description">tag of platform</p></dd>
<dt>.type <span class="version">20100118</span>
Expand Down
4 changes: 2 additions & 2 deletions docs/Lua.xml
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@
<return><type>number</type></return>
<note>use only for local player effects (see Net Games and Films)</note>
</function>
<variable name="replay" access="read-only" version="git">
<variable name="replay" access="read-only" version="20221126">
<description>is the script being run during a film replay</description>
<return><type>boolean</type></return>
<note>use sparingly; altering the world differently during a replay than during live playback will cause the replay go out of sync</note>
Expand Down Expand Up @@ -1267,7 +1267,7 @@
<description>platform speed</description>
<type>speed</type>
</variable>
<variable name="tag" version="git">
<variable name="tag" version="20221126">
<description>tag of platform</description>
<type>tag</type>
</variable>
Expand Down
6 changes: 3 additions & 3 deletions docs/Lua_HUD.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ <h3>
<dd>
<p class="note">all items in Game are read-only </p>
<dl>
<dt>.deserialize(s) <span class="version">git</span>
<dt>.deserialize(s) <span class="version">20200830</span>
</dt>
<dd>
<p class="description">deserializes s and returns the original Lua value</p>
Expand Down Expand Up @@ -424,7 +424,7 @@ <h3>
<dt>.map_checksum <span class="version">20150619</span>
</dt>
<dd><p class="description">checksum of map file</p></dd>
<dt>.stash[key] <span class="version">git</span>
<dt>.stash[key] <span class="version">20200830</span>
</dt>
<dd>
<p class="description">reads values from a stash shared between all running Lua scripts</p>
Expand Down Expand Up @@ -836,7 +836,7 @@ <h3>
<dd><p class="description"></p></dd>
</dl>
</dd>
<dt>.text_margins <span class="version">git</span>
<dt>.text_margins <span class="version">20210408</span>
</dt>
<dd>
<p class="description">specifies margins from the edges of the world_rect for drawing text such as Lua overlays, messages, and the input console</p>
Expand Down
6 changes: 3 additions & 3 deletions docs/Lua_HUD.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ end
<variable name="width"><type>number</type></variable>
<variable name="height"><type>number</type></variable>
</subtable>
<subtable name="text_margins" classname="lua_text_margins" version="git">
<subtable name="text_margins" classname="lua_text_margins" version="20210408">
<description>specifies margins from the edges of the world_rect for drawing text such as Lua overlays, messages, and the input console</description>
<variable name="bottom"><type>number</type></variable>
<variable name="left"><type>number</type></variable>
Expand Down Expand Up @@ -493,7 +493,7 @@ end

<table name="game" singleton="true">
<note>all items in Game are read-only</note>
<function name="deserialize" version="git">
<function name="deserialize" version="20200830">
<description>deserializes s and returns the original Lua value</description>
<argument name="s"><type>string</type></argument>
<return><type>value</type></return>
Expand Down Expand Up @@ -571,7 +571,7 @@ end
<description>checksum of map file</description>
<type>number</type>
</variable>
<variable name="stash[key]" version="git">
<variable name="stash[key]" version="20200830">
<description>reads values from a stash shared between all running Lua scripts</description>
<note>keys/values must be strings</note>
<type>string</type>
Expand Down

0 comments on commit 789b88c

Please sign in to comment.