Skip to content
Snippets Groups Projects
Commit 46e73ecf authored by nightfox's avatar nightfox
Browse files

Removed the 'beta' status from the version to (1.17), now that Synchronet...

Removed the 'beta' status from the version to (1.17), now that Synchronet 3.17b has been officially released.
parent e0bbf758
No related branches found
No related tags found
No related merge requests found
...@@ -126,6 +126,11 @@ ...@@ -126,6 +126,11 @@
* to another message area from the reader interface, * to another message area from the reader interface,
* it now writes "Loading..." in case there are a * it now writes "Loading..." in case there are a
* very large number of messages or sub-boards. * very large number of messages or sub-boards.
* 2019-01-02 Eric Oulashin Version 1.17 (non-beta)
* Removed the "beta" status after the official release
* of Synchronet 3.17b. Also, made use of
* file_cfgname() when finding the configuration file
* location.
*/ */
   
// TODO: Support anonymous posts? Bit values for sub[x].settings: // TODO: Support anonymous posts? Bit values for sub[x].settings:
...@@ -213,8 +218,8 @@ if (system.version_num < 31500) ...@@ -213,8 +218,8 @@ if (system.version_num < 31500)
} }
   
// Reader version information // Reader version information
var READER_VERSION = "1.17 Beta 63"; var READER_VERSION = "1.17";
var READER_DATE = "2018-07-17"; var READER_DATE = "2019-01-02";
   
// Keyboard key codes for displaying on the screen // Keyboard key codes for displaying on the screen
var UP_ARROW = ascii(24); var UP_ARROW = ascii(24);
...@@ -7357,11 +7362,11 @@ function DigDistMsgReader_ReadConfigFile() ...@@ -7357,11 +7362,11 @@ function DigDistMsgReader_ReadConfigFile()
   
// Open the main configuration file. First look for it in the sbbs/mods // Open the main configuration file. First look for it in the sbbs/mods
// directory, then sbbs/ctrl, then in the same directory as this script. // directory, then sbbs/ctrl, then in the same directory as this script.
var cfgFilename = system.mods_dir + this.cfgFilename; var cfgFilename = file_cfgname(system.mods_dir, this.cfgFilename);
if (!file_exists(cfgFilename)) if (!file_exists(cfgFilename))
cfgFilename = system.ctrl_dir + this.cfgFilename; cfgFilename = file_cfgname(system.ctrl_dir, this.cfgFilename);
if (!file_exists(cfgFilename)) if (!file_exists(cfgFilename))
cfgFilename = gStartupPath + this.cfgFilename; cfgFilename = file_cfgname(gStartupPath, this.cfgFilename);
var cfgFile = new File(cfgFilename); var cfgFile = new File(cfgFilename);
if (cfgFile.open("r")) if (cfgFile.open("r"))
{ {
......
Digital Distortion Message Reader Digital Distortion Message Reader
Version 1.17 beta 63 Version 1.17
Release date: 2018-07-17 Release date: 2010-01-02
by by
......
...@@ -5,7 +5,7 @@ Revision History (change log) ...@@ -5,7 +5,7 @@ Revision History (change log)
============================= =============================
Version Date Description Version Date Description
------- ---- ----------- ------- ---- -----------
1.17 2018-??-?? Added support for Synchronet's new voting feature that 1.17 2019-01-02 Added support for Synchronet's new voting feature that
was added in Synchronet 1.17. Added support to allow the was added in Synchronet 1.17. Added support to allow the
sysop to validate messages in moderated message areas. sysop to validate messages in moderated message areas.
Fixed various bugs related to doing a newscan, displaying Fixed various bugs related to doing a newscan, displaying
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment