Changeset 900 for trunk/Application


Ignore:
Timestamp:
Apr 10, 2024, 11:49:39 PM (3 weeks ago)
Author:
chronos
Message:
  • Fixed: More form input fields validation.
  • Modified: Code cleanup.
Location:
trunk/Application
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UpdateTrace.php

    r893 r900  
    29782978}
    29792979
     2980function UpdateTo900($Manager)
     2981{
     2982  $Manager->Execute('ALTER TABLE `ExportTask` CHANGE `TimeQueued` `TimeQueued` DATETIME NULL;');
     2983  $Manager->Execute('ALTER TABLE `ExportTask` CHANGE `Progress` `Progress` DOUBLE(5,2) NOT NULL DEFAULT "0";');
     2984}
     2985
    29802986class Updates
    29812987{
     
    30193025      873 => array('Revision' => 887, 'Function' => 'UpdateTo887'),
    30203026      887 => array('Revision' => 892, 'Function' => 'UpdateTo892'),
     3027      892 => array('Revision' => 900, 'Function' => 'UpdateTo900'),
    30213028    );
    30223029  }
  • trunk/Application/Version.php

    r898 r900  
    77
    88$Version = '1.0';
    9 $Revision = 898; // Subversion revision
    10 $DatabaseRevision = 891; // Database structure revision
    11 $ReleaseDate = strtotime('2023-04-03');
     9$Revision = 900; // Subversion revision
     10$DatabaseRevision = 900; // Database structure revision
     11$ReleaseDate = strtotime('2024-04-10');
Note: See TracChangeset for help on using the changeset viewer.