|
5 | 5 |
|
6 | 6 | # RetroBBS |
7 | 7 |
|
8 | | -VERSION 0.2x dev |
| 8 | +VERSION 0.25 |
9 | 9 |
|
10 | 10 | (C)2020-2022 By Pablo Roldán(Durandal) & Jorge Castillo(Pastbytes) |
11 | 11 | </div> |
@@ -40,7 +40,7 @@ VERSION 0.2x dev |
40 | 40 |
|
41 | 41 | *RetroBBS* is written in *Python3* and uses several 3rd party modules to provide a rich, multimedia online experience for 8-bit computers. |
42 | 42 |
|
43 | | -Even though this is the third rewrite of this script, it is still in an early development stage, expect to find many bugs and ugly/non-pythonic code inside. Viewer discretion is advised. |
| 43 | +Even though this is the third rewrite of this script, it is still in an early development stage, expect to find many bugs and ugly/non-pythonic code inside. |
44 | 44 |
|
45 | 45 |
|
46 | 46 | --- |
@@ -70,13 +70,13 @@ Even though this is the third rewrite of this script, it is still in an early de |
70 | 70 | - AudioList now supports *HVSC* style path to songlength files |
71 | 71 | - Now most text parameters other than in calls to the Connection class are expected to be *ASCII*, not *PETSCII*, this also counts for the config file. |
72 | 72 |
|
73 | | -### **v0.2x** (In development): |
| 73 | +### **v0.25** (12/11/2022): |
74 | 74 | __New features__: |
75 | 75 | - **SLIDESHOW** now supports SID files |
76 | 76 | - **WEATHER** plugin, display the current weather and forecast for the next 2-3 days. |
77 | 77 | - BBS version and host OS are shown after the welcome message. |
78 | | - - Total BBS uptime is saved in the database. Session uptime is available as an attribute of the BBS class. |
79 | | - - Total data transferred for each user account is saved in the database. |
| 78 | + - Total BBS uptime is stored in the database. Session uptime is available as an attribute of the BBS class. |
| 79 | + - Total data transferred for each user account is stored in the database. |
80 | 80 |
|
81 | 81 | __Changes/Bug fixes__: |
82 | 82 | - *Librosa* module replaced by *audioread* and use of *FFmpeg* audio filters, PCM streaming no longers uses mu-law compression. |
@@ -180,10 +180,10 @@ External software: |
180 | 180 | # 2 Configuration file |
181 | 181 |
|
182 | 182 | *RetroBBS* uses a file named `config.ini` located in the root install directory, this file follows the standard INI format (accepts the extended value interpolation method as used by the configparse Python module): |
183 | | - |
184 | | - [SECTION] |
185 | | - key = value |
186 | | - |
| 183 | +```ini |
| 184 | +[SECTION] |
| 185 | +key = value |
| 186 | +``` |
187 | 187 | Please study the example `config.ini` file included in this package for |
188 | 188 | more information. |
189 | 189 |
|
|
0 commit comments