Changeset 1300

Show
Ignore:
Timestamp:
2/7/2010 9:24:47 AM (5 weeks ago)
Author:
vessper
Message:

07/02/2010 (1.14.2.1300)


- V2: Updated with fixes 1294 - 1299

Location:
branches/EveHQv2
Files:
8 modified

Legend:

Unmodified
Added
Removed
  • branches/EveHQv2

    • Property svn:mergeinfo
      •  

        old new  
        11/branches/PrismPhaseII:589-675 
        2 /trunk:1195-1210,1216-1230,1232-1233,1235,1237,1239-1241,1243,1245-1253,1255-1290,1292 
         2/trunk:1195-1210,1216-1230,1232-1233,1235,1237,1239-1241,1243,1245-1253,1255-1290,1292,1294-1299 
  • branches/EveHQv2/EveHQ.DataConverter/Resources/dbo_TABLES_MDB.sql

    r1099 r1300  
    785785  divisionID            integer             NULL, 
    786786  corporationID         integer             NULL, 
    787   stationID             integer             NULL, 
     787  locationID             integer             NULL, 
    788788  `level`               integer         NULL, 
    789789  quality               integer        NULL, 
  • branches/EveHQv2/EveHQ.PosManager/Data Classes/FuelType.cs

    r1171 r1300  
    124124                { 
    125125                    if (used > 0) 
    126                         ret = Math.Floor((pcMult * sov * pQty) + 1); 
     126                        ret = Math.Ceiling(pcMult * sov * pQty); 
    127127                    else 
    128128                        ret = Math.Floor(pcMult * sov * pQty); 
  • branches/EveHQv2/EveHQ.PosManager/Forms/PoSManMainForm.cs

    r1291 r1300  
    24062406                    ml = EveHQ.Core.DataFunctions.GetData(strSQL); 
    24072407 
    2408                     p.Moon = ml.Tables[0].Rows[0].ItemArray[0].ToString(); 
     2408                    if (ml != null) 
     2409                        if ((ml.Tables != null) && (ml.Tables.Count > 0)) 
     2410                            if ((ml.Tables[0].Rows != null) && (ml.Tables[0].Rows.Count > 0)) 
     2411                                p.Moon = ml.Tables[0].Rows[0].ItemArray[0].ToString(); 
     2412                            else 
     2413                                p.Moon = "Unknown"; 
     2414                        else 
     2415                            p.Moon = "Unknown"; 
     2416                    else 
     2417                        p.Moon = "Unknown"; 
    24092418 
    24102419                    switch (td.stateV) 
     
    50695078                            } 
    50705079 
     5080                            if (xfIn <= 0) 
     5081                                xfIn = 1; 
     5082                            if (xfOut <= 0) 
     5083                                xfOut = 1; 
    50715084                            if ((fInp) && (!fOutp)) 
    50725085                            { 
     
    57445757            { 
    57455758                // Plain mineral incomming 
    5746                 qty = SrcMod.selMineral.reactQty; 
    5747                 mult = SrcMod.selMineral.portionSize; 
    5748                 vol = SrcMod.selMineral.volume; 
    5749                 bPrice = SrcMod.selMineral.basePrice; 
    5750  
    5751                 retV[0] = qty; 
    5752                 retV[1] = retV[0] * vol * mult; 
     5759 
     5760                // There are some cases, where the destination is a reaction, that the reaction 
     5761                // should override on silo due to the selMineral.reactQty being just plain Wrong! 
     5762                if ((DstMod.ModType == 5) || (DstMod.ModType == 6) || (DstMod.ModType == 7)) 
     5763                { 
     5764                    foreach (InOutData iod in DstMod.selReact.inputs) 
     5765                    { 
     5766                        if (iod.typeID == SrcMod.selMineral.typeID) 
     5767                        { 
     5768                            qty = iod.qty; 
     5769                            mult = SrcMod.selMineral.portionSize; 
     5770                            vol = SrcMod.selMineral.volume; 
     5771                            bPrice = SrcMod.selMineral.basePrice; 
     5772                            rQty = SrcMod.selMineral.reactQty; 
     5773 
     5774                            retV[0] = qty * rQty; 
     5775                            retV[1] = retV[0] * vol * mult; 
     5776                        } 
     5777                    } 
     5778                } 
     5779                else 
     5780                { 
     5781                    qty = SrcMod.selMineral.reactQty; 
     5782                    mult = SrcMod.selMineral.portionSize; 
     5783                    vol = SrcMod.selMineral.volume; 
     5784                    bPrice = SrcMod.selMineral.basePrice; 
     5785 
     5786                    retV[0] = qty; 
     5787                    retV[1] = retV[0] * vol * mult; 
     5788                } 
    57535789            } 
    57545790            else if (SrcMod.Category == "Mobile Reactor") 
  • branches/EveHQv2/EveHQ.PosManager/Properties/AssemblyInfo.cs

    r1291 r1300  
    3333// by using the '*' as shown below: 
    3434// [assembly: AssemblyVersion("1.0.*")] 
    35 [assembly: AssemblyVersion("1.14.1.1283")] 
    36 [assembly: AssemblyFileVersion("1.14.1.1283")] 
     35[assembly: AssemblyVersion("1.14.2.1296")] 
     36[assembly: AssemblyFileVersion("1.14.2.1296")] 
  • branches/EveHQv2/EveHQ/_latest.xml

    r1293 r1300  
    110110      <name>EveHQ.PosManager.dll</name> 
    111111      <type>Plug-in</type> 
    112       <version>1.14.1.1283</version> 
     112      <version>1.14.2.1296</version> 
    113113      <requires/> 
    114114      <hasDebug>True</hasDebug> 
  • branches/EveHQv2/EveHQ/_updates.xml

    r1293 r1300  
    104104      <name>EveHQ.PosManager.dll</name> 
    105105      <type>Plug-in</type> 
    106       <version>1.14.1.1283</version> 
     106      <version>1.14.2.1296</version> 
    107107      <hasDebug>True</hasDebug> 
    108108      <description>POS Design and Management Plug-in</description> 
  • branches/EveHQv2/EveHQSetup/EveHQSetup.vdproj

    r1291 r1300  
    502502            "AssemblyRegister" = "3:1" 
    503503            "AssemblyIsInGAC" = "11:FALSE" 
    504             "AssemblyAsmDisplayName" = "8:EveHQ.CoreControls, Version=1.14.1.1282, Culture=neutral, processorArchitecture=MSIL" 
     504            "AssemblyAsmDisplayName" = "8:EveHQ.CoreControls, Version=1.14.2.1292, Culture=neutral, processorArchitecture=MSIL" 
    505505                "ScatterAssemblies" 
    506506                { 
     
    604604            "AssemblyRegister" = "3:1" 
    605605            "AssemblyIsInGAC" = "11:FALSE" 
    606             "AssemblyAsmDisplayName" = "8:EveHQ.Core, Version=1.14.1.1282, Culture=neutral, processorArchitecture=x86" 
     606            "AssemblyAsmDisplayName" = "8:EveHQ.Core, Version=1.14.2.1292, Culture=neutral, processorArchitecture=x86" 
    607607                "ScatterAssemblies" 
    608608                { 
     
    698698        "Name" = "8:Microsoft Visual Studio" 
    699699        "ProductName" = "8:EveHQ" 
    700         "ProductCode" = "8:{440002B9-AB9A-48C2-88F8-409BFC7AB75F}" 
    701         "PackageCode" = "8:{AE13DBB0-3064-4528-AF7C-B5678B55133A}" 
     700        "ProductCode" = "8:{82D02D4B-C843-4DCB-9DDD-351DA535D2DD}" 
     701        "PackageCode" = "8:{F2FF4F53-8A1A-4648-9AEB-81E51A706B8C}" 
    702702        "UpgradeCode" = "8:{5EBB0328-70C2-4A58-A4AC-225419B25E51}" 
    703703        "RestartWWWService" = "11:FALSE" 
     
    705705        "DetectNewerInstalledVersion" = "11:TRUE" 
    706706        "InstallAllUsers" = "11:FALSE" 
    707         "ProductVersion" = "8:1.14.1" 
     707        "ProductVersion" = "8:1.14.2" 
    708708        "Manufacturer" = "8:Indicium Technologies" 
    709709        "ARPHELPTELEPHONE" = "8:"