Skip to content

Commit

Permalink
Updated version info
Browse files Browse the repository at this point in the history
  • Loading branch information
luvies committed Jan 19, 2018
1 parent 8c1567a commit c8575c8
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Script.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Program : Sandbox.ModAPI.IMyGridProgram
/*-*/
/*
Taleden's Inventory Manager - Updated (Unofficial)
version 1.7.0 (2018-01-XX)
version 1.7.0 (2018-01-19)
Unoffical maintained version of TIM.
Expand Down Expand Up @@ -197,7 +197,7 @@ that any changes will be reverted when you update the script from the workshop.
/// <summary>
/// Current script update time.
/// </summary>
const string VERSION_UPDATE = "2018-01-XX - Beta";
const string VERSION_UPDATE = "2018-01-19";
/// <summary>
/// A formatted string of the script version.
/// </summary>
Expand Down Expand Up @@ -630,19 +630,19 @@ public Program()
// initialise the process steps we will need to do
processSteps = new Action[]
{
ProcessStepProcessArgs, // always process arguments first to handle changes
ProcessStepScanGrids, // scan grids next to find out if there is another TIM in the terminal system
ProcessStepStandbyCheck, // detect if another TIM should run instead and if we should be backup
ProcessStepInventoryScan, // do the inventory scanning
ProcessStepParseTags, // parse the tags of the blocks we found
ProcessStepAmountAdjustment, // adjust item amounts based on what's available
ProcessStepQuotaPanels, // handle quota panels
ProcessStepLimitedItemRequests, // handle limited item requests
ProcessStepManageRefineries, // handle all refineries we need to
ProcessStepUnlimitedItemRequests, // handle unlimited item requests
ProcessStepManageAssemblers, // handle all assemblers we need to
ProcessStepScanProduction, // scan all production blocks and handle them
ProcessStepUpdateInventoryPanels, // update all inventory panels
ProcessStepProcessArgs, // 0: always process arguments first to handle changes
ProcessStepScanGrids, // 1: scan grids next to find out if there is another TIM in the terminal system
ProcessStepStandbyCheck, // 2: detect if another TIM should run instead and if we should be backup
ProcessStepInventoryScan, // 3: do the inventory scanning
ProcessStepParseTags, // 4: parse the tags of the blocks we found
ProcessStepAmountAdjustment, // 5: adjust item amounts based on what's available
ProcessStepQuotaPanels, // 6: handle quota panels
ProcessStepLimitedItemRequests, // 7: handle limited item requests
ProcessStepManageRefineries, // 8: handle all refineries we need to
ProcessStepUnlimitedItemRequests, // 9: handle unlimited item requests
ProcessStepManageAssemblers, // 10: handle all assemblers we need to
ProcessStepScanProduction, // 11: scan all production blocks and handle them
ProcessStepUpdateInventoryPanels, // 12: update all inventory panels
};

// initialize panel data
Expand Down

0 comments on commit c8575c8

Please sign in to comment.