Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-1582] iphone: fix log patch support for 4.0.x

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionFixed
Resolution Date2011-04-17T01:56:34.000+0000
Affected Version/sn/a
Fix Version/sRelease 1.5.0
ComponentsiOS
Labelsios, iphone, logging
ReporterJeff Haynie
AssigneeJeff Haynie
Created2011-04-15T02:56:38.000+0000
Updated2011-04-17T01:56:34.000+0000

Description

with apple's 4.0.2 (geez), we need to have a similar patch as we did with 4.0.1

Comments

  1. Jeff Haynie 2011-04-15

    (from [b2f01f3f70339e9f186ce3e8913cb6c67dfe93b0]) [#1582 state:fixed-in-qa] logging patch for 4.0.x http://github.com/appcelerator/titanium_mobile/commit/b2f01f3f70339e9f186ce3e8913cb6c67dfe93b0"> http://github.com/appcelerator/titanium_mobile/commit/b2f01f3f70339...

  2. James K 2011-04-15

    This still has problems.

    You need to reverse the list of versions in the for loop or the path for 4.0.2 will be overwritten if the 4.0.1 path is still available.

    So, change:

       for v in ('4.0.3','4.0.2','4.0.1'):
       

    to:

       for v in ('4.0.1','4.0.2','4.0.3'):
       

    You'll know you have this problem if you see multiple patch messages appear:

       [INFO] Found 4.0.1 patch installed
       [INFO] Found 4.0.2 patch installed
       
  3. Jeff Haynie 2011-04-15

    (from [457aa11f3f82352c00b14703ec92b7c0f2f57479]) [#1582 state:fixed-in-qa] better fix for logging patch by breaking once the platform is found http://github.com/appcelerator/titanium_mobile/commit/457aa11f3f82352c00b14703ec92b7c0f2f57479"> http://github.com/appcelerator/titanium_mobile/commit/457aa11f3f823...

  4. Thomas Huelbert 2011-04-15

    confirmed against 1.4.1.82947a

JSON Source