- Added a site-wide
Minimum Price
- Added a route-specific
Minimum Price
option - Added the ability to disable high-collateral penalties on routes
- Pause operation of the webserver.
- Execute the following SQL Commands:
-
ALTER TABLE options ADD minimumprice BIGINT;
-
ALTER TABLE routes ADD minimumpriceoverride BIGINT;
-
ALTER TABLE routes ADD disablehighcollateral TINYINT;
-
UPDATE routes SET disablehighcollateral=0 WHERE disablehighcollateral IS NULL;
-
- Sync up files with the repository.
- Restart operation of the webserver.
- Fixed a Warning in the Calculator that occurred when an invalid system was entered.
- Fixed a Deprecated Code Error in the page handler caused by a
null
subject being passed topreg_split()
- Sync up files with the repository.