xcode-install 2.6.4 → 2.6.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: 77e63eb1a9a586f24c71906f12ba305837dea1c9c8b85d2d6eff7e6316ceccc4
4
- data.tar.gz: 9de18b7a27cd8aa7b35c9a2bc79d179838c376cca2320e48dd31179fd08bcacc
2
+ SHA1:
3
+ metadata.gz: 7815f8421f99e76c6ec613a90ab9e10506e18341
4
+ data.tar.gz: b26596467b9dbf8520fc70e5e730c75157ab1cd0
5
5
  SHA512:
6
- metadata.gz: d39934561eb6d766229b547e723af2fcf819403c24bcb2df5ab07261115bfc76faf48a180b689c810c1404a061f1b994343808c91fdeeebb99647e20fe3d7638
7
- data.tar.gz: 67c420c58617fb77a13bae2d2173612e0b25257f8740df475b0aef74e3a174157f51bf5c95eac8f6aa96d9011c0e7b9cbc90cd5c72c63ce94dab4ac5ff093968
6
+ metadata.gz: 3ae6b6b05ec81250876241d950bdc9f82cf93f881e6d2e2a531c0d29eca40349a7147d6a3e4f835d342545f797c410b0ee6ea2d04384a7a5d51ac7bfc08cfab8
7
+ data.tar.gz: de6fe3b4caf9753d8011e4d33f2186a12e51afcb79b3e3b84c25b2232034b94dd94820aba846eaa64172d8a273673b33e38dc2dc9c2960c3269c6df575d00021
@@ -0,0 +1,36 @@
1
+ name: "CI"
2
+ on: [pull_request]
3
+
4
+ jobs:
5
+ build:
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ ruby: ["2.5", "2.6"]
10
+
11
+ runs-on: macos-latest
12
+ steps:
13
+ # Setup env
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-ruby@v1
16
+ with:
17
+ ruby-version: "${{ matrix.ruby }}"
18
+
19
+ # Show env
20
+ - name: Show macOS version
21
+ run: sw_vers
22
+ - name: Show ruby version
23
+ run: |
24
+ ruby --version
25
+ bundler --version
26
+
27
+ # Prepare
28
+ - name: Install bundler 1.7
29
+ run: gem install bundler -v "~> 1.7"
30
+ - name: Install ruby dependencies
31
+ run: bundle install -j4 --clean --path=vendor
32
+
33
+ - name: Run test
34
+ run: bundle exec rake spec
35
+ - name: Run lint
36
+ run: bundle exec rake rubocop
@@ -173,7 +173,7 @@ module XcodeInstall
173
173
  seedlist.each do |current_seed|
174
174
  return current_seed if parsed_version && current_seed.version == parsed_version
175
175
  end
176
-
176
+
177
177
  nil
178
178
  end
179
179
 
@@ -214,7 +214,7 @@ module XcodeInstall
214
214
  current_xcode.installed = cached_installed_versions.include?(current_xcode.version)
215
215
  end
216
216
 
217
- all_xcodes.sort_by(&:version)
217
+ all_xcodes.sort_by { |seed| [seed.version, -seed.date_modified] }.reverse
218
218
  end
219
219
 
220
220
  def install_dmg(dmg_path, suffix = '', switch = true, clean = true)
@@ -300,12 +300,16 @@ HELP
300
300
  end
301
301
 
302
302
  def list_annotated(xcodes_list)
303
- installed = installed_versions.map(&:version)
303
+ installed = installed_versions.map(&:appname_version)
304
+
304
305
  xcodes_list.map do |x|
305
- xcode_version = x.split(' ').first # exclude "beta N", "for Lion".
306
- xcode_version << '.0' unless xcode_version.include?('.')
306
+ xcode_version = x.split(' ') # split version and "beta N", "for Lion"
307
+ xcode_version[0] << '.0' unless xcode_version[0].include?('.')
308
+
309
+ # to match InstalledXcode.appname_version format
310
+ version = Gem::Version.new(xcode_version.join('.'))
307
311
 
308
- installed.include?(xcode_version) ? "#{x} (installed)" : x
312
+ installed.include?(version) ? "#{x} (installed)" : x
309
313
  end.join("\n")
310
314
  end
311
315
 
@@ -601,6 +605,12 @@ HELP
601
605
  @bundle_version ||= Gem::Version.new(bundle_version_string)
602
606
  end
603
607
 
608
+ def appname_version
609
+ appname = @path.basename('.app').to_s
610
+ version_string = appname.split('-').last
611
+ Gem::Version.new(version_string)
612
+ end
613
+
604
614
  def uuid
605
615
  @uuid ||= plist_entry(':DVTPlugInCompatibilityUUID')
606
616
  end
@@ -702,7 +712,7 @@ HELP
702
712
  #
703
713
  # Sample object:
704
714
  # <XcodeInstall::Xcode:0x007fa1d451c390
705
- # @date_modified=2015,
715
+ # @date_modified=1573661580,
706
716
  # @name="6.4",
707
717
  # @path="/Developer_Tools/Xcode_6.4/Xcode_6.4.dmg",
708
718
  # @url=
@@ -725,7 +735,7 @@ HELP
725
735
 
726
736
  def initialize(json, url = nil, release_notes_url = nil)
727
737
  if url.nil?
728
- @date_modified = json['dateModified'].to_i
738
+ @date_modified = DateTime.strptime(json['dateModified'], '%m/%d/%y %H:%M').strftime('%s').to_i
729
739
  @name = json['name'].gsub(/^Xcode /, '')
730
740
  @path = json['files'].first['remotePath']
731
741
  url_prefix = 'https://developer.apple.com/devcenter/download.action?path='
@@ -757,6 +767,7 @@ HELP
757
767
 
758
768
  def self.new_prerelease(version, url, release_notes_path)
759
769
  new('name' => version,
770
+ 'dateModified' => '01/01/70 00:00',
760
771
  'files' => [{ 'remotePath' => url.split('=').last }],
761
772
  'release_notes_path' => release_notes_path)
762
773
  end
@@ -1,3 +1,3 @@
1
1
  module XcodeInstall
2
- VERSION = '2.6.4'.freeze
2
+ VERSION = '2.6.5'.freeze
3
3
  end
@@ -1 +1,30 @@
1
- {"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1413472373000,"dateDisabled":null,"dateModified":1413472373000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1413472373000,"dateModified":1413472373000,"fileSize":107698152,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33285,"name":"Command Line Tools for OSX 10.9 for Xcode 6.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6.1/command_line_tools_for_osx_10.9_for_xcode_6.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21958,"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"}
1
+ {
2
+ "name": "Xcode 9.3",
3
+ "description": "This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.",
4
+ "isReleased": 1,
5
+ "datePublished": "03/23/18 09:47",
6
+ "dateCreated": "11/01/19 12:00",
7
+ "dateModified": "11/01/19 12:58",
8
+ "categories": [
9
+ {
10
+ "id": 187,
11
+ "name": "Developer Tools",
12
+ "sortOrder": 28
13
+ }
14
+ ],
15
+ "files": [
16
+ {
17
+ "filename": "Xcode 9.3.xip",
18
+ "displayName": "Xcode 9.3",
19
+ "remotePath": "/Developer_Tools/Xcode_9.3/Xcode_9.3.xip",
20
+ "fileSize": 5235094775,
21
+ "sortOrder": 0,
22
+ "dateCreated": "11/01/19 19:00",
23
+ "dateModified": "11/01/19 19:58",
24
+ "fileFormat": {
25
+ "extension": ".xip",
26
+ "description": "XIP"
27
+ }
28
+ }
29
+ ]
30
+ }
@@ -1,46 +1,30 @@
1
1
  {
2
- "active": true,
3
- "availableInMemberSite": true,
4
- "categories": [
5
- {
6
- "active": null,
7
- "dateCreated": 1052825460000,
8
- "dateModified": 1079108316000,
9
- "enabled": true,
10
- "id": 187,
11
- "name": "Developer Tools",
12
- "sortOrder": 28
13
- }
14
- ],
15
- "dateAvailable": null,
16
- "dateCreated": 1425695047000,
17
- "dateDisabled": null,
18
- "dateModified": 1425943753000,
19
- "description": "This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.",
20
- "files": [
21
- {
22
- "active": true,
23
- "dateCreated": 1425696402000,
24
- "dateModified": 1425929405000,
25
- "fileSize": 2778059898,
26
- "format": {
27
- "active": null,
28
- "dateCreated": 1066327569000,
29
- "dateModified": null,
30
- "description": "Disk Image",
31
- "extension": ".dmg",
32
- "id": 12
33
- },
34
- "id": 35240,
35
- "name": "Xcode 6.3",
36
- "remotePath": "/Developer_Tools/Xcode_6.2/Xcode_6.2.dmg",
37
- "sortOrder": null,
38
- "state": "ENABLED"
39
- }
40
- ],
41
- "id": 23600,
42
- "name": "Xcode 6.3",
43
- "prerelease": false,
44
- "releasedSeed": true,
45
- "state": "ENABLED"
2
+ "name": "Xcode 6.3",
3
+ "description": "This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.",
4
+ "isReleased": 1,
5
+ "datePublished": "04/08/15 14:36",
6
+ "dateCreated": "12/11/19 13:41",
7
+ "dateModified": "12/11/19 14:28",
8
+ "categories": [
9
+ {
10
+ "id": 187,
11
+ "name": "Developer Tools",
12
+ "sortOrder": 28
13
+ }
14
+ ],
15
+ "files": [
16
+ {
17
+ "filename": "Xcode 6.3.dmg",
18
+ "displayName": "Xcode 6.3",
19
+ "remotePath": "/Developer_Tools/Xcode_6.3/Xcode_6.3.dmg",
20
+ "fileSize": 2685818165,
21
+ "sortOrder": 0,
22
+ "dateCreated": "12/11/19 21:41",
23
+ "dateModified": "12/11/19 22:28",
24
+ "fileFormat": {
25
+ "extension": ".dmg",
26
+ "description": "Disk Image"
27
+ }
28
+ }
29
+ ]
46
30
  }
@@ -1 +1 @@
1
- { "resultCode": 0, "downloads" :[{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1427400482000,"dateDisabled":null,"dateModified":1427749027000,"description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","files":[{"active":true,"dateCreated":1427399968000,"dateModified":1427749027000,"fileSize":92152909,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":36000,"name":"kernel_debug_kit_10.10.2.14C1514","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.2_build_14C1514/kernel_debug_kit_10.10.2.14C1514.dmg","sortOrder":null,"state":"ENABLED"}],"id":24120,"name":"Kernel Debug Kit 10.10.2 build 14C1514","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1425695047000,"dateDisabled":null,"dateModified":1425943753000,"description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","files":[{"active":true,"dateCreated":1425696402000,"dateModified":1425929405000,"fileSize":2778059898,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":35240,"name":"Xcode 6.2","remotePath":"/Developer_Tools/Xcode_6.2/Xcode_6.2.dmg","sortOrder":null,"state":"ENABLED"}],"id":23600,"name":"Xcode 6.2","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1425715291000,"dateDisabled":null,"dateModified":1425929196000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1425715250000,"dateModified":1425929196000,"fileSize":107722916,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":35261,"name":"commandlinetoolsosx10.9forxcode6.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.2/commandlinetoolsosx10.9forxcode6.2.dmg","sortOrder":null,"state":"ENABLED"}],"id":23621,"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.2","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1425715155000,"dateDisabled":null,"dateModified":1425929191000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1425715007000,"dateModified":1425929191000,"fileSize":185973322,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":35260,"name":"commandlinetoolsosx10.10forxcode6.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.2/commandlinetoolsosx10.10forxcode6.2.dmg","sortOrder":null,"state":"ENABLED"}],"id":23620,"name":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.2","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1056547200000,"dateModified":1079108316000,"enabled":true,"id":247,"name":"Applications","sortOrder":5}],"dateAvailable":null,"dateCreated":1422579460000,"dateDisabled":null,"dateModified":1422580781000,"description":"This SDK contains the files necessary for iTunes Visual Plug-in development for iTunes 10.4 or later, and includes documentation and sample code. Specifically, this SDK contains the files \"iTunesAPI.h\", \"iTunesVisualAPI.h\", and \"iTunesAPI.cpp\" that developers will use to develop their own plug-ins. The sample code is a fully functional Visual Plug-in developed for Mac OS X 10.5.8 and later with Xcode 3.2 and for Windows XP SP3 and later with Microsoft Visual Studio 2013. Both 32-bit and 64-bit versions of iTunes are supported.","files":[{"active":true,"dateCreated":1422579577000,"dateModified":1422580781000,"fileSize":243268,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":34442,"name":"iTunes Visual Plug-ins SDK","remotePath":"/Applications/itunes_visual_plugins_sdk/iTunesVisualPlugInsSDK2_0_1.zip","sortOrder":null,"state":"ENABLED"}],"id":22900,"name":"iTunes Visual Plug-ins SDK","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1422473743000,"dateDisabled":null,"dateModified":1422568829000,"description":"OS X Yosemite 10.10.2 is an update to OS X Yosemite 10.10.","files":[{"active":true,"dateCreated":1422473537000,"dateModified":1422568829000,"fileSize":841144579,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":34421,"name":"OS X Yosemite 10.10.2 build 14C109 Delta Update","remotePath":"/OS_X/OS_X_Yosemite_10.10.2_build_14C109/OSXUpdCombo10.10.2.dmg","sortOrder":null,"state":"ENABLED"},{"active":true,"dateCreated":1422473505000,"dateModified":1422568829000,"fileSize":554331370,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":34420,"name":"OS X Yosemite 10.10.2 build 14C109 Combo Update","remotePath":"/OS_X/OS_X_Yosemite_10.10.2_build_14C109/osxupd10.10.2.dmg","sortOrder":null,"state":"ENABLED"}],"id":22880,"name":"OS X Yosemite 10.10.2 build 14C109","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1056547200000,"dateModified":1079108316000,"enabled":true,"id":247,"name":"Applications","sortOrder":5},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1421366600000,"dateDisabled":null,"dateModified":1421366644000,"description":"This is a pre-release build of Apple Remote Desktop 3.8.","files":[{"active":true,"dateCreated":1421366601000,"dateModified":1421366645000,"fileSize":7639949,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":34327,"name":"Apple Remote Desktop 3.8.0 Client Manual","remotePath":"/Applications/Apple_Remote_Desktop_3.8_version_3.7.9.2_build_380A78_Seed/Apple_Remote_Desktop_3.8.0_Client_Manual.dmg","sortOrder":null,"state":"ENABLED"},{"active":true,"dateCreated":1421366600000,"dateModified":1421366645000,"fileSize":49785,"format":{"active":null,"dateCreated":1075908502000,"dateModified":null,"description":"PDF","extension":".pdf","id":2},"id":34326,"name":"Apple Remote Desktop 3.8 Seed 4 Release Notes","remotePath":"/Applications/Apple_Remote_Desktop_3.8_version_3.7.9.2_build_380A78_Seed/Apple_Remote_Desktop_3.8_Seed_4_Release_Notes.pdf","sortOrder":null,"state":"ENABLED"},{"active":true,"dateCreated":1421366601000,"dateModified":1421366645000,"fileSize":14190677,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":34328,"name":"Apple Remote Desktop 3.8.0","remotePath":"/Applications/Apple_Remote_Desktop_3.8_version_3.7.9.2_build_380A78_Seed/Apple_Remote_Desktop_3.8.0.dmg","sortOrder":null,"state":"ENABLED"}],"id":22783,"name":"Apple Remote Desktop 3.8 version 3.7.9.2 (build 380A78) Seed","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":1278517398000,"dateModified":1278517398000,"enabled":true,"id":325,"name":"iOS","sortOrder":50},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1366217744000,"dateDisabled":null,"dateModified":1421170719000,"description":"Logging profiles used to debug iOS issues. Relevant logs should be included when submitting a bug report.\r\n\r\nFor instructions on how to use these profiles, please visit: https://developer.apple.com/bug-reporting/ios/","files":[{"active":true,"dateCreated":1405430193000,"dateModified":1421170725000,"fileSize":6427,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32847,"name":"Bluetooth Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/bluetoothwirelessproximity.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403687610000,"dateModified":1421170725000,"fileSize":6858,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32780,"name":"Baseband Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/baseband.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1411637606000,"dateModified":1421170725000,"fileSize":3434,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":33111,"name":"Bonjour Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/discoverydlogging.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1411637606000,"dateModified":1421170725000,"fileSize":5668,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":33110,"name":"Bonjour Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/discoverydlogging.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1405430193000,"dateModified":1421170725000,"fileSize":3652,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32848,"name":"Bluetooth Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/bluetoothwirelessproximity.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":5778,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32742,"name":"Multitasking Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/multitasking.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3907,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32743,"name":"VPN Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/vpn.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":5596,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32740,"name":"Mail Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/mail.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":5114,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32741,"name":"Sync Diagnostics Logging Profile (DA)","remotePath":"/ios/bug_reporter_logging_profiles_ios/dataaccess.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3797,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32738,"name":"Mail Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/mail.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":9082,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32739,"name":"iCloud Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/icloudv2.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":6778,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32736,"name":"AirTraffic Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/airtraffic.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":4307,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32737,"name":"Battery Life Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/systemdebugprofileios8.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3752,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32750,"name":"Sync Diagnostics Logging Profile (DA)","remotePath":"/ios/bug_reporter_logging_profiles_ios/dataaccess.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1380098578000,"dateModified":1421170725000,"fileSize":4004,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":31962,"name":"In-App Purchase Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/inapppurchaselogging.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":4495,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32751,"name":"Media Player Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/mediaplayer.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1380098578000,"dateModified":1421170725000,"fileSize":5935,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":31961,"name":"In-App Purchase Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/inapppurchaselogging.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":8934,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32746,"name":"Media Player Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/mediaplayer.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":6143,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32747,"name":"Apple Push Notification Services Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/apns.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3506,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32745,"name":"AirTraffic Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/airtraffic.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":4446,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32759,"name":"iAd Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/iad.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":6651,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32758,"name":"FaceTime Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/facetime.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":6804,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32757,"name":"Messages Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/imessagev2.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":5657,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32756,"name":"VPN Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/vpn.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":7832,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32755,"name":"Battery Life Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/systemdebugprofileios8.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":7956,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32753,"name":"iAd Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/iad.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3270,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32752,"name":"Apple Push Notification Services Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/apns.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403088258000,"dateModified":1421170725000,"fileSize":28783,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":32767,"name":"Wi-Fi Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/wifiv1.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403088258000,"dateModified":1421170725000,"fileSize":4683,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32766,"name":"Wi-Fi Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/wifiv1.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403082174000,"dateModified":1421170725000,"fileSize":3714,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32763,"name":"iCloud Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/icloudv2.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3874,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32762,"name":"Multitasking Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/multitasking.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":3953,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32761,"name":"FaceTime Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/facetime.mobileconfig.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1403078049000,"dateModified":1421170725000,"fileSize":4101,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":32760,"name":"Messages Logging Profile","remotePath":"/ios/bug_reporter_logging_profiles_ios/imessagev2.mobileconfig.zip","sortOrder":1,"state":"ENABLED"}],"id":21496,"name":"Bug Reporter Logging Profiles (iOS)","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1016127960000,"dateModified":1330344254000,"enabled":true,"id":87,"name":"OS X Server","sortOrder":73}],"dateAvailable":null,"dateCreated":1254751762000,"dateDisabled":null,"dateModified":1420540443000,"description":"This document contains a unlimited-client Serial Number for use in development and testing of Mac OS X Server v10.6 (Snow Leopard Server). The Serial Number expires on Dec 31, 2015.","files":[{"active":true,"dateCreated":1420540443000,"dateModified":1420540443000,"fileSize":4741,"format":{"active":null,"dateCreated":1075908512000,"dateModified":null,"description":"RTF","extension":".rtf","id":8},"id":33491,"name":"Mac OS X Server v10.6 (Snow Leopard Server) Developer Serial Number","remotePath":"/Mac_OS_X_Server/mac_os_x_server_v10.6_snow_leopard_server_developer_serial_number/10.6_snow_leopard_server_developer_sn_dec_31_2015.rtf","sortOrder":1,"state":"ENABLED"}],"id":20499,"name":"Mac OS X Server v10.6 (Snow Leopard Server) Developer Serial Number","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1278517398000,"dateModified":1278517398000,"enabled":true,"id":325,"name":"iOS","sortOrder":50}],"dateAvailable":null,"dateCreated":1373271190000,"dateDisabled":null,"dateModified":1420450733000,"description":"The restorationArchiveTool along with the StateRestorationDebugLogging and StateRestorationDeveloperMode profiles allow you to see what is happening in your state restoration archives.","files":[{"active":true,"dateCreated":1420450732000,"dateModified":1420450733000,"fileSize":6837,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":33488,"name":"StateRestoration DeveloperMode","remotePath":"/ios/restorationarchivetool_for_ios_7/staterestoration_developermodev2.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1373271190000,"dateModified":1420450733000,"fileSize":2323,"format":{"active":null,"dateCreated":1075908512000,"dateModified":null,"description":"RTF","extension":".rtf","id":8},"id":30499,"name":"restorationArchiveTool for iOS 7 Readme","remotePath":"/ios/restorationarchivetool_for_ios_7/restorationarchivetool_for_ios_7_readme.rtf","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1420450732000,"dateModified":1420450733000,"fileSize":4238,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":33485,"name":"StateRestoration DebugLogging","remotePath":"/ios/restorationarchivetool_for_ios_7/staterestoration_debugloggingv2.zip","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1373271190000,"dateModified":1420450733000,"fileSize":25576874,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":30502,"name":"restorationArchiveTool","remotePath":"/ios/restorationarchivetool_for_ios_7/restorationarchivetool.dmg","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1420450732000,"dateModified":1420450733000,"fileSize":6416,"format":{"active":null,"dateCreated":1262956008000,"dateModified":null,"description":"Mobile Configuration","extension":".mobileconfig","id":26},"id":33487,"name":"StateRestoration DebugLogging","remotePath":"/ios/restorationarchivetool_for_ios_7/staterestoration_debugloggingv2.mobileconfig","sortOrder":1,"state":"ENABLED"},{"active":true,"dateCreated":1420450732000,"dateModified":1420450733000,"fileSize":4216,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":33486,"name":"StateRestoration DeveloperMode","remotePath":"/ios/restorationarchivetool_for_ios_7/staterestoration_developermodev2.zip","sortOrder":1,"state":"ENABLED"}],"id":21580,"name":"restorationArchiveTool for iOS 7","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":1278517398000,"dateModified":1278517398000,"enabled":true,"id":325,"name":"iOS","sortOrder":50},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1417525719000,"dateDisabled":null,"dateModified":1417527326000,"description":"This is a release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 8.1 SDK, OS X 10.10 SDK and OS X 10.9 SDK. Xcode 6.1 requires OS X Yosemite or OS X Mavericks.","files":[{"active":true,"dateCreated":1417525719000,"dateModified":1417527326000,"fileSize":2689510545,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33398,"name":"Xcode 6.1.1","remotePath":"/Developer_Tools/xcode_6.1.1/xcode_6.1.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21985,"name":"Xcode 6.1.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":1278517398000,"dateModified":1278517398000,"enabled":true,"id":325,"name":"iOS","sortOrder":50},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1417524906000,"dateDisabled":null,"dateModified":1417527295000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1417524906000,"dateModified":1417527295000,"fileSize":178197787,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33395,"name":"Command Line Tools (OS X 10.10) for Xcode 6.1.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.10_for_xcode__xcode_6.1.1/commandlinetoolsosx10.10forxcode6.1.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21983,"name":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":1278517398000,"dateModified":1278517398000,"enabled":true,"id":325,"name":"iOS","sortOrder":50},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1417525291000,"dateDisabled":null,"dateModified":1417527295000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1417525291000,"dateModified":1417527295000,"fileSize":107659811,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33396,"name":"Command Line Tools (OS X 10.9) for Xcode 6.1.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6.1.1/commandlinetoolsosx10.9forxcode6.1.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21984,"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1416317087000,"dateDisabled":null,"dateModified":1416317087000,"description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","files":[{"active":true,"dateCreated":1416317087000,"dateModified":1416317087000,"fileSize":91972340,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33383,"name":"Kernel Debug Kit 10.10.1 build 14B25","remotePath":"/Developer_Tools/kernel_debug_kit_10.10.1_build_14b25/kernel_debug_kit_10.10.1_14b25.dmg","sortOrder":1,"state":"ENABLED"}],"id":21976,"name":"Kernel Debug Kit 10.10.1 build 14B25","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1415816984000,"dateDisabled":null,"dateModified":1415816984000,"description":"The signature check application (\"check-signature\") checks OS X application bundles and installer packages to determine if they are correctly signed for distribution and will pass the default Gatekeeper assessment.","files":[{"active":true,"dateCreated":1415816984000,"dateModified":1415816984000,"fileSize":15979946,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33336,"name":"Signature Check","remotePath":"/Developer_Tools/signaturecheck/signaturecheck.dmg","sortOrder":1,"state":"ENABLED"}],"id":21968,"name":"SignatureCheck","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1243945080000,"dateDisabled":null,"dateModified":1414772063000,"description":"CrashWrangler is a set of tools for OS X to determine if a crash is an exploitable security issue, and if a crash is a duplicate of another known crash. The exploitability diagnosis is intended to be used when you have a reproducible test case, but the duplicate detection can be run on any crash log.","files":[{"active":true,"dateCreated":1414772063000,"dateModified":1414772063000,"fileSize":1017408,"format":{"active":null,"dateCreated":1079049600000,"dateModified":null,"description":"Zip","extension":".zip","id":5},"id":33290,"name":"CrashWrangler","remotePath":"/Mac_OS_X/crashwrangler/56876_crashwrangler.zip","sortOrder":1,"state":"ENABLED"}],"id":20390,"name":"CrashWrangler","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1413473237000,"dateDisabled":null,"dateModified":1413980886000,"description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 8.1 SDK, OS X 10.10 SDK and OS X 10.9 SDK. Xcode 6.1 requires OS X Yosemite or OS X Mavericks.","files":[{"active":true,"dateCreated":1413980886000,"dateModified":1413980886000,"fileSize":2689399690,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33289,"name":"Xcode 6.1","remotePath":"/Developer_Tools/xcode_6.1/56841_xcode_6.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21960,"name":"Xcode 6.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28},{"active":null,"dateCreated":4094323200000,"dateModified":1330344208000,"enabled":true,"id":14,"name":"OS X","sortOrder":70}],"dateAvailable":null,"dateCreated":1413542118000,"dateDisabled":null,"dateModified":1413542119000,"description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","files":[{"active":true,"dateCreated":1413542118000,"dateModified":1413542119000,"fileSize":91972684,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33288,"name":"Kernel Debug Kit 10.10 GM build 14A389","remotePath":"/Developer_Tools/kernel_debug_kit_10.10_gm_build_14a389/kernel_debug_kit_10.10_14a389.dmg","sortOrder":1,"state":"ENABLED"}],"id":21961,"name":"Kernel Debug Kit 10.10 GM build 14A389","prerelease":true,"releasedSeed":false,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1413472780000,"dateDisabled":null,"dateModified":1413472780000,"description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.10 and OS X 10.9.","files":[{"active":true,"dateCreated":1413472780000,"dateModified":1413472780000,"fileSize":9607382,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33286,"name":"Hardware IO Tools for Xcode 6.1","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__xcode_6.1/hardwareiotools_for_xcode_6.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21959,"name":"Hardware IO Tools for Xcode - Xcode 6.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"},{"active":true,"availableInMemberSite":true,"categories":[{"active":null,"dateCreated":1052825460000,"dateModified":1079108316000,"enabled":true,"id":187,"name":"Developer Tools","sortOrder":28}],"dateAvailable":null,"dateCreated":1413472373000,"dateDisabled":null,"dateModified":1413472373000,"description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","files":[{"active":true,"dateCreated":1413472373000,"dateModified":1413472373000,"fileSize":107698152,"format":{"active":null,"dateCreated":1066327569000,"dateModified":null,"description":"Disk Image","extension":".dmg","id":12},"id":33285,"name":"Command Line Tools for OSX 10.9 for Xcode 6.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6.1/command_line_tools_for_osx_10.9_for_xcode_6.1.dmg","sortOrder":1,"state":"ENABLED"}],"id":21958,"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1","prerelease":false,"releasedSeed":true,"state":"ENABLED"}],"totalCount":398}
1
+ {"creationTimestamp":"2020-05-29T13:10:34Z","resultCode":0,"userLocale":"en_US","protocolVersion":"QH65B2","requestUrl":"https://developer.apple.com:443/services-account/QH65B2/downloadws/listDownloads.action","responseId":"5f2d40f3-a0bf-4e7a-9f73-5c57c41a54ba","httpResponseHeaders":{"Set-Cookie":"ADCDownloadAuth=BUgGfJfXQFdypTw%2BEhicr7D1kLdUiIU7nCQvGdrOqTpse4RN5ymqf20gxOgW%2BebDuSIV%2Fkb4tPMM%0D%0ArVHhVN%2Fhq0xz08dvBYHpGzHeIesC%2FQ0RLYTXaRgy%2B9km6i3QaVR%2BIXaD990agU23dG%2BfemP6wZGu%0D%0AGqiXATx4iVwTIp%2FgKzj6g6CF%0D%0A;Version=1;Comment=;Domain=apple.com;Path=/;Max-Age=108000;Secure;HttpOnly;Expires=Fri, 29 May 2020 13:10:34 GMT"},"downloads":[{"name":"Xcode 3.2","description":"Xcode 3.2 is the developer tool set for Mac OS X 10.6 Snow Leopard. It includes Xcode, Interface Builder, Instruments, and the rest of the developer tools.","isReleased":1,"datePublished":null,"dateCreated":"08/27/09 10:15","dateModified":"08/31/09 09:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"About Xcode 3.2","displayName":"About Xcode 3.2","remotePath":"/Developer_Tools/xcode_3.2/about_xcode_3.2.pdf","fileSize":73161,"sortOrder":1,"dateCreated":"08/27/09 17:15","dateModified":"01/19/12 16:06","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.2","displayName":"Xcode 3.2","remotePath":"/Developer_Tools/xcode_3.2/xcode3210a432.dmg","fileSize":785073678,"sortOrder":1,"dateCreated":"08/27/09 17:15","dateModified":"01/19/12 16:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.6 Build 10A432","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6 10A432 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"08/28/09 02:01","dateModified":"09/28/11 06:05","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-378.4.3-log","displayName":"IOUSBFamily-378.4.3-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.6_build_10a432/iousbfamily378.4.3log.dmg","fileSize":3712433,"sortOrder":1,"dateCreated":"08/28/09 09:01","dateModified":"09/28/11 13:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.1.4 Developer Tools","description":"Xcode 3.1.4 is an update release of the developer tools for Mac OS X. This release provides additional GCC and LLVM compiler options, general bug fixes, and must be installed on Leopard, Mac OS X 10.5.0 and higher. Xcode defaults to upgrading an existing Xcode installation, but may optionally be installed along side existing Xcode installations. See the accompanying release notes for detailed installation instructions, known issues, and security advisories.","isReleased":1,"datePublished":null,"dateCreated":"09/10/09 07:33","dateModified":"09/10/09 07:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"About Xcode 3.1.4","displayName":"About Xcode 3.1.4","remotePath":"/Developer_Tools/xcode_3.1.4_developer_tools/about_xcode_tools_3.1.4.pdf","fileSize":68482,"sortOrder":1,"dateCreated":"09/10/09 14:33","dateModified":"09/10/09 14:33","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.1.4 Developer DVD","displayName":"Xcode 3.1.4 Developer DVD","remotePath":"/Developer_Tools/xcode_3.1.4_developer_tools/xcode314_2809_developerdvd.dmg","fileSize":1041278004,"sortOrder":1,"dateCreated":"09/10/09 14:33","dateModified":"09/10/09 14:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2.2 Build 9M1079 / 10M220","description":"This is a seed of Xsan 2.2 Build v9M1079 (Leopard) and v10M220 (Snow Leopard). Please read the accompanying Seed Notes carefully for information on installation and use. Please refer to Snow Leopard seed notes for details on Snow Leopard.","isReleased":0,"datePublished":null,"dateCreated":"09/10/09 15:31","dateModified":"09/28/11 05:20","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Xsan 2.2 Build 9M1079 and 10M220 Install Disc","displayName":"Xsan 2.2 Build 9M1079 and 10M220 Install Disc","remotePath":"/xsan/xsan_2.2_build_9m1079__10m220/xsan2.2_build_9m1079_10m220_installdisc.dmg","fileSize":258227244,"sortOrder":1,"dateCreated":"09/10/09 22:31","dateModified":"09/28/11 12:20","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 2.2 Build 9M1079 and 10M220 Seed Note","displayName":"Xsan 2.2 Build 9M1079 and 10M220 Seed Note","remotePath":"/xsan/xsan_2.2_build_9m1079__10m220/xsan_2.2_build_9m1079__10m220_seed_note.rtf","fileSize":5894,"sortOrder":1,"dateCreated":"09/10/09 22:31","dateModified":"09/28/11 12:20","fileFormat":{"extension":".rtf","description":"RTF"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.6 and 10.6.1","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6 10A432 and for Mac OS X 10.6.1 10B504 releases. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"09/23/09 05:56","dateModified":"09/28/11 06:05","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-378.4.3-log","displayName":"IOUSBFamily-378.4.3-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.6_and_10.6.1/iousbfamily378.4.3_log.dmg","fileSize":3539335,"sortOrder":1,"dateCreated":"09/23/09 12:56","dateModified":"09/28/11 13:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.1 Developer Tools","description":"Xcode 3.2.1 is an update release of the developer tools for Mac OS X. This release provides bug fixes in gdb, Interface Builder, Instruments, llvm-gcc and Clang optimizer, Shark, and Xcode and must be installed on Mac OS X 10.6 Snow Leopard and higher. Xcode defaults to upgrading an existing Xcode installation but may optionally be installed alongside existing Xcode installations. See accompanying release notes for detailed installation instructions, known issues, security advisories.","isReleased":0,"datePublished":null,"dateCreated":"10/08/09 05:39","dateModified":"10/13/09 01:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"About Xcode 3.2.1","displayName":"About Xcode 3.2.1","remotePath":"/Developer_Tools/xcode_3.2.1_developer_tools/about_xcode_3.2.1.pdf","fileSize":69071,"sortOrder":1,"dateCreated":"10/08/09 12:39","dateModified":"10/13/09 08:49","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.2.1 Developer DVD","displayName":"Xcode 3.2.1 Developer DVD","remotePath":"/Developer_Tools/xcode_3.2.1_developer_tools/xcode321_10m2003_developerdvd.dmg","fileSize":787658017,"sortOrder":1,"dateCreated":"10/08/09 12:39","dateModified":"10/13/09 08:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Apple Loops Utility SDK 3.0.1","description":"This SDK provides the tools and guidelines for creating audio loops in the Apple Loops format for use within Apple audio applications. Apple Loops Utility 3.0.1 requires Mac OS X 10.5.6 or later.","isReleased":1,"datePublished":null,"dateCreated":"10/22/09 06:15","dateModified":"10/22/09 06:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Apple Loops Utility SDK 3.0.1","displayName":"Apple Loops Utility SDK 3.0.1","remotePath":"/Audio/apple_loops_utility_sdk_3.0.1/0617067a.dmg","fileSize":34927436,"sortOrder":1,"dateCreated":"10/22/09 13:15","dateModified":"10/22/09 13:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.2","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.2 10C540. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"11/11/09 04:24","dateModified":"09/28/11 06:06","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-385.4.1-log","displayName":"IOUSBFamily-385.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.6.2/iousbfamily385.4.1log.dmg","fileSize":3542608,"sortOrder":1,"dateCreated":"11/11/09 12:24","dateModified":"09/28/11 13:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"iTunes COM for Windows SDK","description":"This SDK provides header files, documentation, and sample JScript files demonstrating how to use the iTunes for Windows COM interface. COM is the Microsoft technology, similar to AppleScript on macOS, that allows programmatic control of iTunes from languages like JScript, Visual Basic, C#, and C++.","isReleased":0,"datePublished":"01/11/18 10:32","dateCreated":"01/11/18 10:40","dateModified":"01/11/18 10:40","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"iTunes COM 9.1.0.80.zip","displayName":"iTunes COM 9.1.0.80","remotePath":"/Applications/iTunes_COM_for_Windows_SDK/iTunes_COM_9.1.0.80.zip","fileSize":291173,"sortOrder":0,"dateCreated":"01/11/18 18:40","dateModified":"01/11/18 18:40","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Kernel Debug Kit 10.10.3 build 14D136","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/17/15 15:03","dateCreated":"04/17/15 14:11","dateModified":"04/17/15 15:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.10.3 build 14D136.dmg","displayName":"Kernel Debug Kit 10.10.3 build 14D136","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.3_build_14D136/Kernel_Debug_Kit_10.10.3_build_14D136.dmg","fileSize":107869610,"sortOrder":0,"dateCreated":"04/17/15 21:11","dateModified":"04/17/15 22:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.2 (Fall 2009 Systems)","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.2 10C2234 (for Macintosh Systems released Fall 2009). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"12/02/09 05:50","dateModified":"09/28/11 06:06","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-390.4.4-log","displayName":"IOUSBFamily-390.4.4-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_mac_os_x_10.6.2_fall_2009_systems/iousbfamily390.4.4log.dmg","fileSize":3727353,"sortOrder":1,"dateCreated":"12/02/09 13:50","dateModified":"09/28/11 13:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2.2.1 Build 9M1207 / 10M310","description":"This is a seed of Xsan 2.2.1 Build v9M1207 (Leopard) and v10M310 (Snow Leopard). Please read the accompanying Seed Notes carefully for information on installation and use. Please refer to Snow Leopard seed notes for details on Snow Leopard.","isReleased":0,"datePublished":null,"dateCreated":"12/09/09 07:16","dateModified":"09/28/11 05:19","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Xsan 2.2.1 Build 9M1207 and 10M310 Seed Note","displayName":"Xsan 2.2.1 Build 9M1207 and 10M310 Seed Note","remotePath":"/xsan/xsan_2.2.1_build_9m1207__10m310/xsan_2.2.1_build_9m1207__10m310_seed_note.rtf","fileSize":4178,"sortOrder":1,"dateCreated":"12/09/09 15:16","dateModified":"09/28/11 12:19","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan 2.2.1 Build 9M1207 (Leopard) File System","displayName":"Xsan 2.2.1 Build 9M1207 (Leopard) File System","remotePath":"/xsan/xsan_2.2.1_build_9m1207__10m310/xsan2.2.1_leopard_9m1207_filesystem.dmg","fileSize":36861540,"sortOrder":1,"dateCreated":"12/09/09 15:16","dateModified":"09/28/11 12:19","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 2.2.1 Build 10M310 (Snow Leopard) File System","displayName":"Xsan 2.2.1 Build 10M310 (Snow Leopard) File System","remotePath":"/xsan/xsan_2.2.1_build_9m1207__10m310/xsan2.2.1_snowleopard_10m310_filesystem.dmg","fileSize":41471077,"sortOrder":1,"dateCreated":"12/09/09 15:16","dateModified":"09/28/11 12:19","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Podcast Producer Workflow Tutorial for Mac OS X Server 10.6","description":"The Podcast Producer Workflow Tutorial Sample Files (Disk Image) are to be used with the Podcast Producer Workflow Tutorial (PDF).","isReleased":1,"datePublished":null,"dateCreated":"01/08/10 07:56","dateModified":"01/08/10 07:56","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Podcast Producer Workflow Tutorial","displayName":"Podcast Producer Workflow Tutorial","remotePath":"/Mac_OS_X_Server/podcast_producer_workflow_tutorial_for_mac_os_x_server_10.6/podcast_producer_workflow_tutorial.pdf","fileSize":8331004,"sortOrder":1,"dateCreated":"01/08/10 15:56","dateModified":"01/08/10 15:56","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Podcast Producer Workflow Tutorial Sample Files","displayName":"Podcast Producer Workflow Tutorial Sample Files","remotePath":"/Mac_OS_X_Server/podcast_producer_workflow_tutorial_for_mac_os_x_server_10.6/podcast_producer_workflow_tutorial_samplefiles.dmg","fileSize":4508515,"sortOrder":1,"dateCreated":"01/08/10 15:56","dateModified":"01/08/10 15:56","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.0.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 8 SDK and OS X 10.9 SDK. Xcode 6 requires OS X Mavericks.","isReleased":1,"datePublished":"12/11/19 14:26","dateCreated":"12/05/19 16:58","dateModified":"12/11/19 14:26","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.0.1.dmg","displayName":"Xcode 6.0.1","remotePath":"/Developer_Tools/xcode_6.0.1/Xcode_6.0.1.dmg","fileSize":2542512797,"sortOrder":0,"dateCreated":"12/06/19 00:59","dateModified":"12/11/19 22:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.3 build 17D47","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/23/18 10:00","dateCreated":"01/24/18 09:55","dateModified":"01/24/18 10:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.3 build 17D47.dmg","displayName":"Kernel Debug Kit 10.13.3 build 17D47","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.3_build_17D47/Kernel_Debug_Kit_10.13.3_build_17D47.dmg","fileSize":63778347,"sortOrder":0,"dateCreated":"01/24/18 17:56","dateModified":"01/24/18 18:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.3 build 10D573","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"03/29/10 05:30","dateModified":"01/06/11 05:21","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.3 build 10D573","displayName":"Kernel Debug Kit 10.6.3 build 10D573","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.3_build_10d573/25340_kernel_debug_kit_10.6.3_10d573.dmg","fileSize":92986594,"sortOrder":1,"dateCreated":"05/14/10 16:09","dateModified":"01/06/11 13:21","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.2 Developer Tools","description":"Xcode 3.2.2 is an update release of developer tools for Mac OS X. This release provides bug fixes in gdb, Interface Builder, Instruments, llvm-gcc, Clang, Shark, and Xcode. It must be installed on Mac OS X 10.6.2 Snow Leopard and higher. Xcode defaults to upgrading an existing installation but may optionally be installed alongside existing Xcode installations. See accompanying release notes for installation instructions, known issues, security advisories.","isReleased":1,"datePublished":null,"dateCreated":"03/30/10 09:29","dateModified":"04/07/10 11:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 3.2.2 developer tools","displayName":"Xcode 3.2.2 developer tools","remotePath":"/Developer_Tools/xcode_3.2.2_developer_tools_beta_20728/xcode322_2148_developerdvd.dmg","fileSize":780887329,"sortOrder":1,"dateCreated":"03/30/10 16:29","dateModified":"04/07/10 18:33","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"About Xcode 3.2.2","displayName":"About Xcode 3.2.2","remotePath":"/Developer_Tools/xcode_3.2.2_developer_tools_beta_20728/about_xcode_3.2.2.pdf","fileSize":133154,"sortOrder":1,"dateCreated":"03/30/10 16:29","dateModified":"04/07/10 18:33","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"USDPython 0.62","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.62 Release Notes:
\n\n- Added -loop, -no-loop flags to usdzconvert input arguments to allow user to specify animation looping behavior in ARQL.
\n- Present FBX system units as metersPerUnit in USD.
\n- Present aplhaCutoff value from glTF materials as opacityThreshold.
\n- Add default material to USD file if converted OBJ file has no materials.
","isReleased":0,"datePublished":"12/09/19 15:48","dateCreated":"12/09/19 15:49","dateModified":"12/09/19 15:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"usdpython 0.62.zip","displayName":"usdpython 0.62","remotePath":"/Developer_Tools/USDPython_0.62/usdpython_0.62.zip","fileSize":63719401,"sortOrder":0,"dateCreated":"12/09/19 23:49","dateModified":"12/09/19 23:49","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.3","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.3 10D573. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"03/31/10 04:51","dateModified":"01/19/11 03:48","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-396.4.7-log","displayName":"IOUSBFamily-396.4.7-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.6.3/iousbfamily396.4.7log.dmg","fileSize":3545806,"sortOrder":1,"dateCreated":"03/31/10 11:51","dateModified":"01/19/11 11:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"12/03/19 11:28","dateCreated":"12/10/19 10:00","dateModified":"12/10/19 10:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.3.xip","displayName":"Xcode 11.3","remotePath":"/Developer_Tools/Xcode_11.3/Xcode_11.3.xip","fileSize":7845187734,"sortOrder":0,"dateCreated":"12/10/19 18:00","dateModified":"12/10/19 18:00","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/03/19 14:23","dateCreated":"12/10/19 10:08","dateModified":"12/10/19 10:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.3.dmg","displayName":"Command Line Tools for Xcode 11.3","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.3/Command_Line_Tools_for_Xcode_11.3.dmg","fileSize":230414303,"sortOrder":0,"dateCreated":"12/10/19 18:08","dateModified":"12/10/19 18:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Bonjour Printing Specification","description":"This document describes the procedure for adding Bonjour support to a network-enabled printer.","isReleased":1,"datePublished":null,"dateCreated":"04/12/10 08:45","dateModified":"04/12/10 08:47","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Bonjour Printing Spec","displayName":"Bonjour Printing Spec","remotePath":"/Developer_Tools/bonjour_printing_specification/bonjourprinting.pdf","fileSize":277012,"sortOrder":1,"dateCreated":"04/12/10 15:45","dateModified":"04/12/10 15:47","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Update for \"Audio Unit Effect with Cocoa View\" Xcode 3.1.x Template on Mac OS X 10.5.x Leopard","description":"The \"Release\" build of Audio Units created using the \"Audio Unit Effect with Cocoa View\" template in Xcode 3.1.x on Mac OS X 10.5.x Leopard does not work. The project builds and runs, but the view displayed is the generic view, not the custom Cocoa view. The updated project included in this download fixes the Xcode \"Audio Unit Effect with Cocoa View\" template. For more information, see Q&A 1602 (http://developer.apple.com/mac/library/qa/qa2010/qa1602.html).","isReleased":1,"datePublished":null,"dateCreated":"04/13/10 12:33","dateModified":"04/14/10 08:41","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio Unit Effect with Cocoa View Template Update","displayName":"Audio Unit Effect with Cocoa View Template Update","remotePath":"/Audio/audio_unit_effect_with_cocoa_view_xcode_template_update_for_mac_os_x_10.5.x_leopard/audio_unit_effect_with_cocoa_view_updated.zip","fileSize":44138,"sortOrder":1,"dateCreated":"04/14/10 15:41","dateModified":"04/14/10 15:41","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Xcode additions for the Video Decode Acceleration Framework","description":"The Video Decode Acceleration framework is a C programming interface available in Mac OS X 10.6.3 and later for low-level access to the H.264 decoding capabilities of compatible GPUs such as the NVIDIA GeForce 9400M/320M/GT 330M. It is for advanced developers who need hardware accelerated decode of video frames. See TN2267 (http://developer.apple.com/mac/library/technotes/tn2010/tn2267.html). This download includes instructions for installing it and the header file into your 10.6 SDK folder.","isReleased":1,"datePublished":null,"dateCreated":"04/19/10 06:38","dateModified":"04/19/10 08:50","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode additions for Video Decode Acceleration Framework","displayName":"Xcode additions for Video Decode Acceleration Framework","remotePath":"/Developer_Tools/xcode_additions_for_the_video_decode_acceleration_framework/xcode_additions_for_video_decode_acceleration_framework.zip","fileSize":4814,"sortOrder":1,"dateCreated":"04/19/10 13:38","dateModified":"04/19/10 15:50","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Atom Inspector","description":"Atom Inspector is a tool for viewing and editing atom resources in QuickTime movie and MP4 files. It provides functionality such as incremental atom search, atom specific data views and hexadecimal display mode.\r\n\r\nAtom Inspector requires a Mac running Mac OS X 10.5.7 or later.","isReleased":1,"datePublished":null,"dateCreated":"04/22/10 09:56","dateModified":"09/28/11 05:32","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Atom Inspector","displayName":"Atom Inspector","remotePath":"/QuickTime/atom_inspector/atom_inspector.dmg","fileSize":1242924,"sortOrder":1,"dateCreated":"04/22/10 16:56","dateModified":"09/28/11 12:32","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.5 build 13F1077","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/24/15 14:13","dateCreated":"04/23/15 13:31","dateModified":"04/24/15 14:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel_Debug_Kit_10.9_13F1077.dmg","displayName":"Kernel_Debug_Kit_10.9_13F1077","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.9.5_build_13F1077/Kernel_Debug_Kit_10.9_13F1077.dmg","fileSize":88851025,"sortOrder":0,"dateCreated":"04/23/15 20:29","dateModified":"04/24/15 21:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"12/11/19 14:25","dateCreated":"12/11/19 12:51","dateModified":"12/11/19 14:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.dmg","displayName":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.dmg","fileSize":107378282,"sortOrder":0,"dateCreated":"12/11/19 20:52","dateModified":"12/11/19 22:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.5 build 12F2518","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/24/15 14:12","dateCreated":"04/23/15 13:34","dateModified":"04/24/15 14:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel_Debug_Kit_10.8_12F2518.dmg","displayName":"Kernel_Debug_Kit_10.8_12F2518","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.8.5_build_12F2518/Kernel_Debug_Kit_10.8_12F2518.dmg","fileSize":82799051,"sortOrder":0,"dateCreated":"04/23/15 20:33","dateModified":"04/24/15 21:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/11/19 14:25","dateCreated":"12/11/19 12:52","dateModified":"12/11/19 14:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.10_for_xcode__xcode_6.1/Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.1.dmg","fileSize":178201627,"sortOrder":0,"dateCreated":"12/11/19 20:53","dateModified":"12/11/19 22:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/11/19 14:26","dateCreated":"12/11/19 12:53","dateModified":"12/11/19 14:26","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1.dmg","displayName":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6.1/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.1.dmg","fileSize":107705807,"sortOrder":0,"dateCreated":"12/11/19 20:54","dateModified":"12/11/19 22:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/11/19 14:26","dateCreated":"12/11/19 12:54","dateModified":"12/11/19 14:26","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1.1.dmg","displayName":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.1.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__xcode_6.1.1/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.1.1.dmg","fileSize":107662047,"sortOrder":0,"dateCreated":"12/11/19 20:55","dateModified":"12/11/19 22:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 8.1 SDK, OS X 10.10 SDK and OS X 10.9 SDK. Xcode 6.1 requires OS X Yosemite or OS X Mavericks.","isReleased":1,"datePublished":"12/11/19 14:27","dateCreated":"12/11/19 12:56","dateModified":"12/11/19 14:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.1.dmg","displayName":"Xcode 6.1","remotePath":"/Developer_Tools/xcode_6.1/Xcode_6.1.dmg","fileSize":2611748750,"sortOrder":0,"dateCreated":"12/11/19 20:57","dateModified":"12/11/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.1.1","description":"This is a release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 8.1 SDK, OS X 10.10 SDK and OS X 10.9 SDK. Xcode 6.1 requires OS X Yosemite or OS X Mavericks.","isReleased":1,"datePublished":"12/11/19 14:27","dateCreated":"12/11/19 13:01","dateModified":"12/11/19 14:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Xcode 6.1.1.dmg","displayName":"Xcode 6.1.1","remotePath":"/Developer_Tools/xcode_6.1.1/Xcode_6.1.1.dmg","fileSize":2612045447,"sortOrder":0,"dateCreated":"12/11/19 21:01","dateModified":"12/11/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/11/19 14:27","dateCreated":"12/11/19 13:25","dateModified":"12/11/19 14:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1.1.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.1.1","remotePath":"/Developer_Tools/command_line_tools_os_x_10.10_for_xcode__xcode_6.1.1/Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.1.1.dmg","fileSize":178203764,"sortOrder":0,"dateCreated":"12/11/19 21:25","dateModified":"12/11/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/09/15 12:26","dateCreated":"12/11/19 13:29","dateModified":"12/11/19 14:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.2.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode - Xcode 6.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.2/Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.2.dmg","fileSize":185982680,"sortOrder":0,"dateCreated":"12/11/19 21:31","dateModified":"12/11/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/09/15 12:26","dateCreated":"12/11/19 13:33","dateModified":"12/11/19 14:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.2.dmg","displayName":"Command Line Tools (OS X 10.9) for Xcode - Xcode 6.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.2/Command_Line_Tools_OS_X_10.9_for_Xcode__Xcode_6.2.dmg","fileSize":107729955,"sortOrder":0,"dateCreated":"12/11/19 21:34","dateModified":"12/11/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.2","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","isReleased":1,"datePublished":"03/09/15 12:30","dateCreated":"12/11/19 13:34","dateModified":"12/11/19 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.2.dmg","displayName":"Xcode 6.2","remotePath":"/Developer_Tools/Xcode_6.2/Xcode_6.2.dmg","fileSize":2699970727,"sortOrder":0,"dateCreated":"12/11/19 21:34","dateModified":"12/11/19 22:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.3","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","isReleased":1,"datePublished":"04/08/15 14:36","dateCreated":"12/11/19 13:41","dateModified":"12/11/19 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.3.dmg","displayName":"Xcode 6.3","remotePath":"/Developer_Tools/Xcode_6.3/Xcode_6.3.dmg","fileSize":2685818165,"sortOrder":0,"dateCreated":"12/11/19 21:41","dateModified":"12/11/19 22:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode 6.3.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"04/21/15 10:05","dateCreated":"12/11/19 13:48","dateModified":"12/11/19 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 6.3.1.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 6.3.1","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_6.3.1/Command_Line_Tools_OS_X_10.10_for_Xcode_6.3.1.dmg","fileSize":165993618,"sortOrder":0,"dateCreated":"12/11/19 21:48","dateModified":"12/11/19 22:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.3.1","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","isReleased":1,"datePublished":"04/21/15 10:09","dateCreated":"12/11/19 13:50","dateModified":"12/11/19 14:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.3.1.dmg","displayName":"Xcode 6.3.1","remotePath":"/Developer_Tools/Xcode_6.3.1/Xcode_6.3.1.dmg","fileSize":2685577832,"sortOrder":0,"dateCreated":"12/11/19 21:50","dateModified":"12/11/19 22:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.3.2","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","isReleased":1,"datePublished":"05/14/15 15:58","dateCreated":"12/11/19 13:54","dateModified":"12/11/19 14:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.3.2.dmg","displayName":"Xcode 6.3.2","remotePath":"/Developer_Tools/Xcode_6.3.2/Xcode_6.3.2.dmg","fileSize":2687136616,"sortOrder":0,"dateCreated":"12/11/19 21:54","dateModified":"12/11/19 22:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode 6.3.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"05/14/15 15:55","dateCreated":"12/11/19 13:58","dateModified":"12/11/19 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 6.3.2.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 6.3.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_6.3.2/Command_Line_Tools_OS_X_10.10_for_Xcode_6.3.2.dmg","fileSize":166029346,"sortOrder":0,"dateCreated":"12/11/19 21:59","dateModified":"12/11/19 22:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode 6.4","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"06/24/15 15:24","dateCreated":"12/11/19 14:20","dateModified":"12/11/19 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 6.4.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 6.4","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_6.4/Command_Line_Tools_OS_X_10.10_for_Xcode_6.4.dmg","fileSize":165939407,"sortOrder":0,"dateCreated":"12/11/19 22:20","dateModified":"12/11/19 22:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 6.4","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building OS X and iOS apps.","isReleased":1,"datePublished":"06/24/15 15:27","dateCreated":"12/11/19 14:21","dateModified":"12/11/19 14:30","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 6.4.dmg","displayName":"Xcode 6.4","remotePath":"/Developer_Tools/Xcode_6.4/Xcode_6.4.dmg","fileSize":2804514980,"sortOrder":0,"dateCreated":"12/11/19 22:21","dateModified":"12/11/19 22:30","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 5","description":"This is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 7 SDK and OS X 10.8 SDK. Xcode 5 requires OS X 10.8.4","isReleased":1,"datePublished":"12/11/19 15:15","dateCreated":"12/11/19 14:51","dateModified":"12/11/19 15:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 5.dmg","displayName":"Xcode 5","remotePath":"/Developer_Tools/xcode_5/Xcode_5.dmg","fileSize":2024415296,"sortOrder":0,"dateCreated":"12/11/19 22:51","dateModified":"12/11/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 5.0.1","description":"This is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 7.0.3 SDK and OS X 10.9 SDK. Xcode 5 requires OS X 10.8.4","isReleased":1,"datePublished":"12/11/19 15:15","dateCreated":"12/11/19 14:56","dateModified":"12/11/19 15:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 5.0.1.dmg","displayName":"Xcode 5.0.1","remotePath":"/Developer_Tools/xcode_5.0.1/Xcode_5.0.1.dmg","fileSize":2171659981,"sortOrder":0,"dateCreated":"12/11/19 22:56","dateModified":"12/11/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Bonjour SDK for Windows v2.0.2","description":"The Bonjour SDK for Windows includes the latest version of Bonjour as well as header files, libraries, and sample code to assist developers in creating Bonjour enabled applications on Windows. New in this release is native support for C# and Visual Basic development via a new Bonjour COM component that brings DNS-SD APIs to .NET languages.","isReleased":1,"datePublished":null,"dateCreated":"06/03/10 07:34","dateModified":"06/09/10 07:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Bonjour SDK for Windows 2.0.2","displayName":"Bonjour SDK for Windows 2.0.2","remotePath":"/Developer_Tools/bonjour_sdk_for_windows_v2.0_20769/bonjoursdksetup.exe","fileSize":4785968,"sortOrder":1,"dateCreated":"06/04/10 09:05","dateModified":"06/09/10 14:48","fileFormat":{"extension":".exe","description":"Windows Executable"}}]},{"name":"Xcode 5.0.2","description":"This is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 7.0.3 SDK and OS X 10.9 SDK. Xcode 5 requires OS X 10.8.4","isReleased":1,"datePublished":"12/11/19 15:15","dateCreated":"12/11/19 15:00","dateModified":"12/11/19 15:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 5.0.2.dmg","displayName":"Xcode 5.0.2","remotePath":"/Developer_Tools/xcode_5.0.2/Xcode_5.0.2.dmg","fileSize":2173178480,"sortOrder":0,"dateCreated":"12/11/19 23:01","dateModified":"12/11/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 5.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 7.1 SDK, OS X 10.9 SDK and OS X 10.8 SDK. Xcode 5.1 requires OS X Mavericks or OS X Mountain Lion.","isReleased":1,"datePublished":"12/11/19 15:15","dateCreated":"12/11/19 15:05","dateModified":"12/11/19 15:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 5.1.dmg","displayName":"Xcode 5.1","remotePath":"/Developer_Tools/xcode_5.1/Xcode_5.1.dmg","fileSize":2261628363,"sortOrder":0,"dateCreated":"12/11/19 23:06","dateModified":"12/11/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 5.1.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 7.1 SDK, OS X 10.9 SDK and OS X 10.8 SDK. Xcode 5.1.1 requires OS X Mavericks or OS X Mountain Lion.","isReleased":0,"datePublished":"12/11/19 15:15","dateCreated":"12/11/19 15:10","dateModified":"12/11/19 15:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 5.1.1.dmg","displayName":"Xcode 5.1.1","remotePath":"/Developer_Tools/xcode_5.1.1/Xcode_5.1.1.dmg","fileSize":2260656898,"sortOrder":0,"dateCreated":"12/11/19 23:10","dateModified":"12/11/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 5.1.1.","isReleased":1,"datePublished":"12/11/19 15:29","dateCreated":"12/11/19 15:25","dateModified":"12/11/19 15:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2014.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__april_2014/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__April_2014.dmg","fileSize":123384866,"sortOrder":0,"dateCreated":"12/11/19 23:26","dateModified":"12/11/19 23:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mavericks) for Xcode - April 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 5.1.1.","isReleased":1,"datePublished":"12/11/19 15:29","dateCreated":"12/11/19 15:26","dateModified":"12/11/19 15:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mavericks) for Xcode - April 2014.dmg","displayName":"Command Line Tools (OS X Mavericks) for Xcode - April 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_mavericks_for_xcode__april_2014/Command_Line_Tools_OS_X_Mavericks_for_Xcode__April_2014.dmg","fileSize":125016585,"sortOrder":0,"dateCreated":"12/11/19 23:26","dateModified":"12/11/19 23:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 5.1.","isReleased":1,"datePublished":"12/11/19 15:29","dateCreated":"12/11/19 15:27","dateModified":"12/11/19 15:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2014.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__march_2014/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__March_2014.dmg","fileSize":124011552,"sortOrder":0,"dateCreated":"12/11/19 23:29","dateModified":"12/11/19 23:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mavericks) for Xcode - March 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 5.1.","isReleased":1,"datePublished":"12/11/19 15:29","dateCreated":"12/11/19 15:27","dateModified":"12/11/19 15:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mavericks) for Xcode - March 2014.dmg","displayName":"Command Line Tools (OS X Mavericks) for Xcode - March 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_mavericks_for_xcode__march_2014/Command_Line_Tools_OS_X_Mavericks_for_Xcode__March_2014.dmg","fileSize":125595798,"sortOrder":0,"dateCreated":"12/11/19 23:28","dateModified":"12/11/19 23:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mavericks) for Xcode - Late October 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make.","isReleased":1,"datePublished":"12/11/19 15:31","dateCreated":"12/11/19 15:31","dateModified":"12/11/19 15:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mavericks) for Xcode - Late October 2013.dmg","displayName":"Command Line Tools (OS X Mavericks) for Xcode - Late October 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mavericks_for_xcode__late_october_2013/Command_Line_Tools_OS_X_Mavericks_for_Xcode__Late_October_2013.dmg","fileSize":100466439,"sortOrder":0,"dateCreated":"12/11/19 23:31","dateModified":"12/11/19 23:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make.","isReleased":1,"datePublished":"12/11/19 15:33","dateCreated":"12/11/19 15:32","dateModified":"12/11/19 15:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2013.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__september_2013/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__September_2013.dmg","fileSize":100077290,"sortOrder":0,"dateCreated":"12/11/19 23:32","dateModified":"12/11/19 23:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.4","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.4 10F569. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"06/15/10 21:08","dateModified":"01/19/11 03:54","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-402.4.1-log","displayName":"IOUSBFamily-402.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.6.4/iousbfamily402.4.1log.dmg","fileSize":3541156,"sortOrder":1,"dateCreated":"06/16/10 04:08","dateModified":"01/19/11 11:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.4 build 10F569","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"06/17/10 06:11","dateModified":"01/06/11 05:21","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.4 build 10F569","displayName":"Kernel Debug Kit 10.6.4 build 10F569","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.4_build_10f569/kernel_debug_kit_10.6.4_10f569.dmg","fileSize":92390532,"sortOrder":1,"dateCreated":"06/17/10 13:11","dateModified":"01/06/11 13:21","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.3 and iOS SDK 4.0.1","description":"GM Version of iOS SDK 4.0.1 with Xcode 3.2.3","isReleased":0,"datePublished":null,"dateCreated":"07/07/10 09:08","dateModified":"04/19/11 22:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Final About Xcode 3.2.3 and iOS SDK 4.0.1","displayName":"Final About Xcode 3.2.3 and iOS SDK 4.0.1","remotePath":"/ios/ios_sdk_4.0.1__final/final_about_xcode_3.2.3_and_ios_sdk_4.0.1.pdf","fileSize":125964,"sortOrder":1,"dateCreated":"07/15/10 08:32","dateModified":"04/20/11 17:18","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.2.3 and iOS SDK 4.0.1","displayName":"Xcode 3.2.3 and iOS SDK 4.0.1","remotePath":"/ios/ios_sdk_4.0.1__final/xcode_3.2.3_and_ios_sdk_4.0.1.dmg","fileSize":2446068106,"sortOrder":1,"dateCreated":"07/14/10 15:22","dateModified":"04/20/11 17:18","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"EA0632_SDK","displayName":"EA0632_SDK","remotePath":"/ios/ios_sdk_4.0.1__final/ea0632_sdk.pdf","fileSize":185486,"sortOrder":1,"dateCreated":"07/14/10 15:30","dateModified":"04/20/11 17:18","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Xcode 4.3 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. This version of Xcode includes the Mac OS X 10.7 SDK and iOS 5 SDK. Build #4E109","isReleased":0,"datePublished":"12/20/19 17:57","dateCreated":"12/20/19 16:54","dateModified":"12/20/19 17:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.3 for Lion.dmg","displayName":"Xcode 4.3 for Lion","remotePath":"/Developer_Tools/xcode_4.3_for_lion_21266/Xcode_4.3_for_Lion.dmg","fileSize":1493268524,"sortOrder":0,"dateCreated":"12/21/19 00:55","dateModified":"12/21/19 01:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.3.1 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. This version of Xcode includes the OS X 10.7 SDK and iOS 5.1 SDK. Build #4E1019","isReleased":0,"datePublished":"12/20/19 17:57","dateCreated":"12/20/19 16:58","dateModified":"12/20/19 17:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.3.1 for Lion.dmg","displayName":"Xcode 4.3.1 for Lion","remotePath":"/Developer_Tools/xcode_4.3.1_for_lion_21267/Xcode_4.3.1_for_Lion.dmg","fileSize":1575888770,"sortOrder":0,"dateCreated":"12/21/19 00:58","dateModified":"12/21/19 01:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.3 and iOS SDK 4.0.2","description":"GM Version of iOS SDK 4.0.2 to support iOS 4.0.2 SU","isReleased":0,"datePublished":null,"dateCreated":"08/11/10 03:45","dateModified":"04/19/11 22:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Xcode 3.2.3 and iOS SDK 4.0.2","displayName":"Xcode 3.2.3 and iOS SDK 4.0.2","remotePath":"/ios/ios_sdk_4.0.2__final/xcode_3.2.3_and_ios_sdk_4.0.2.dmg","fileSize":2675189630,"sortOrder":1,"dateCreated":"08/11/10 10:45","dateModified":"04/20/11 17:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.3.2 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all the required tools and frameworks for building Mac OS X and iOS apps. This version of Xcode includes the OS X 10.7 SDK and iOS 5.1 SDK. Build #4E2002","isReleased":0,"datePublished":"12/20/19 17:57","dateCreated":"12/20/19 17:01","dateModified":"12/20/19 17:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.3.2 for Lion.dmg","displayName":"Xcode 4.3.2 for Lion","remotePath":"/Developer_Tools/xcode_4.3.2/Xcode_4.3.2_for_Lion.dmg","fileSize":1981952725,"sortOrder":0,"dateCreated":"12/21/19 01:01","dateModified":"12/21/19 01:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.3.3 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. This version of Xcode includes the OS X 10.7 SDK and iOS 5.1 SDK. Build #4E3002","isReleased":1,"datePublished":"12/20/19 17:57","dateCreated":"12/20/19 17:06","dateModified":"12/20/19 17:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.3.3 for Lion.dmg","displayName":"Xcode 4.3.3 for Lion","remotePath":"/Developer_Tools/xcode_4.3.3_for_lion/Xcode_4.3.3_for_Lion.dmg","fileSize":1975435989,"sortOrder":0,"dateCreated":"12/21/19 01:06","dateModified":"12/21/19 01:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.4","description":"The release of Xcode 4.4, in conjunction with the OS X 10.8 Mountain Lion. This release supersedes all other Xcode 4.4 developer previews.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:08","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Release Notes Xcode 4.4","displayName":"Release Notes Xcode 4.4","remotePath":"/Developer_Tools/xcode_4.4_21362/release_notes_xcode44gm.pdf","fileSize":86561,"sortOrder":1,"dateCreated":"12/21/19 01:08","dateModified":"12/21/19 01:57","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 4.4.dmg","displayName":"Xcode 4.4","remotePath":"/Developer_Tools/xcode_4.4_21362/Xcode_4.4.dmg","fileSize":1941984563,"sortOrder":0,"dateCreated":"12/21/19 01:09","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.4.1","description":"The release of Xcode 4.4.1.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:12","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.4.1.dmg","displayName":"Xcode 4.4.1","remotePath":"/Developer_Tools/xcode_4.4.1/Xcode_4.4.1.dmg","fileSize":1941992755,"sortOrder":0,"dateCreated":"12/21/19 01:12","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.5","description":"This is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad and includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.5 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:15","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.5.dmg","displayName":"Xcode 4.5","remotePath":"/Developer_Tools/xcode_4.5/Xcode_4.5.dmg","fileSize":1662589104,"sortOrder":0,"dateCreated":"12/21/19 01:15","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.5.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.5.1 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:17","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.5.1 Release Notes","displayName":"Xcode 4.5.1 Release Notes","remotePath":"/Developer_Tools/xcode_4.5.1/release_notes_xcode_4.5.1.pdf","fileSize":97463,"sortOrder":1,"dateCreated":"12/21/19 01:17","dateModified":"12/21/19 01:57","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 4.5.1.dmg","displayName":"Xcode 4.5.1","remotePath":"/Developer_Tools/xcode_4.5.1/Xcode_4.5.1.dmg","fileSize":1662484314,"sortOrder":0,"dateCreated":"12/21/19 01:18","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.5.2","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.5.2 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:20","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.5.2 Release Notes","displayName":"Xcode 4.5.2 Release Notes","remotePath":"/Developer_Tools/xcode_4.5.2/release_notes_xcode_4.5.2.pdf","fileSize":99549,"sortOrder":1,"dateCreated":"12/21/19 01:20","dateModified":"12/21/19 01:58","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 4.5.2.dmg","displayName":"Xcode 4.5.2","remotePath":"/Developer_Tools/xcode_4.5.2/Xcode_4.5.2.dmg","fileSize":1663452382,"sortOrder":0,"dateCreated":"12/21/19 01:21","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Software Licensing for UDIF","description":"Mac OS X has the ability to display a multi-lingual software license agreement (SLA) before mounting a disk image. The image will not be mounted unless the user indicates agreement with the license. This document explains how to add license agreements to Mac OS X-native disk images.","isReleased":0,"datePublished":null,"dateCreated":"08/26/10 09:08","dateModified":"08/26/10 09:08","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"SLAs for UDIF 1.0","displayName":"SLAs for UDIF 1.0","remotePath":"/Developer_Tools/software_licensing_for_udif/slas_for_udifs_1.0.dmg","fileSize":34639,"sortOrder":1,"dateCreated":"08/26/10 16:08","dateModified":"08/26/10 16:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.6.1","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.6.1 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:24","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.6.1.dmg","displayName":"Xcode 4.6.1","remotePath":"/Developer_Tools/xcode_4.6.1/Xcode_4.6.1.dmg","fileSize":1712373581,"sortOrder":0,"dateCreated":"12/21/19 01:25","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.6.2","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.6.2 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 18:00","dateCreated":"12/20/19 17:27","dateModified":"12/20/19 18:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.6.2.dmg","displayName":"Xcode 4.6.2","remotePath":"/Developer_Tools/xcode_4.6.2/Xcode_4.6.2.dmg","fileSize":1712053690,"sortOrder":0,"dateCreated":"12/21/19 01:27","dateModified":"12/21/19 02:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.6.3","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6.1 SDK and OS X 10.8 SDK. Xcode 4.6.3 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":"12/20/19 17:59","dateCreated":"12/20/19 17:35","dateModified":"12/20/19 17:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.6.3.dmg","displayName":"Xcode 4.6.3","remotePath":"/Developer_Tools/xcode_4.6.3/Xcode_4.6.3.dmg","fileSize":1712074184,"sortOrder":0,"dateCreated":"12/21/19 01:35","dateModified":"12/21/19 01:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode - February 2012","description":"Command Line Tools for Xcode - February 2012\r\n\r\nThis package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":0,"datePublished":"12/20/19 17:53","dateCreated":"12/20/19 17:41","dateModified":"12/20/19 17:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode - February 2012.dmg","displayName":"Command Line Tools for Xcode - February 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode__february_2012_21258/Command_Line_Tools_for_Xcode__February_2012.dmg","fileSize":171807919,"sortOrder":0,"dateCreated":"12/21/19 01:41","dateModified":"12/21/19 01:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode - March 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":0,"datePublished":"12/20/19 17:53","dateCreated":"12/20/19 17:42","dateModified":"12/20/19 17:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode - March 2012.dmg","displayName":"Command Line Tools for Xcode - March 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode__march_2012_21259/Command_Line_Tools_for_Xcode__March_2012.dmg","fileSize":180180261,"sortOrder":0,"dateCreated":"12/21/19 01:42","dateModified":"12/21/19 01:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode - Late March 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":0,"datePublished":"12/20/19 17:53","dateCreated":"12/20/19 17:42","dateModified":"12/20/19 17:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode - Late March 2012.dmg","displayName":"Command Line Tools for Xcode - Late March 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode_4.4__late_march_2012/Command_Line_Tools_for_Xcode__Late_March_2012.dmg","fileSize":180184357,"sortOrder":0,"dateCreated":"12/21/19 01:43","dateModified":"12/21/19 01:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode - June 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":1,"datePublished":"12/20/19 17:53","dateCreated":"12/20/19 17:44","dateModified":"12/20/19 17:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode - June 2012.dmg","displayName":"Command Line Tools for Xcode - June 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode__june_2012/Command_Line_Tools_for_Xcode__June_2012.dmg","fileSize":154261366,"sortOrder":0,"dateCreated":"12/21/19 01:44","dateModified":"12/21/19 01:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - July 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.8 or later.","isReleased":1,"datePublished":"12/20/19 17:53","dateCreated":"12/20/19 17:45","dateModified":"12/20/19 17:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - July 2012.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - July 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__july_2012/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__July_2012.dmg","fileSize":114533789,"sortOrder":0,"dateCreated":"12/21/19 01:45","dateModified":"12/21/19 01:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - July 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":1,"datePublished":"12/20/19 17:54","dateCreated":"12/20/19 17:45","dateModified":"12/20/19 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - July 2012.dmg","displayName":"Command Line Tools (OS X Lion) for Xcode - July 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__july_2012/Command_Line_Tools_OS_X_Lion_for_Xcode__July_2012.dmg","fileSize":142583811,"sortOrder":0,"dateCreated":"12/21/19 01:46","dateModified":"12/21/19 01:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - August 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":1,"datePublished":"12/20/19 17:54","dateCreated":"12/20/19 17:47","dateModified":"12/20/19 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - August 2012.dmg","displayName":"Command Line Tools (OS X Lion) for Xcode - August 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__august_2012/Command_Line_Tools_OS_X_Lion_for_Xcode__August_2012.dmg","fileSize":142583072,"sortOrder":0,"dateCreated":"12/21/19 01:47","dateModified":"12/21/19 01:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E150g","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"02/08/18 15:00","dateCreated":"02/20/18 10:04","dateModified":"02/20/18 10:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E150g.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E150g","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E150g/Kernel_Debug_Kit_10.13.4_build_17E150g.dmg","fileSize":64397843,"sortOrder":0,"dateCreated":"02/20/18 18:04","dateModified":"02/20/18 18:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - August 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.8 or later.","isReleased":1,"datePublished":"12/20/19 17:54","dateCreated":"12/20/19 17:47","dateModified":"12/20/19 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - August 2012.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - August 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__august_2012/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__August_2012.dmg","fileSize":114533486,"sortOrder":0,"dateCreated":"12/21/19 01:48","dateModified":"12/21/19 01:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.5.","isReleased":0,"datePublished":"12/20/19 17:54","dateCreated":"12/20/19 17:48","dateModified":"12/20/19 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2012.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - September 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode_4.5_os_x_mountain_lion__september_2012/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__September_2012.dmg","fileSize":114892944,"sortOrder":0,"dateCreated":"12/21/19 01:48","dateModified":"12/21/19 01:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - September 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.5.","isReleased":1,"datePublished":"12/20/19 17:54","dateCreated":"12/20/19 17:49","dateModified":"12/20/19 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - September 2012.dmg","displayName":"Command Line Tools (OS X Lion) for Xcode - September 2012","remotePath":"/Developer_Tools/command_line_tools_for_xcode_4.5_os_x_lion__september_2012/Command_Line_Tools_OS_X_Lion_for_Xcode__September_2012.dmg","fileSize":142917651,"sortOrder":0,"dateCreated":"12/21/19 01:49","dateModified":"12/21/19 01:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - October 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode these tools are also embedded within the Xcode IDE and can be installed on your system using the Downloads preferences pane within Xcode.","isReleased":1,"datePublished":"12/20/19 17:55","dateCreated":"12/20/19 17:50","dateModified":"12/20/19 17:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - October 2012.dmg","displayName":"Command Line Tools (OS X Lion) for Xcode - October 2012","remotePath":"/Developer_Tools/cltools_lion_from_xcode_4.5.1/Command_Line_Tools_OS_X_Lion_for_Xcode__October_2012.dmg","fileSize":143083866,"sortOrder":0,"dateCreated":"12/21/19 01:50","dateModified":"12/21/19 01:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode these tools are also embedded within the Xcode IDE and can be installed on your system using the Downloads preferences pane within Xcode.","isReleased":1,"datePublished":"12/20/19 17:55","dateCreated":"12/20/19 17:50","dateModified":"12/20/19 17:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2012.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__october_2012/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__October_2012.dmg","fileSize":115053087,"sortOrder":0,"dateCreated":"12/21/19 01:51","dateModified":"12/21/19 01:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - November 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, \r\nand can be installed on your system using the Downloads preferences pane within Xcode 4.5.","isReleased":1,"datePublished":"12/20/19 17:55","dateCreated":"12/20/19 17:51","dateModified":"12/20/19 17:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - November 2012.dmg","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - November 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__november_2012/Command_Line_Tools_OS_X_Mountain_Lion_for_Xcode__November_2012.dmg","fileSize":115050678,"sortOrder":0,"dateCreated":"12/21/19 01:51","dateModified":"12/21/19 01:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.4 and iOS SDK 4.1","description":"GM version of iOS SDK 4.1 and Xcode 3.2.4","isReleased":0,"datePublished":null,"dateCreated":"09/07/10 05:55","dateModified":"04/20/11 10:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Xcode 3.2.4 and iOS SDK 4.1","displayName":"Xcode 3.2.4 and iOS SDK 4.1","remotePath":"/ios/ios_sdk_4.1__final/xcode_3.2.4_and_ios_sdk_4.1.dmg","fileSize":3154281265,"sortOrder":1,"dateCreated":"09/07/10 12:55","dateModified":"04/20/11 17:19","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"About Xcode 3.2.4 and iOS SDK 4.1","displayName":"About Xcode 3.2.4 and iOS SDK 4.1","remotePath":"/ios/ios_sdk_4.1__final/about_xcode_3.2.4_and_ios_sdk_4.1.pdf","fileSize":132457,"sortOrder":1,"dateCreated":"09/07/10 12:55","dateModified":"04/20/11 17:19","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"EA0662","displayName":"EA0662","remotePath":"/ios/ios_sdk_4.1__final/ea0662.pdf","fileSize":95367,"sortOrder":1,"dateCreated":"09/07/10 12:55","dateModified":"04/20/11 17:19","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Final-v2 About Xcode 3.2.4 and iOS SDK 4.1","displayName":"Final-v2 About Xcode 3.2.4 and iOS SDK 4.1","remotePath":"/ios/ios_sdk_4.1__final/finalv2_about_xcode_3.2.4_and_ios_sdk_4.1.pdf","fileSize":126986,"sortOrder":1,"dateCreated":"09/22/10 13:24","dateModified":"04/20/11 17:19","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - November 2012","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.3 and later. This package requires Mac OS X 10.7.3 or later.","isReleased":1,"datePublished":"12/20/19 17:58","dateCreated":"12/20/19 17:52","dateModified":"12/20/19 17:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - November 2012.dmg","displayName":"Command Line Tools (OS X Lion) for Xcode - November 2012","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__november_2012/Command_Line_Tools_OS_X_Lion_for_Xcode__November_2012.dmg","fileSize":143080920,"sortOrder":0,"dateCreated":"12/21/19 01:52","dateModified":"12/21/19 01:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 4 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 4\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"10/20/10 06:00","dateModified":"09/28/11 05:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 4","displayName":"Java Developer Package for Mac OS X 10.6 Update 4","remotePath":"/Java/java_for_mac_os_x_10.6_update_3_developer_package/javadeveloper_10.6_10m3326.dmg","fileSize":139932688,"sortOrder":1,"dateCreated":"03/07/11 14:01","dateModified":"09/28/11 12:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.5 Update 9 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.5 Update 9\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"10/20/10 06:00","dateModified":"09/28/11 05:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.5 Update 9","displayName":"Java Developer Package for Mac OS X 10.5 Update 9","remotePath":"/Java/java_for_mac_os_x_10.5_update_8_developer_package/javadeveloper_10.5_9m3326.dmg","fileSize":230438260,"sortOrder":1,"dateCreated":"03/07/11 14:02","dateModified":"09/28/11 12:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.5 build 10H574","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included is a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"11/10/10 09:05","dateModified":"01/06/11 05:20","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.5 build 10H574","displayName":"Kernel Debug Kit 10.6.5 build 10H574","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.5_build_10h574/kernel_debug_kit_10.6.5_10h574.dmg","fileSize":65484652,"sortOrder":1,"dateCreated":"11/10/10 17:05","dateModified":"01/06/11 13:20","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.5 and 10.6.6","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.5 10H574. The same version of IOUSBFamily is present on Mac OS X 10.6.6 10J567. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"11/11/10 12:30","dateModified":"01/19/11 03:25","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-417.4.1-log","displayName":"IOUSBFamily-417.4.1-log","remotePath":"/hardware_and_drivers/iousbfamily_log_release_for_mac_os_x_10.6.5/iousbfamily417.4.1log.dmg","fileSize":3587919,"sortOrder":1,"dateCreated":"11/11/10 20:30","dateModified":"01/19/11 11:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Bonjour SDK for Windows v2.0.4","description":"The Bonjour SDK for Windows includes the latest version of Bonjour as well as header files, libraries, and sample code to assist developers in creating Bonjour enabled applications on Windows. The SDK has been updated with the Bonjour core that is bundled with iTunes 10.1. It includes bug fixes to synchronize with the iTunes 10.1.","isReleased":1,"datePublished":null,"dateCreated":"11/15/10 07:55","dateModified":"11/15/10 08:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Bonjour SDK for Windows 2.0.4","displayName":"Bonjour SDK for Windows 2.0.4","remotePath":"/Developer_Tools/bonjour_sdk_for_windows_v2.0.4/bonjoursdksetup.exe","fileSize":4798256,"sortOrder":1,"dateCreated":"11/15/10 15:55","dateModified":"11/15/10 16:01","fileFormat":{"extension":".exe","description":"Windows Executable"}}]},{"name":"Xcode 3.2.5 and iOS SDK 4.2","description":"GM Version of Xcode 3.2.5 and iOS SDK 4.2","isReleased":0,"datePublished":null,"dateCreated":"11/19/10 02:31","dateModified":"04/20/11 16:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Application Tools 1.1","displayName":"Application Tools 1.1","remotePath":"/ios/ios_sdk_4.2__final/application_tools_1.1.dmg","fileSize":18019266,"sortOrder":1,"dateCreated":"12/21/10 10:08","dateModified":"04/20/11 17:17","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode 3.2.5 and iOS SDK 4.2 Final","displayName":"Xcode 3.2.5 and iOS SDK 4.2 Final","remotePath":"/ios/ios_sdk_4.2__final/xcode_3.2.5_and_ios_sdk_4.2_final.dmg","fileSize":3782241266,"sortOrder":1,"dateCreated":"11/19/10 10:31","dateModified":"04/20/11 17:17","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"ReadMe Xcode 3.2.5 and iOS 4.2","displayName":"ReadMe Xcode 3.2.5 and iOS 4.2","remotePath":"/ios/ios_sdk_4.2__final/readme_xcode_3.2.5_and_ios_4.2.pdf","fileSize":125127,"sortOrder":1,"dateCreated":"11/19/10 10:31","dateModified":"04/20/11 17:17","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"applicationtoolsinstaller","displayName":"applicationtoolsinstaller","remotePath":"/ios/ios_sdk_4.2__final/applicationtoolsinstaller.dmg","fileSize":17896386,"sortOrder":1,"dateCreated":"11/20/10 14:26","dateModified":"04/20/11 17:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E170c","description":" This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/05/18 12:00","dateCreated":"03/05/18 11:44","dateModified":"03/05/18 12:44","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E170c.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E170c","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E170c/Kernel_Debug_Kit_10.13.4_build_17E170c.dmg","fileSize":63747532,"sortOrder":0,"dateCreated":"03/05/18 19:57","dateModified":"03/05/18 20:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.6 build 10J567","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included is a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"01/06/11 05:22","dateModified":"01/06/11 05:22","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.6 build 10J567","displayName":"Kernel Debug Kit 10.6.6 build 10J567","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.6_build_10j567/kernel_debug_kit_10.6.6_10j567.dmg","fileSize":65511930,"sortOrder":1,"dateCreated":"01/06/11 13:22","dateModified":"01/06/11 13:22","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.4.11(PPC) Build 8S165","description":"This package provides an IOUSBFamily with logging enabled for the Macintosh OS X 10.4.11 (PPC) release only. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"01/20/11 07:39","dateModified":"01/20/11 09:11","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-281.4.0-log(PPC)","displayName":"IOUSBFamily-281.4.0-log(PPC)","remotePath":"/hardware_and_drivers/iousbfamily_log_release_for_mac_os_x_10.4.11ppc_build_8s165/iousbfamily281.4.0logppc.dmg","fileSize":1666969,"sortOrder":1,"dateCreated":"01/20/11 15:39","dateModified":"01/20/11 17:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.3.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/20/19 09:23","dateCreated":"01/13/20 10:13","dateModified":"01/13/20 10:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.3.1.dmg","displayName":"Command Line Tools for Xcode 11.3.1","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.3.1/Command_Line_Tools_for_Xcode_11.3.1.dmg","fileSize":230414298,"sortOrder":0,"dateCreated":"01/13/20 18:13","dateModified":"01/13/20 18:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.3.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"12/20/19 10:39","dateCreated":"01/13/20 18:25","dateModified":"01/16/20 08:52","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.3.1.xip","displayName":"Xcode 11.3.1","remotePath":"/Developer_Tools/Xcode_11.3.1/Xcode_11.3.1.xip","fileSize":7843352719,"sortOrder":0,"dateCreated":"01/14/20 02:25","dateModified":"01/14/20 02:25","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Glossaries - watchOS","description":"The newest translations of strings from watchOS 6.1.1 are available here. These files can be used by AppleGlot for translators to help streamline the localization process. These can be all viewed with TextEdit in macOS.","isReleased":1,"datePublished":"01/15/20 12:40","dateCreated":"01/15/20 15:37","dateModified":"01/15/20 15:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Austrian.dmg","displayName":"Austrian","remotePath":"/Developer_Tools/Glossaries__watchOS/Austrian.dmg","fileSize":103822,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Belgian French.dmg","displayName":"Belgian French","remotePath":"/Developer_Tools/Glossaries__watchOS/Belgian_French.dmg","fileSize":103805,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Arabic.dmg","displayName":"Arabic","remotePath":"/Developer_Tools/Glossaries__watchOS/Arabic.dmg","fileSize":4316961,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Australian English.dmg","displayName":"Australian English","remotePath":"/Developer_Tools/Glossaries__watchOS/Australian_English.dmg","fileSize":3199368,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Belgium Dutch.dmg","displayName":"Belgium Dutch","remotePath":"/Developer_Tools/Glossaries__watchOS/Belgium_Dutch.dmg","fileSize":102526,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Brazilian.dmg","displayName":"Brazilian","remotePath":"/Developer_Tools/Glossaries__watchOS/Brazilian.dmg","fileSize":3820023,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"British English.dmg","displayName":"British English","remotePath":"/Developer_Tools/Glossaries__watchOS/British_English.dmg","fileSize":3196906,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Bulgarian.dmg","displayName":"Bulgarian","remotePath":"/Developer_Tools/Glossaries__watchOS/Bulgarian.dmg","fileSize":104782,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Canadian English.dmg","displayName":"Canadian English","remotePath":"/Developer_Tools/Glossaries__watchOS/Canadian_English.dmg","fileSize":95659,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Canadian French.dmg","displayName":"Canadian French","remotePath":"/Developer_Tools/Glossaries__watchOS/Canadian_French.dmg","fileSize":3871300,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Catalan.dmg","displayName":"Catalan","remotePath":"/Developer_Tools/Glossaries__watchOS/Catalan.dmg","fileSize":3841767,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Czech.dmg","displayName":"Czech","remotePath":"/Developer_Tools/Glossaries__watchOS/Czech.dmg","fileSize":4129777,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Danish.dmg","displayName":"Danish","remotePath":"/Developer_Tools/Glossaries__watchOS/Danish.dmg","fileSize":3759076,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Dutch.dmg","displayName":"Dutch","remotePath":"/Developer_Tools/Glossaries__watchOS/Dutch.dmg","fileSize":3792531,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"English (Sing).dmg","displayName":"English (Sing)","remotePath":"/Developer_Tools/Glossaries__watchOS/English_Sing.dmg","fileSize":95845,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Finnish.dmg","displayName":"Finnish","remotePath":"/Developer_Tools/Glossaries__watchOS/Finnish.dmg","fileSize":3832146,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"French.dmg","displayName":"French","remotePath":"/Developer_Tools/Glossaries__watchOS/French.dmg","fileSize":3861657,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Greek.dmg","displayName":"Greek","remotePath":"/Developer_Tools/Glossaries__watchOS/Greek.dmg","fileSize":4184614,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hebrew.dmg","displayName":"Hebrew","remotePath":"/Developer_Tools/Glossaries__watchOS/Hebrew.dmg","fileSize":4091352,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hindi.dmg","displayName":"Hindi","remotePath":"/Developer_Tools/Glossaries__watchOS/Hindi.dmg","fileSize":4091830,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hungarian.dmg","displayName":"Hungarian","remotePath":"/Developer_Tools/Glossaries__watchOS/Hungarian.dmg","fileSize":3958168,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"India.dmg","displayName":"India","remotePath":"/Developer_Tools/Glossaries__watchOS/India.dmg","fileSize":101444,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Indonesian.dmg","displayName":"Indonesian","remotePath":"/Developer_Tools/Glossaries__watchOS/Indonesian.dmg","fileSize":3573127,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Japanese.dmg","displayName":"Japanese","remotePath":"/Developer_Tools/Glossaries__watchOS/Japanese.dmg","fileSize":3768707,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Korean.dmg","displayName":"Korean","remotePath":"/Developer_Tools/Glossaries__watchOS/Korean.dmg","fileSize":3700508,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Malay.dmg","displayName":"Malay","remotePath":"/Developer_Tools/Glossaries__watchOS/Malay.dmg","fileSize":3576788,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Mexican.dmg","displayName":"Mexican","remotePath":"/Developer_Tools/Glossaries__watchOS/Mexican.dmg","fileSize":103896,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Norwegian Bokmal.dmg","displayName":"Norwegian Bokmal","remotePath":"/Developer_Tools/Glossaries__watchOS/Norwegian_Bokmal.dmg","fileSize":3748603,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Portuguese.dmg","displayName":"Portuguese","remotePath":"/Developer_Tools/Glossaries__watchOS/Portuguese.dmg","fileSize":3825542,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Romanian.dmg","displayName":"Romanian","remotePath":"/Developer_Tools/Glossaries__watchOS/Romanian.dmg","fileSize":3958365,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Russian.dmg","displayName":"Russian","remotePath":"/Developer_Tools/Glossaries__watchOS/Russian.dmg","fileSize":4360432,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Slovak.dmg","displayName":"Slovak","remotePath":"/Developer_Tools/Glossaries__watchOS/Slovak.dmg","fileSize":4127616,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"South China Cantonese.dmg","displayName":"South China Cantonese","remotePath":"/Developer_Tools/Glossaries__watchOS/South_China_Cantonese.dmg","fileSize":231429,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Spanish.dmg","displayName":"Spanish","remotePath":"/Developer_Tools/Glossaries__watchOS/Spanish.dmg","fileSize":3841584,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swiss French.dmg","displayName":"Swiss French","remotePath":"/Developer_Tools/Glossaries__watchOS/Swiss_French.dmg","fileSize":103806,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swiss German.dmg","displayName":"Swiss German","remotePath":"/Developer_Tools/Glossaries__watchOS/Swiss_German.dmg","fileSize":103835,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Thai.dmg","displayName":"Thai","remotePath":"/Developer_Tools/Glossaries__watchOS/Thai.dmg","fileSize":3893607,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Traditional Chinese.dmg","displayName":"Traditional Chinese","remotePath":"/Developer_Tools/Glossaries__watchOS/Traditional_Chinese.dmg","fileSize":3616199,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Turkish.dmg","displayName":"Turkish","remotePath":"/Developer_Tools/Glossaries__watchOS/Turkish.dmg","fileSize":3847703,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Vietnamese.dmg","displayName":"Vietnamese","remotePath":"/Developer_Tools/Glossaries__watchOS/Vietnamese.dmg","fileSize":3694645,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Croatian.dmg","displayName":"Croatian","remotePath":"/Developer_Tools/Glossaries__watchOS/Croatian.dmg","fileSize":3944948,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"English (India).dmg","displayName":"English (India)","remotePath":"/Developer_Tools/Glossaries__watchOS/English_India.dmg","fileSize":110070,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"German.dmg","displayName":"German","remotePath":"/Developer_Tools/Glossaries__watchOS/German.dmg","fileSize":3867359,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hong Kong.dmg","displayName":"Hong Kong","remotePath":"/Developer_Tools/Glossaries__watchOS/Hong_Kong.dmg","fileSize":3623905,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Italian.dmg","displayName":"Italian","remotePath":"/Developer_Tools/Glossaries__watchOS/Italian.dmg","fileSize":3846616,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Latin American.dmg","displayName":"Latin American","remotePath":"/Developer_Tools/Glossaries__watchOS/Latin_American.dmg","fileSize":3827851,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Polish.dmg","displayName":"Polish","remotePath":"/Developer_Tools/Glossaries__watchOS/Polish.dmg","fileSize":4105984,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Simplified Chinese.dmg","displayName":"Simplified Chinese","remotePath":"/Developer_Tools/Glossaries__watchOS/Simplified_Chinese.dmg","fileSize":3636471,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swedish.dmg","displayName":"Swedish","remotePath":"/Developer_Tools/Glossaries__watchOS/Swedish.dmg","fileSize":3784415,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Tagalog.dmg","displayName":"Tagalog","remotePath":"/Developer_Tools/Glossaries__watchOS/Tagalog.dmg","fileSize":102668,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Ukrainian.dmg","displayName":"Ukrainian","remotePath":"/Developer_Tools/Glossaries__watchOS/Ukrainian.dmg","fileSize":4306631,"sortOrder":0,"dateCreated":"01/15/20 23:37","dateModified":"01/15/20 23:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Glossaries - iOS","description":"The newest translations of strings from iOS 13.3 are available here. These files can be used by AppleGlot for translators to help streamline the localization process. These can be all viewed with TextEdit in macOS.","isReleased":1,"datePublished":"01/15/20 12:40","dateCreated":"01/15/20 15:59","dateModified":"01/15/20 16:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Brazilian.dmg","displayName":"Brazilian","remotePath":"/Developer_Tools/glossaries__ios_21842/Brazilian.dmg","fileSize":4449406,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"British English.dmg","displayName":"British English","remotePath":"/Developer_Tools/glossaries__ios_21842/British_English.dmg","fileSize":3764586,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Canadian French.dmg","displayName":"Canadian French","remotePath":"/Developer_Tools/glossaries__ios_21842/Canadian_French.dmg","fileSize":4546376,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Croatian.dmg","displayName":"Croatian","remotePath":"/Developer_Tools/glossaries__ios_21842/Croatian.dmg","fileSize":4560210,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Czech.dmg","displayName":"Czech","remotePath":"/Developer_Tools/glossaries__ios_21842/Czech.dmg","fileSize":4756551,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Dutch.dmg","displayName":"Dutch","remotePath":"/Developer_Tools/glossaries__ios_21842/Dutch.dmg","fileSize":4418666,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"English (India).dmg","displayName":"English (India)","remotePath":"/Developer_Tools/glossaries__ios_21842/English_India.dmg","fileSize":399728,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Finnish.dmg","displayName":"Finnish","remotePath":"/Developer_Tools/glossaries__ios_21842/Finnish.dmg","fileSize":4445625,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"German.dmg","displayName":"German","remotePath":"/Developer_Tools/glossaries__ios_21842/German.dmg","fileSize":4476583,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Greek.dmg","displayName":"Greek","remotePath":"/Developer_Tools/glossaries__ios_21842/Greek.dmg","fileSize":4855025,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hindi.dmg","displayName":"Hindi","remotePath":"/Developer_Tools/glossaries__ios_21842/Hindi.dmg","fileSize":4734463,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hong Kong.dmg","displayName":"Hong Kong","remotePath":"/Developer_Tools/glossaries__ios_21842/Hong_Kong.dmg","fileSize":4207564,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Arabic.dmg","displayName":"Arabic","remotePath":"/Developer_Tools/glossaries__ios_21842/Arabic.dmg","fileSize":4975444,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hungarian.dmg","displayName":"Hungarian","remotePath":"/Developer_Tools/glossaries__ios_21842/Hungarian.dmg","fileSize":4569506,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"India.dmg","displayName":"India","remotePath":"/Developer_Tools/glossaries__ios_21842/India.dmg","fileSize":510205,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Indonesian.dmg","displayName":"Indonesian","remotePath":"/Developer_Tools/glossaries__ios_21842/Indonesian.dmg","fileSize":4153693,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Japanese.dmg","displayName":"Japanese","remotePath":"/Developer_Tools/glossaries__ios_21842/Japanese.dmg","fileSize":4380441,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Korean.dmg","displayName":"Korean","remotePath":"/Developer_Tools/glossaries__ios_21842/Korean.dmg","fileSize":4287365,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Malay.dmg","displayName":"Malay","remotePath":"/Developer_Tools/glossaries__ios_21842/Malay.dmg","fileSize":4163239,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Norwegian Bokmal.dmg","displayName":"Norwegian Bokmal","remotePath":"/Developer_Tools/glossaries__ios_21842/Norwegian_Bokmal.dmg","fileSize":4348227,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Polish.dmg","displayName":"Polish","remotePath":"/Developer_Tools/glossaries__ios_21842/Polish.dmg","fileSize":4725002,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Romanian.dmg","displayName":"Romanian","remotePath":"/Developer_Tools/glossaries__ios_21842/Romanian.dmg","fileSize":4578156,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Russian.dmg","displayName":"Russian","remotePath":"/Developer_Tools/glossaries__ios_21842/Russian.dmg","fileSize":5028179,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Simplified Chinese.dmg","displayName":"Simplified Chinese","remotePath":"/Developer_Tools/glossaries__ios_21842/Simplified_Chinese.dmg","fileSize":4232387,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"South China Cantonese.dmg","displayName":"South China Cantonese","remotePath":"/Developer_Tools/glossaries__ios_21842/South_China_Cantonese.dmg","fileSize":1360436,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Spanish.dmg","displayName":"Spanish","remotePath":"/Developer_Tools/glossaries__ios_21842/Spanish.dmg","fileSize":4448913,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Thai.dmg","displayName":"Thai","remotePath":"/Developer_Tools/glossaries__ios_21842/Thai.dmg","fileSize":4511016,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Traditional Chinese.dmg","displayName":"Traditional Chinese","remotePath":"/Developer_Tools/glossaries__ios_21842/Traditional_Chinese.dmg","fileSize":4210796,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Turkish.dmg","displayName":"Turkish","remotePath":"/Developer_Tools/glossaries__ios_21842/Turkish.dmg","fileSize":4463868,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Vietnamese.dmg","displayName":"Vietnamese","remotePath":"/Developer_Tools/glossaries__ios_21842/Vietnamese.dmg","fileSize":4268236,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Catalan.dmg","displayName":"Catalan","remotePath":"/Developer_Tools/glossaries__ios_21842/Catalan.dmg","fileSize":4431076,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Danish.dmg","displayName":"Danish","remotePath":"/Developer_Tools/glossaries__ios_21842/Danish.dmg","fileSize":4365229,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"French.dmg","displayName":"French","remotePath":"/Developer_Tools/glossaries__ios_21842/French.dmg","fileSize":4493230,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hebrew.dmg","displayName":"Hebrew","remotePath":"/Developer_Tools/glossaries__ios_21842/Hebrew.dmg","fileSize":4718158,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Australian English.dmg","displayName":"Australian English","remotePath":"/Developer_Tools/glossaries__ios_21842/Australian_English.dmg","fileSize":3762770,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Italian.dmg","displayName":"Italian","remotePath":"/Developer_Tools/glossaries__ios_21842/Italian.dmg","fileSize":4452949,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Latin American.dmg","displayName":"Latin American","remotePath":"/Developer_Tools/glossaries__ios_21842/Latin_American.dmg","fileSize":4424602,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Portuguese.dmg","displayName":"Portuguese","remotePath":"/Developer_Tools/glossaries__ios_21842/Portuguese.dmg","fileSize":4432778,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Slovak.dmg","displayName":"Slovak","remotePath":"/Developer_Tools/glossaries__ios_21842/Slovak.dmg","fileSize":4742269,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swedish.dmg","displayName":"Swedish","remotePath":"/Developer_Tools/glossaries__ios_21842/Swedish.dmg","fileSize":4402896,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Ukrainian.dmg","displayName":"Ukrainian","remotePath":"/Developer_Tools/glossaries__ios_21842/Ukrainian.dmg","fileSize":4949652,"sortOrder":0,"dateCreated":"01/15/20 23:59","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Glossaries - macOS","description":"The newest translations of strings from macOS 10.15.2 are available here. These files can be used by AppleGlot for translators to help streamline the localization process. These can be all viewed with TextEdit in macOS","isReleased":1,"datePublished":"01/15/20 12:40","dateCreated":"01/15/20 16:00","dateModified":"01/15/20 16:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Canadian French.dmg","displayName":"Canadian French","remotePath":"/Developer_Tools/Glossaries__macOS/Canadian_French.dmg","fileSize":11591256,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Catalan.dmg","displayName":"Catalan","remotePath":"/Developer_Tools/Glossaries__macOS/Catalan.dmg","fileSize":11344201,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Croatian.dmg","displayName":"Croatian","remotePath":"/Developer_Tools/Glossaries__macOS/Croatian.dmg","fileSize":11551162,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Czech.dmg","displayName":"Czech","remotePath":"/Developer_Tools/Glossaries__macOS/Czech.dmg","fileSize":11923919,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Danish.dmg","displayName":"Danish","remotePath":"/Developer_Tools/Glossaries__macOS/Danish.dmg","fileSize":11136361,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Dutch.dmg","displayName":"Dutch","remotePath":"/Developer_Tools/Glossaries__macOS/Dutch.dmg","fileSize":11327266,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"German.dmg","displayName":"German","remotePath":"/Developer_Tools/Glossaries__macOS/German.dmg","fileSize":11520421,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Greek.dmg","displayName":"Greek","remotePath":"/Developer_Tools/Glossaries__macOS/Greek.dmg","fileSize":12461116,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hebrew.dmg","displayName":"Hebrew","remotePath":"/Developer_Tools/Glossaries__macOS/Hebrew.dmg","fileSize":11721278,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hindi.dmg","displayName":"Hindi","remotePath":"/Developer_Tools/Glossaries__macOS/Hindi.dmg","fileSize":12020600,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hong Kong.dmg","displayName":"Hong Kong","remotePath":"/Developer_Tools/Glossaries__macOS/Hong_Kong.dmg","fileSize":11008663,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hungarian.dmg","displayName":"Hungarian","remotePath":"/Developer_Tools/Glossaries__macOS/Hungarian.dmg","fileSize":11730136,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Indonesian.dmg","displayName":"Indonesian","remotePath":"/Developer_Tools/Glossaries__macOS/Indonesian.dmg","fileSize":10927222,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Italian.dmg","displayName":"Italian","remotePath":"/Developer_Tools/Glossaries__macOS/Italian.dmg","fileSize":11313210,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Japanese.dmg","displayName":"Japanese","remotePath":"/Developer_Tools/Glossaries__macOS/Japanese.dmg","fileSize":11444428,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Korean.dmg","displayName":"Korean","remotePath":"/Developer_Tools/Glossaries__macOS/Korean.dmg","fileSize":11229338,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Latin American.dmg","displayName":"Latin American","remotePath":"/Developer_Tools/Glossaries__macOS/Latin_American.dmg","fileSize":11360738,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Malay.dmg","displayName":"Malay","remotePath":"/Developer_Tools/Glossaries__macOS/Malay.dmg","fileSize":10882422,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Norwegian Bokmal.dmg","displayName":"Norwegian Bokmal","remotePath":"/Developer_Tools/Glossaries__macOS/Norwegian_Bokmal.dmg","fileSize":11136213,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Polish.dmg","displayName":"Polish","remotePath":"/Developer_Tools/Glossaries__macOS/Polish.dmg","fileSize":11862746,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Portuguese.dmg","displayName":"Portuguese","remotePath":"/Developer_Tools/Glossaries__macOS/Portuguese.dmg","fileSize":11309515,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Romanian.dmg","displayName":"Romanian","remotePath":"/Developer_Tools/Glossaries__macOS/Romanian.dmg","fileSize":11600558,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Russian.dmg","displayName":"Russian","remotePath":"/Developer_Tools/Glossaries__macOS/Russian.dmg","fileSize":12613284,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Simplified Chinese.dmg","displayName":"Simplified Chinese","remotePath":"/Developer_Tools/Glossaries__macOS/Simplified_Chinese.dmg","fileSize":11020074,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Slovak.dmg","displayName":"Slovak","remotePath":"/Developer_Tools/Glossaries__macOS/Slovak.dmg","fileSize":11869683,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"South China Cantonese.dmg","displayName":"South China Cantonese","remotePath":"/Developer_Tools/Glossaries__macOS/South_China_Cantonese.dmg","fileSize":765309,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Spanish.dmg","displayName":"Spanish","remotePath":"/Developer_Tools/Glossaries__macOS/Spanish.dmg","fileSize":11360305,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swedish.dmg","displayName":"Swedish","remotePath":"/Developer_Tools/Glossaries__macOS/Swedish.dmg","fileSize":11228644,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Thai.dmg","displayName":"Thai","remotePath":"/Developer_Tools/Glossaries__macOS/Thai.dmg","fileSize":11709618,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Traditional Chinese.dmg","displayName":"Traditional Chinese","remotePath":"/Developer_Tools/Glossaries__macOS/Traditional_Chinese.dmg","fileSize":11003693,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Turkish.dmg","displayName":"Turkish","remotePath":"/Developer_Tools/Glossaries__macOS/Turkish.dmg","fileSize":11403851,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Ukrainian.dmg","displayName":"Ukrainian","remotePath":"/Developer_Tools/Glossaries__macOS/Ukrainian.dmg","fileSize":12404248,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Vietnamese.dmg","displayName":"Vietnamese","remotePath":"/Developer_Tools/Glossaries__macOS/Vietnamese.dmg","fileSize":11169775,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Finnish.dmg","displayName":"Finnish","remotePath":"/Developer_Tools/Glossaries__macOS/Finnish.dmg","fileSize":11436624,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"French.dmg","displayName":"French","remotePath":"/Developer_Tools/Glossaries__macOS/French.dmg","fileSize":11536187,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Arabic.dmg","displayName":"Arabic","remotePath":"/Developer_Tools/Glossaries__macOS/Arabic.dmg","fileSize":12184097,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Australian English.dmg","displayName":"Australian English","remotePath":"/Developer_Tools/Glossaries__macOS/Australian_English.dmg","fileSize":9642742,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Brazilian.dmg","displayName":"Brazilian","remotePath":"/Developer_Tools/Glossaries__macOS/Brazilian.dmg","fileSize":11394007,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"British English.dmg","displayName":"British English","remotePath":"/Developer_Tools/Glossaries__macOS/British_English.dmg","fileSize":9648710,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Glossaries - tvOS","description":"The newest translations of strings from tvOS 13.3 are available here. These files can be used by AppleGlot for translators to help streamline the localization process. These can be all viewed with TextEdit in macOS.","isReleased":1,"datePublished":"01/15/20 12:40","dateCreated":"01/15/20 16:00","dateModified":"01/15/20 16:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Australian English.dmg","displayName":"Australian English","remotePath":"/Developer_Tools/Glossaries__tvOS/Australian_English.dmg","fileSize":2251865,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"British English.dmg","displayName":"British English","remotePath":"/Developer_Tools/Glossaries__tvOS/British_English.dmg","fileSize":2251555,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Canadian French.dmg","displayName":"Canadian French","remotePath":"/Developer_Tools/Glossaries__tvOS/Canadian_French.dmg","fileSize":2742853,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Catalan.dmg","displayName":"Catalan","remotePath":"/Developer_Tools/Glossaries__tvOS/Catalan.dmg","fileSize":2720319,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Croatian.dmg","displayName":"Croatian","remotePath":"/Developer_Tools/Glossaries__tvOS/Croatian.dmg","fileSize":2804835,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Czech.dmg","displayName":"Czech","remotePath":"/Developer_Tools/Glossaries__tvOS/Czech.dmg","fileSize":2951833,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Danish.dmg","displayName":"Danish","remotePath":"/Developer_Tools/Glossaries__tvOS/Danish.dmg","fileSize":2650024,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Dutch.dmg","displayName":"Dutch","remotePath":"/Developer_Tools/Glossaries__tvOS/Dutch.dmg","fileSize":2678606,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Finnish.dmg","displayName":"Finnish","remotePath":"/Developer_Tools/Glossaries__tvOS/Finnish.dmg","fileSize":2704347,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"French.dmg","displayName":"French","remotePath":"/Developer_Tools/Glossaries__tvOS/French.dmg","fileSize":2739856,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"German.dmg","displayName":"German","remotePath":"/Developer_Tools/Glossaries__tvOS/German.dmg","fileSize":2730321,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hong Kong.dmg","displayName":"Hong Kong","remotePath":"/Developer_Tools/Glossaries__tvOS/Hong_Kong.dmg","fileSize":2534021,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hungarian.dmg","displayName":"Hungarian","remotePath":"/Developer_Tools/Glossaries__tvOS/Hungarian.dmg","fileSize":2803089,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Indonesian.dmg","displayName":"Indonesian","remotePath":"/Developer_Tools/Glossaries__tvOS/Indonesian.dmg","fileSize":2495300,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Japanese.dmg","displayName":"Japanese","remotePath":"/Developer_Tools/Glossaries__tvOS/Japanese.dmg","fileSize":2652949,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Korean.dmg","displayName":"Korean","remotePath":"/Developer_Tools/Glossaries__tvOS/Korean.dmg","fileSize":2590345,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Malay.dmg","displayName":"Malay","remotePath":"/Developer_Tools/Glossaries__tvOS/Malay.dmg","fileSize":2502950,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Polish.dmg","displayName":"Polish","remotePath":"/Developer_Tools/Glossaries__tvOS/Polish.dmg","fileSize":2924034,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Portuguese.dmg","displayName":"Portuguese","remotePath":"/Developer_Tools/Glossaries__tvOS/Portuguese.dmg","fileSize":2719846,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Russian.dmg","displayName":"Russian","remotePath":"/Developer_Tools/Glossaries__tvOS/Russian.dmg","fileSize":3111584,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Spanish.dmg","displayName":"Spanish","remotePath":"/Developer_Tools/Glossaries__tvOS/Spanish.dmg","fileSize":2713324,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Thai.dmg","displayName":"Thai","remotePath":"/Developer_Tools/Glossaries__tvOS/Thai.dmg","fileSize":2759570,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Traditional Chinese.dmg","displayName":"Traditional Chinese","remotePath":"/Developer_Tools/Glossaries__tvOS/Traditional_Chinese.dmg","fileSize":2527402,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Turkish.dmg","displayName":"Turkish","remotePath":"/Developer_Tools/Glossaries__tvOS/Turkish.dmg","fileSize":2719740,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Vietnamese.dmg","displayName":"Vietnamese","remotePath":"/Developer_Tools/Glossaries__tvOS/Vietnamese.dmg","fileSize":2593010,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Greek.dmg","displayName":"Greek","remotePath":"/Developer_Tools/Glossaries__tvOS/Greek.dmg","fileSize":2978514,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Italian.dmg","displayName":"Italian","remotePath":"/Developer_Tools/Glossaries__tvOS/Italian.dmg","fileSize":2713822,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Romanian.dmg","displayName":"Romanian","remotePath":"/Developer_Tools/Glossaries__tvOS/Romanian.dmg","fileSize":2813784,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Swedish.dmg","displayName":"Swedish","remotePath":"/Developer_Tools/Glossaries__tvOS/Swedish.dmg","fileSize":2671764,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Ukrainian.dmg","displayName":"Ukrainian","remotePath":"/Developer_Tools/Glossaries__tvOS/Ukrainian.dmg","fileSize":3075990,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Slovak.dmg","displayName":"Slovak","remotePath":"/Developer_Tools/Glossaries__tvOS/Slovak.dmg","fileSize":2943651,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Simplified Chinese.dmg","displayName":"Simplified Chinese","remotePath":"/Developer_Tools/Glossaries__tvOS/Simplified_Chinese.dmg","fileSize":2543517,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Norwegian Bokmal.dmg","displayName":"Norwegian Bokmal","remotePath":"/Developer_Tools/Glossaries__tvOS/Norwegian_Bokmal.dmg","fileSize":2644216,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Latin American.dmg","displayName":"Latin American","remotePath":"/Developer_Tools/Glossaries__tvOS/Latin_American.dmg","fileSize":2707751,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hindi.dmg","displayName":"Hindi","remotePath":"/Developer_Tools/Glossaries__tvOS/Hindi.dmg","fileSize":2915983,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Hebrew.dmg","displayName":"Hebrew","remotePath":"/Developer_Tools/Glossaries__tvOS/Hebrew.dmg","fileSize":2925426,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Brazilian.dmg","displayName":"Brazilian","remotePath":"/Developer_Tools/Glossaries__tvOS/Brazilian.dmg","fileSize":2706246,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Arabic.dmg","displayName":"Arabic","remotePath":"/Developer_Tools/Glossaries__tvOS/Arabic.dmg","fileSize":3110038,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"South China Cantonese.dmg","displayName":"South China Cantonese","remotePath":"/Developer_Tools/Glossaries__tvOS/South_China_Cantonese.dmg","fileSize":64601,"sortOrder":0,"dateCreated":"01/16/20 00:00","dateModified":"01/16/20 00:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.2.6 and iOS SDK 4.3 for Snow Leopard","description":"GM Build of Xcode 3.2.6 and iOS SDK 4.3. This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps.\r\n\r\nXcode 3 is incompatible with Mac OS X 10.7 Lion","isReleased":0,"datePublished":null,"dateCreated":"03/07/11 06:00","dateModified":"04/21/11 10:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 3.2.6 and iOS SDK 4.3","displayName":"Xcode 3.2.6 and iOS SDK 4.3","remotePath":"/Developer_Tools/xcode_3.2.6_and_ios_sdk_4.3__final/xcode_3.2.6_and_ios_sdk_4.3.dmg","fileSize":4443150993,"sortOrder":1,"dateCreated":"03/25/11 04:41","dateModified":"09/08/11 17:56","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode 3 and iOS SDK 4.3 Readme","displayName":"Xcode 3 and iOS SDK 4.3 Readme","remotePath":"/Developer_Tools/xcode_3.2.6_and_ios_sdk_4.3__final/xcode_3_and_ios_sdk_4.3_readme.pdf","fileSize":126871,"sortOrder":1,"dateCreated":"03/25/11 04:47","dateModified":"09/08/11 17:56","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Java for Mac OS X 10.5 Update 8 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.5 Update 8\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"03/21/11 05:44","dateModified":"09/28/11 05:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.5 Update 8","displayName":"Java Developer Package for Mac OS X 10.5 Update 8","remotePath":"/Java/java_for_mac_os_x_10.5_update_8_developer_package_20959/javadeveloper_10.5_9m3262.dmg","fileSize":232901416,"sortOrder":1,"dateCreated":"03/21/11 12:44","dateModified":"09/28/11 12:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 3 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 3\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"03/21/11 05:44","dateModified":"09/28/11 05:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 3","displayName":"Java Developer Package for Mac OS X 10.6 Update 3","remotePath":"/Java/java_for_mac_os_x_10.6_update_3_developer_package_20958/javadeveloper_10.6_10m3261.dmg","fileSize":146238826,"sortOrder":1,"dateCreated":"03/21/11 12:44","dateModified":"09/28/11 12:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.7 build 10J869","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included is a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"03/22/11 05:55","dateModified":"03/22/11 05:55","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.7 build 10J869","displayName":"Kernel Debug Kit 10.6.7 build 10J869","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.7_build_10j869/kernel_debug_kit_10.6.7_10j869.dmg","fileSize":65655371,"sortOrder":1,"dateCreated":"03/22/11 12:55","dateModified":"03/22/11 12:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.7","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.7 10J869. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"03/24/11 20:15","dateModified":"03/24/11 20:15","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-418.4.2-log","displayName":"IOUSBFamily-418.4.2-log","remotePath":"/hardware_and_drivers/iousbfamily_log_release_for_mac_os_x_10.6.7/iousbfamily418.4.2log.dmg","fileSize":3474619,"sortOrder":1,"dateCreated":"03/25/11 03:15","dateModified":"03/25/11 03:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Bonjour Conformance Test v1.5.1","description":"This test suite is used by 3rd parties to test Bonjour functionality and usage in their product(s). This is a requirement for AirPrint, AirPlay 2 Audio, AirPlay Video, and HomeKit certifications. All licensees of Bonjour must pass this test suite in order to use the Bonjour logo.","isReleased":1,"datePublished":"01/21/20 10:13","dateCreated":"01/22/20 09:02","dateModified":"01/22/20 09:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Bonjour Conformance Test 1.5.1.dmg","displayName":"Bonjour Conformance Test 1.5.1","remotePath":"/Developer_Tools/Bonjour_Conformance_Test_v1.5.1/Bonjour_Conformance_Test_1.5.1.dmg","fileSize":254053,"sortOrder":0,"dateCreated":"01/22/20 17:02","dateModified":"01/22/20 17:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 9.3","description":"This package includes audio, graphics, hardware i/o and auxiliary tools formally bundled in Xcode. These tools include: AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation (Requires macOS Sierra), Bluetooth Explorer (Requires macOS Sierra), HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"03/22/18 21:35","dateCreated":"03/29/18 10:33","dateModified":"03/29/18 10:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 9.3.dmg","displayName":"Additional Tools for Xcode 9.3","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_9.3/Additional_Tools_for_Xcode_9.3.dmg","fileSize":62159046,"sortOrder":0,"dateCreated":"03/29/18 17:33","dateModified":"03/29/18 17:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.5 build 17F35e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/04/18 01:00","dateCreated":"04/04/18 13:02","dateModified":"04/04/18 13:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.5 build 17F35e.dmg","displayName":"Kernel Debug Kit 10.13.5 build 17F35e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.5_build_17F35e/Kernel_Debug_Kit_10.13.5_build_17F35e.dmg","fileSize":63768189,"sortOrder":0,"dateCreated":"04/04/18 20:08","dateModified":"04/04/18 20:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.6.8","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.6.8 10K540. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"06/24/11 10:43","dateModified":"06/24/11 10:43","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-424.4.1-log","displayName":"IOUSBFamily-424.4.1-log","remotePath":"/hardware_and_drivers/iousbfamily_log_release_for_mac_os_x_10.6.8/iousbfamily424.4.1.dmg","fileSize":3737629,"sortOrder":1,"dateCreated":"06/24/11 17:43","dateModified":"06/24/11 17:43","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.8 build 10K540","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included is a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"06/27/11 05:33","dateModified":"06/27/11 05:33","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.8 build 10K540","displayName":"Kernel Debug Kit 10.6.8 build 10K540","remotePath":"/hardware_and_drivers/kernel_debug_kit_10.6.8_build_10k540/kernel_debug_kit_10.6.8_10k540.dmg","fileSize":65931058,"sortOrder":1,"dateCreated":"06/27/11 12:33","dateModified":"06/27/11 12:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 5 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 5\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/28/11 06:00","dateModified":"09/28/11 05:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 5","displayName":"Java Developer Package for Mac OS X 10.6 Update 5","remotePath":"/Java/java_for_mac_os_x_10.6_update_5_developer_package/javadeveloper_for_mac_os_x_10.6__10m3425.dmg","fileSize":140566975,"sortOrder":1,"dateCreated":"06/29/11 11:02","dateModified":"09/28/11 12:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.5 Update 10 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.5 Update 10\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/28/11 06:00","dateModified":"09/28/11 05:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.5 Update 10","displayName":"Java Developer Package for Mac OS X 10.5 Update 10","remotePath":"/Java/java_for_mac_os_x_10.5_update_10_developer_package/javadeveloper_for_mac_os_x_10.5__9m3425.dmg","fileSize":230989302,"sortOrder":1,"dateCreated":"06/29/11 10:51","dateModified":"09/28/11 12:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.7 build 11A511","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"07/06/11 10:18","dateModified":"07/20/11 06:38","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7 build 11A511","displayName":"Kernel Debug Kit 10.7 build 11A511","remotePath":"/hardware_and_drivers/kernel_debug_kit_10.7_build_11a511/kernel_debug_kit_10.7_11a511.dmg","fileSize":92757507,"sortOrder":1,"dateCreated":"07/06/11 17:18","dateModified":"07/20/11 13:38","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G18013","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 10:27","dateModified":"04/11/18 10:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G18013.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G18013","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G18013/Kernel_Debug_Kit_10.11.6_build_15G18013.dmg","fileSize":57267806,"sortOrder":0,"dateCreated":"04/11/18 17:29","dateModified":"04/11/18 17:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.7 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.7\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"07/20/11 12:59","dateModified":"09/28/11 05:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.7","displayName":"Java Developer Package for Mac OS X 10.7","remotePath":"/Java/java_for_mac_os_x_10.7_developer_package/javadeveloper_for_mac_os_x_10.7__11a511.dmg","fileSize":165639217,"sortOrder":1,"dateCreated":"07/20/11 19:59","dateModified":"09/28/11 12:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1114","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 10:30","dateModified":"04/11/18 10:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1114.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1114","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1114/Kernel_Debug_Kit_10.12.6_build_16G1114.dmg","fileSize":73042684,"sortOrder":0,"dateCreated":"04/11/18 17:31","dateModified":"04/11/18 17:56","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G20015","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 10:34","dateModified":"04/11/18 10:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G20015.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G20015","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G20015/Kernel_Debug_Kit_10.11.6_build_15G20015.dmg","fileSize":74083068,"sortOrder":0,"dateCreated":"04/11/18 17:35","dateModified":"04/11/18 17:56","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1314","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 10:36","dateModified":"04/11/18 10:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1314.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1314","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1314/Kernel_Debug_Kit_10.12.6_build_16G1314.dmg","fileSize":73911036,"sortOrder":0,"dateCreated":"04/11/18 17:36","dateModified":"04/11/18 17:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E160e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"02/20/18 11:00","dateCreated":"04/11/18 10:43","dateModified":"04/11/18 10:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E160e.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E160e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E160e.dmg/Kernel_Debug_Kit_10.13.4_build_17E160e.dmg","fileSize":63746302,"sortOrder":0,"dateCreated":"04/11/18 17:43","dateModified":"04/11/18 17:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E182a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/12/18 11:00","dateCreated":"04/11/18 10:44","dateModified":"04/11/18 10:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E182a.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E182a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E182a.dmg/Kernel_Debug_Kit_10.13.4_build_17E182a.dmg","fileSize":63746632,"sortOrder":0,"dateCreated":"04/11/18 17:44","dateModified":"04/11/18 17:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for Mac OS X 10.7 and 10.7.1","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.7 11A511 and 10.7.1 11B26. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"07/26/11 04:29","dateModified":"08/25/11 09:27","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-440.4.1-log","displayName":"IOUSBFamily-440.4.1-log","remotePath":"/hardware_and_drivers/iousbfamily_log_release_for_mac_os_x_10.7/iousbfamily440.4.1b.dmg","fileSize":3766117,"sortOrder":1,"dateCreated":"08/25/11 16:27","dateModified":"08/25/11 16:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.4 beta","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.\n\nBuild Number: 11N111s ","isReleased":0,"datePublished":"02/04/20 23:00","dateCreated":"02/05/20 10:06","dateModified":"02/05/20 10:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.4 beta.xip","displayName":"Xcode 11.4 beta","remotePath":"/Developer_Tools/Xcode_11.4_beta/Xcode_11.4_beta.xip","fileSize":8040943774,"sortOrder":0,"dateCreated":"02/05/20 18:06","dateModified":"02/05/20 18:07","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G19009","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 11:18","dateModified":"04/11/18 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G19009.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G19009","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G19009/Kernel_Debug_Kit_10.11.6_build_15G19009.dmg","fileSize":72755846,"sortOrder":0,"dateCreated":"04/11/18 18:18","dateModified":"04/11/18 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1212","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/11/18 11:00","dateCreated":"04/11/18 11:18","dateModified":"04/11/18 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1212.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1212","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1212/Kernel_Debug_Kit_10.12.6_build_16G1212.dmg","fileSize":73976454,"sortOrder":0,"dateCreated":"04/11/18 18:18","dateModified":"04/11/18 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"USDPython 0.63","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.63 Release Notes:
\n\n- UsdPython is distributed as an install package, which will be installed to your Mac’s /Applications folder after download.
\n- UsdPython folder is relocatable after installation.
\n- New texture wrapping adjustment with usdzconvert.
\n- USD library is updated to version 19.11 with UsdMedia change from version 20.02.\nNew tool usdzaudioinput allows user to add audio files into usdz files.
","isReleased":0,"datePublished":"02/05/20 12:02","dateCreated":"02/05/20 12:03","dateModified":"02/05/20 12:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"usdpython_0.63.pkg.zip","displayName":"usdpython_0.63.pkg","remotePath":"/Developer_Tools/USDPython_0.63/usdpython_0.63.pkg.zip","fileSize":62112880,"sortOrder":0,"dateCreated":"02/05/20 20:03","dateModified":"02/05/20 20:03","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Kernel Debug Kit 10.7.1 build 11B26","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"08/17/11 04:49","dateModified":"08/17/11 04:49","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7.1 build 11B26","displayName":"Kernel Debug Kit 10.7.1 build 11B26","remotePath":"/hardware_and_drivers/kernel_debug_kit_10.7.1_build_11b26/kernel_debug_kit_10.7.1_11b26.dmg","fileSize":92707397,"sortOrder":1,"dateCreated":"08/17/11 11:49","dateModified":"08/17/11 11:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2.2.2 Build 10M415","description":"The 2.2.2 update is recommended for all systems running Xsan 2.2. Please refer to seed note for more details.","isReleased":0,"datePublished":null,"dateCreated":"08/17/11 07:14","dateModified":"09/28/11 05:19","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Xsan 2.2.2 Build 10M415 File System","displayName":"Xsan 2.2.2 Build 10M415 File System","remotePath":"/xsan/xsan_2.2.2_build_10m415/xsan_file_system_2.2.2_10m415.dmg","fileSize":41369101,"sortOrder":1,"dateCreated":"08/17/11 14:14","dateModified":"09/28/11 12:19","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 2.2.2 Build 10M415 Seed Note","displayName":"Xsan 2.2.2 Build 10M415 Seed Note","remotePath":"/xsan/xsan_2.2.2_build_10m415/xsan_2.2.2_build_10m415_seed_note.rtf","fileSize":5000,"sortOrder":1,"dateCreated":"08/17/11 14:14","dateModified":"09/28/11 12:19","fileFormat":{"extension":".rtf","description":"RTF"}}]},{"name":"Safari 13.1 for macOS Mojave beta and Safari 13.1 for macOS High Sierra beta","description":"This is a pre-release version of Safari 13.1 for macOS Mojave beta and Safari 13.1 for macOS High Sierra beta. Please refer to the release notes for complete installation instructions.","isReleased":1,"datePublished":"02/10/20 13:00","dateCreated":"02/10/20 10:54","dateModified":"02/10/20 13:00","categories":[{"id":147,"name":"Safari","sortOrder":79}],"files":[{"filename":"Safari_13.1_for_macOS_Mojave_Beta_1.dmg","displayName":"Safari_13.1_for_macOS_Mojave_Beta_1","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta/Safari_13.1_for_macOS_Mojave_Beta_1.dmg","fileSize":70383542,"sortOrder":0,"dateCreated":"02/10/20 20:05","dateModified":"02/10/20 21:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Safari 13.1 Beta 1 Notes.pdf","displayName":"Safari 13.1 Beta 1 Notes","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta/Safari_13.1_Beta_1_Notes.pdf","fileSize":92455,"sortOrder":0,"dateCreated":"02/10/20 20:05","dateModified":"02/10/20 21:00","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Safari_13.1_for_macOS_High_Sierra_Beta_1.dmg","displayName":"Safari_13.1_for_macOS_High_Sierra_Beta_1","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta/Safari_13.1_for_macOS_High_Sierra_Beta_1.dmg","fileSize":66128587,"sortOrder":0,"dateCreated":"02/10/20 20:05","dateModified":"02/10/20 21:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.5 build 17F45c","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/17/18 11:00","dateCreated":"04/17/18 10:19","dateModified":"04/17/18 11:36","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.5 build 17F45c.dmg","displayName":"Kernel Debug Kit 10.13.5 build 17F45c","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.5_build_17F45c/Kernel_Debug_Kit_10.13.5_build_17F45c.dmg","fileSize":63755816,"sortOrder":0,"dateCreated":"04/17/18 17:23","dateModified":"04/17/18 18:36","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E202","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/24/18 10:00","dateCreated":"04/20/18 22:55","dateModified":"04/24/18 16:38","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E202.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E202","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E202/Kernel_Debug_Kit_10.13.4_build_17E202.dmg","fileSize":63809881,"sortOrder":0,"dateCreated":"04/21/18 06:00","dateModified":"04/24/18 23:38","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Bonjour SDK for Windows v3.0","description":"The Bonjour SDK for Windows includes the latest version of Bonjour as well as header files, libraries, and sample code to assist developers in creating Bonjour enabled applications on Windows. The SDK has been updated with the Bonjour core that is bundled with iTunes 10.3.1. This release will bring all existing Bonjour functionality released in Mac OS X 10.7 into the Bonjour for Windows product.","isReleased":1,"datePublished":null,"dateCreated":"09/22/11 05:42","dateModified":"09/26/11 06:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"BonjourSDKSetup","displayName":"BonjourSDKSetup","remotePath":"/Developer_Tools/bonjour_sdk_for_windows_v3.0/bonjoursdksetup.exe","fileSize":8751992,"sortOrder":1,"dateCreated":"09/22/11 12:42","dateModified":"09/26/11 13:05","fileFormat":{"extension":".exe","description":"Windows Executable"}}]},{"name":"Kernel Debug Kit 10.13.5 build 17F59b","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/01/18 10:00","dateCreated":"05/01/18 16:20","dateModified":"05/01/18 16:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.5 build 17F59b.dmg","displayName":"Kernel Debug Kit 10.13.5 build 17F59b","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.5_build_17F59b/Kernel_Debug_Kit_10.13.5_build_17F59b.dmg","fileSize":73082941,"sortOrder":0,"dateCreated":"05/01/18 23:21","dateModified":"05/01/18 23:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"OS X Font Tools","description":"This is a set of command-line utilities and applications for low-level inspection and editing of TrueType fonts. Support is included for the sophisticated typographic effects available through Apple Advanced Typography, such as ligatures, swashes, and small caps. Documentation and a tutorial are included.","isReleased":0,"datePublished":null,"dateCreated":"10/11/11 05:04","dateModified":"10/11/11 05:04","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"OS X Font Tools Release 4, beta 1","displayName":"OS X Font Tools Release 4, beta 1","remotePath":"/Mac_OS_X/os_x_font_tools/osxfonttools.dmg","fileSize":10863426,"sortOrder":1,"dateCreated":"10/11/11 12:04","dateModified":"10/11/11 12:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.7.2 build 11C74","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"10/12/11 08:05","dateModified":"10/12/11 08:05","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7.2 build 11C74","displayName":"Kernel Debug Kit 10.7.2 build 11C74","remotePath":"/Developer_Tools/kernel_debug_kit_10.7.2_build_11c74/kernel_debug_kit_10.7.2_11c74.dmg","fileSize":91900534,"sortOrder":1,"dateCreated":"10/12/11 15:05","dateModified":"10/12/11 15:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.5 build 17F66a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/07/18 13:00","dateCreated":"05/07/18 14:25","dateModified":"05/07/18 14:28","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.5 build 17F66a.dmg","displayName":"Kernel Debug Kit 10.13.5 build 17F66a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.5_build_17F66a/Kernel_Debug_Kit_10.13.5_build_17F66a.dmg","fileSize":73078843,"sortOrder":0,"dateCreated":"05/07/18 21:26","dateModified":"05/07/18 21:28","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 11.4 beta 2","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Perfs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":0,"datePublished":"02/18/20 15:46","dateCreated":"02/19/20 09:58","dateModified":"02/19/20 09:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 11.4 beta 2.dmg","displayName":"Additional Tools for Xcode 11.4 beta 2","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_11.4_beta_2/Additional_Tools_for_Xcode_11.4_beta_2.dmg","fileSize":58514436,"sortOrder":0,"dateCreated":"02/19/20 17:58","dateModified":"02/19/20 17:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.4 beta 2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.\n\nBuild Number: 11N123k","isReleased":0,"datePublished":"02/18/20 15:09","dateCreated":"02/19/20 09:59","dateModified":"02/19/20 10:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.4 beta 2.xip","displayName":"Xcode 11.4 beta 2","remotePath":"/Developer_Tools/Xcode_11.4_beta_2/Xcode_11.4_beta_2.xip","fileSize":8057131168,"sortOrder":0,"dateCreated":"02/19/20 17:59","dateModified":"02/19/20 18:00","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Java for Mac OS X 10.6 Update 6 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 6\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"11/08/11 04:04","dateModified":"11/08/11 04:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 6","displayName":"Java Developer Package for Mac OS X 10.6 Update 6","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_6_developer_package/javadeveloper_for_mac_os_x_10.6__10m3527.dmg","fileSize":140883943,"sortOrder":1,"dateCreated":"11/08/11 12:04","dateModified":"11/08/11 12:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.4 beta 2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"02/18/20 15:19","dateCreated":"02/19/20 10:53","dateModified":"02/19/20 10:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.4 beta 2.dmg","displayName":"Command Line Tools for Xcode 11.4 beta 2","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.4_beta_2/Command_Line_Tools_for_Xcode_11.4_beta_2.dmg","fileSize":264101693,"sortOrder":0,"dateCreated":"02/19/20 18:53","dateModified":"02/19/20 18:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.7 Update 1 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.7 Update 1\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"11/08/11 04:04","dateModified":"11/08/11 04:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.7 Update 1","displayName":"Java Developer Package for Mac OS X 10.7 Update 1","remotePath":"/Developer_Tools/java_for_mac_os_x_10.7_update_1_developer_package/javadeveloper_for_mac_os_x_10.7__11m3527.dmg","fileSize":166194773,"sortOrder":1,"dateCreated":"11/08/11 12:04","dateModified":"11/08/11 12:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for systems WITH Thunderbolt port, and Mac OS X 10.7.2","description":"This package provides an IOUSBFamily with logging enabled for systems with Thunderbolt ports, and Mac OS X 10.7.2 build 11C74 installed. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"11/17/11 06:30","dateModified":"11/17/11 06:30","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-455.4.1-log","displayName":"IOUSBFamily-455.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_systems_with_thunderbolt_port_and_mac_os_x_10.7.2/iousbfamily455.4.1.dmg","fileSize":3748889,"sortOrder":1,"dateCreated":"11/17/11 14:30","dateModified":"11/17/11 14:30","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for systems WITH NO Thunderbolt port, and Mac OS X 10.7.2","description":"This package provides an IOUSBFamily with logging enabled for systems with no Thunderbolt ports, and Mac OS X 10.7.2 build 11C74 installed. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"11/17/11 10:59","dateModified":"11/17/11 10:59","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-453.4.2-log","displayName":"IOUSBFamily-453.4.2-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_systems_with_no_thunderbolt_port_and_mac_os_x_10.7.2/iousbfamily453.4.2.dmg","fileSize":3757358,"sortOrder":1,"dateCreated":"11/17/11 18:59","dateModified":"11/17/11 18:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.7.3 build 11D50","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"02/02/12 05:02","dateModified":"02/02/12 05:02","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7.3 build 11D50","displayName":"Kernel Debug Kit 10.7.3 build 11D50","remotePath":"/Developer_Tools/kernel_debug_kit_10.7.3_build_11d50/kernel_debug_kit_10.7.3_11d50.dmg","fileSize":91971757,"sortOrder":1,"dateCreated":"02/02/12 13:02","dateModified":"02/02/12 13:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Accessibility Tools for Xcode - February 2012","description":"This package includes tools that aid in testing application Accessibility, and were formerly bundled in the Xcode installer. Included are the Accessibility Inspector, and Accessibility Verifier tools, to help determine an application's level and type of accessibility support. These accessibility tools support running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"02/06/12 07:26","dateModified":"02/16/12 00:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Accessibility Tools for Xcode","displayName":"Accessibility Tools for Xcode","remotePath":"/Developer_Tools/accessibility_tools_for_xcode__february_2012/accessibility_tools_for_xcode.dmg","fileSize":19088204,"sortOrder":1,"dateCreated":"02/13/12 13:29","dateModified":"02/16/12 08:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Audio Tools for Xcode - February 2012","description":"This package includes additional audio tools formerly bundled in the Xcode installer. These tools include the AU Lab and HALLab applications, CoreAudio headers and example code. These audio tools support running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"02/06/12 07:27","dateModified":"02/16/12 00:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio Tools for Xcode","displayName":"Audio Tools for Xcode","remotePath":"/Developer_Tools/audio_tools_for_xcode__february_2012/audio_tools_for_xcode.dmg","fileSize":30409548,"sortOrder":1,"dateCreated":"02/13/12 13:29","dateModified":"02/16/12 08:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Auxiliary Tools for Xcode - February 2012","description":"This package includes additional miscellaneous tools formerly bundled in the Xcode installer. These tools include: PackageMaker, Clipboard Viewer, CrashReporterPrefs, Help Indexer, Repeat After Me, SRLanguageModeler, and SleepX. These auxiliary tools support running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"02/06/12 07:29","dateModified":"02/16/12 00:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Auxiliary Tools for Xcode","displayName":"Auxiliary Tools for Xcode","remotePath":"/Developer_Tools/auxiliary_tools_for_xcode__february_2012/auxiliary_tools_for_xcode.dmg","fileSize":26833740,"sortOrder":1,"dateCreated":"02/13/12 13:29","dateModified":"02/16/12 08:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1408","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"06/01/18 11:00","dateCreated":"05/29/18 17:30","dateModified":"06/01/18 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1408.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1408","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1408/Kernel_Debug_Kit_10.12.6_build_16G1408.dmg","fileSize":73923324,"sortOrder":0,"dateCreated":"05/30/18 00:30","dateModified":"06/01/18 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G21013","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"06/01/18 11:00","dateCreated":"05/29/18 17:31","dateModified":"06/01/18 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G21013.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G21013","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G21013/Kernel_Debug_Kit_10.11.6_build_15G21013.dmg","fileSize":74091260,"sortOrder":0,"dateCreated":"05/30/18 00:31","dateModified":"06/01/18 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode - February 2012","description":"This package includes tools for developing for specific hardware and external devices. These tools were formerly bundled in the Xcode installer, and include: PacketLogger, USB Prober, btdump, IORegistryExplorer, Bluetooth Explorer, Bluetooth Diagnostics Utility, and the Network Link Conditioner pane for System Preferences. Tools in this package support running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"02/06/12 07:31","dateModified":"02/16/12 00:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools for Xcode","displayName":"Hardware IO Tools for Xcode","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__february_2012/hardware_io_tools_for_xcode.dmg","fileSize":24585036,"sortOrder":1,"dateCreated":"02/13/12 13:29","dateModified":"02/16/12 08:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.5 build 17F77","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"06/01/18 11:00","dateCreated":"05/31/18 14:36","dateModified":"06/01/18 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.5 build 17F77.dmg","displayName":"Kernel Debug Kit 10.13.5 build 17F77","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.5_build_17F77/Kernel_Debug_Kit_10.13.5_build_17F77.dmg","fileSize":73107506,"sortOrder":0,"dateCreated":"06/01/18 17:50","dateModified":"06/01/18 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.7.3","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.7.3 11D50. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"02/23/12 08:52","dateModified":"02/23/12 08:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-458.4.1-log","displayName":"IOUSBFamily-458.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.7.3/iousbfamily458.4.1alog.dmg","fileSize":3800293,"sortOrder":1,"dateCreated":"02/23/12 16:52","dateModified":"02/23/12 16:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G31f","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/01/18 12:00","dateCreated":"06/01/18 13:53","dateModified":"06/04/18 05:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G31f.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G31f","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G31f/Kernel_Debug_Kit_10.13.6_build_17G31f.dmg","fileSize":73082936,"sortOrder":0,"dateCreated":"06/01/18 21:00","dateModified":"06/04/18 12:19","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Dashcode for Xcode - March 2012","description":"Dashcode makes it fun and easy to create beautiful Dashboard widgets. You can build your first widget in less than a minute, using one of the included templates. For more advanced widgets, Dashcode includes a design canvas that produces the graphics assets for you, as well as a powerful code editor, and even a full JavaScript debugger. Dashcode supports running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"03/06/12 05:08","dateModified":"03/07/12 06:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Dashcode for Xcode","displayName":"Dashcode for Xcode","remotePath":"/Developer_Tools/dashcode_for_xcode__march_2012/dashcode_for_xcode.dmg","fileSize":125514572,"sortOrder":1,"dateCreated":"03/06/12 13:08","dateModified":"03/07/12 14:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - March 2012","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Debug, and the CI Filter Browser widget for Dashboard. These graphics tools support running on OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"03/06/12 05:09","dateModified":"03/07/12 06:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode","displayName":"Graphics Tools for Xcode","remotePath":"/Developer_Tools/graphics_tools_for_xcode__march_2012/graphics_tools_for_xcode.dmg","fileSize":124613452,"sortOrder":1,"dateCreated":"03/06/12 13:09","dateModified":"03/07/12 14:23","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.1 Build 15B42","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/21/15 10:00","dateCreated":"10/27/15 13:05","dateModified":"10/27/15 13:05","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.1 Build 15B42.dmg","displayName":"Kernel Debug Kit 10.11.1 Build 15B42","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.1_Build_15B42/Kernel_Debug_Kit_10.11.1_Build_15B42.dmg","fileSize":58320566,"sortOrder":0,"dateCreated":"10/27/15 20:05","dateModified":"10/27/15 20:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.4 beta 3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"03/02/20 11:49","dateCreated":"03/03/20 10:03","dateModified":"03/03/20 10:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.4 beta 3.xip","displayName":"Xcode 11.4 beta 3","remotePath":"/Developer_Tools/Xcode_11.4_beta_3/Xcode_11.4_beta_3.xip","fileSize":8102285476,"sortOrder":0,"dateCreated":"03/03/20 18:03","dateModified":"03/03/20 18:03","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.4 beta 3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"03/02/20 11:11","dateCreated":"03/03/20 10:15","dateModified":"03/03/20 10:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.4 beta 3.dmg","displayName":"Command Line Tools for Xcode 11.4 beta 3","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.4_beta_3/Command_Line_Tools_for_Xcode_11.4_beta_3.dmg","fileSize":260497076,"sortOrder":0,"dateCreated":"03/03/20 18:15","dateModified":"03/03/20 18:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Safari 13.1 for macOS Mojave beta and Safari 13.1 for macOS High Sierra beta 2","description":"This is a pre-release version of Safari 13.1 for macOS Mojave beta and Safari 13.1 for macOS High Sierra beta 2. Please refer to the release notes for complete installation instructions.","isReleased":0,"datePublished":"03/03/20 13:00","dateCreated":"03/03/20 13:10","dateModified":"03/04/20 13:00","categories":[{"id":147,"name":"Safari","sortOrder":79}],"files":[{"filename":"Safari_13.1_for_macOS_High_Sierra_Beta_2.dmg","displayName":"Safari_13.1_for_macOS_High_Sierra_Beta_2","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta_2/Safari_13.1_for_macOS_High_Sierra_Beta_2.dmg","fileSize":66400863,"sortOrder":0,"dateCreated":"03/03/20 21:18","dateModified":"03/04/20 21:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Safari_13.1_for_macOS_Mojave_Beta_2.dmg","displayName":"Safari_13.1_for_macOS_Mojave_Beta_2","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta_2/Safari_13.1_for_macOS_Mojave_Beta_2.dmg","fileSize":70792008,"sortOrder":0,"dateCreated":"03/03/20 21:18","dateModified":"03/04/20 21:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Safari 13.1 Beta 2 Notes.pdf","displayName":"Safari 13.1 Beta 2 Notes","remotePath":"/Safari/Safari_13.1_for_macOS_Mojave_beta_and_Safari_13.1_for_macOS_High_Sierra_beta_2/Safari_13.1_Beta_2_Notes.pdf","fileSize":92545,"sortOrder":0,"dateCreated":"03/04/20 17:28","dateModified":"03/04/20 21:00","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Kernel Debug Kit 10.15.4 build 19E250c","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/03/20 10:00","dateCreated":"03/03/20 19:29","dateModified":"03/11/20 08:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15.4 build 19E250c.dmg","displayName":"Kernel Debug Kit 10.15.4 build 19E250c","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15.4_build_19E250c/Kernel_Debug_Kit_10.15.4_build_19E250c.dmg","fileSize":94470906,"sortOrder":0,"dateCreated":"03/04/20 03:32","dateModified":"03/11/20 15:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.2 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. Build #4D199","isReleased":0,"datePublished":null,"dateCreated":"03/21/12 23:40","dateModified":"03/22/12 04:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.2 for Lion","displayName":"Xcode 4.2 for Lion","remotePath":"/Developer_Tools/xcode_4.2_for_lion_21264/installxcode_42_lion.dmg","fileSize":1807251365,"sortOrder":1,"dateCreated":"03/22/12 06:40","dateModified":"03/22/12 11:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.2.1 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. Build #4D502","isReleased":0,"datePublished":null,"dateCreated":"03/21/12 23:41","dateModified":"03/22/12 04:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.2.1 for Lion","displayName":"Xcode 4.2.1 for Lion","remotePath":"/Developer_Tools/xcode_4.2.1_for_lion_21265/installxcode_421_lion.dmg","fileSize":1807220808,"sortOrder":1,"dateCreated":"03/22/12 06:41","dateModified":"03/22/12 11:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.1 for Lion","description":"This is the complete Xcode developer toolset for Mac, iPhone, and iPad. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building Mac OS X and iOS apps. Build # 4B110","isReleased":0,"datePublished":null,"dateCreated":"03/21/12 23:43","dateModified":"03/22/12 03:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.1 for Lion","displayName":"Xcode 4.1 for Lion","remotePath":"/Developer_Tools/xcode_4.1_for_lion_21263/installxcode_41_lion.dmg","fileSize":3175033467,"sortOrder":1,"dateCreated":"03/22/12 06:43","dateModified":"03/22/12 10:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"AU Lab","description":"Apple's reference digital audio mixing application, AU Lab, can be used as a host application for Audio Unit effects, instruments, and generators.\r\n\r\nAU Lab has a very high performance and low overhead audio engine capable of supporting multiple outputs, multichannel, and advanced routing features such as send and sidechain buses.\r\n\r\nIt also includes MIDI facilities for instruments and effects including host clock synchronization, and an inspector that features a cocoa-based generic view for Audio Units that do not provide their own custom interface. This inspector includes full support for preset management and facilities for MIDI mapping of audio unit parameters.\r\n\r\nDesigned for Audio Unit auditioning and live music applications, this is the perfect host for testing Audio Units in development.","isReleased":0,"datePublished":null,"dateCreated":"03/29/12 10:15","dateModified":"03/29/12 10:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"AU Lab","displayName":"AU Lab","remotePath":"/Developer_Tools/au_lab/au_lab.dmg","fileSize":7612996,"sortOrder":1,"dateCreated":"03/29/12 17:15","dateModified":"03/29/12 17:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 7 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 7\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/03/12 06:00","dateModified":"04/03/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 7","displayName":"Java Developer Package for Mac OS X 10.6 Update 7","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_7_developer_package/javadeveloper_for_mac_os_x_10.6_update_7__10m3623.dmg","fileSize":141050152,"sortOrder":1,"dateCreated":"04/03/12 13:00","dateModified":"04/03/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2012-001 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2012-001\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/03/12 06:00","dateModified":"04/03/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2012-001","displayName":"Java Developer Package for OS X 2012-001","remotePath":"/Developer_Tools/java_for_os_x_2012001_developer_package/javadeveloper_for_os_x_2012001__11m3623.dmg","fileSize":166966121,"sortOrder":1,"dateCreated":"04/03/12 13:00","dateModified":"04/03/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2012-003 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2012-003\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/19/12 06:00","dateModified":"04/19/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2012-003","displayName":"Java Developer Package for OS X 2012-003","remotePath":"/Developer_Tools/java_for_os_x_2012003_developer_package/javadeveloper_for_os_x_2012003__11m3646.dmg","fileSize":167376912,"sortOrder":1,"dateCreated":"04/19/12 13:00","dateModified":"04/19/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 8 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 8\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/19/12 06:00","dateModified":"04/19/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 8","displayName":"Java Developer Package for Mac OS X 10.6 Update 8","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_8_developer_package/javadeveloper_for_mac_os_x_10.6_update_8__10m3646.dmg","fileSize":141301594,"sortOrder":1,"dateCreated":"04/19/12 13:00","dateModified":"04/19/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A293u","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/04/18 12:40","dateCreated":"06/04/18 12:34","dateModified":"06/04/18 12:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A293u.dmg","displayName":"Kernel Debug Kit 10.14 build 18A293u","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A293u/Kernel_Debug_Kit_10.14_build_18A293u.dmg","fileSize":81326738,"sortOrder":0,"dateCreated":"06/04/18 19:36","dateModified":"06/04/18 19:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.7.4 build 11E53","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"05/10/12 07:06","dateModified":"05/10/12 07:06","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7.4 build 11E53","displayName":"Kernel Debug Kit 10.7.4 build 11E53","remotePath":"/Developer_Tools/kernel_debug_kit_10.7.4_build_11e53/kernel_debug_kit_10.7.4_11e53.dmg","fileSize":92081706,"sortOrder":1,"dateCreated":"05/10/12 14:06","dateModified":"05/10/12 14:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.7.3 and 10.7.4","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.7.3 11D50 and 10.7.4 11E53. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.\r\n\r\nIMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":0,"datePublished":null,"dateCreated":"05/17/12 04:40","dateModified":"05/17/12 04:40","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-458.4.1b-log","displayName":"IOUSBFamily-458.4.1b-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.7.3_and_10.7.4/iousbfamily458.4.1blog.dmg","fileSize":3800809,"sortOrder":1,"dateCreated":"05/17/12 11:40","dateModified":"05/17/12 11:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 9 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 8\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/12/12 06:00","dateModified":"06/19/12 03:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 9","displayName":"Java Developer Package for Mac OS X 10.6 Update 9","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_9_developer_package/39529_javadeveloper_for_mac_os_x_10.6_update_9__10m3720.dmg","fileSize":141390419,"sortOrder":1,"dateCreated":"06/19/12 10:40","dateModified":"06/19/12 10:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.4 build 17E199","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/30/18 08:00","dateCreated":"06/07/18 17:44","dateModified":"06/07/18 17:44","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.4 build 17E199.dmg","displayName":"Kernel Debug Kit 10.13.4 build 17E199","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.4_build_17E199/Kernel_Debug_Kit_10.13.4_build_17E199.dmg","fileSize":63752848,"sortOrder":0,"dateCreated":"06/08/18 00:44","dateModified":"06/08/18 00:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"HLS Low Latency Beta Tools","description":"","isReleased":0,"datePublished":"05/28/19 07:56","dateCreated":"03/18/20 16:27","dateModified":"03/18/20 16:29","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Low-Latency HLS Prerelease Tools-73.dmg","displayName":"Low-Latency HLS Prerelease Tools-73","remotePath":"/Developer_Tools/HLS_Low_Latency_Beta_Tools/LowLatency_HLS_Prerelease_Tools73.dmg","fileSize":1901993,"sortOrder":0,"dateCreated":"03/18/20 23:28","dateModified":"03/18/20 23:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2012-004 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2012-003\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/12/12 06:00","dateModified":"06/19/12 03:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2012-004","displayName":"Java Developer Package for OS X 2012-004","remotePath":"/Developer_Tools/java_for_os_x_2012004_developer_package/javadeveloper_for_os_x_2012004__11m3720.dmg","fileSize":167112874,"sortOrder":1,"dateCreated":"06/19/12 10:40","dateModified":"06/19/12 10:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G39b","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/11/18 03:00","dateCreated":"06/11/18 14:54","dateModified":"06/11/18 17:22","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G39b.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G39b","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G39b/Kernel_Debug_Kit_10.13.6_build_17G39b.dmg","fileSize":73119807,"sortOrder":0,"dateCreated":"06/11/18 21:54","dateModified":"06/12/18 00:22","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 11.4","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Perfs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"03/11/20 12:35","dateCreated":"03/24/20 10:10","dateModified":"03/24/20 10:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 11.4.dmg","displayName":"Additional Tools for Xcode 11.4","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_11.4/Additional_Tools_for_Xcode_11.4.dmg","fileSize":58864667,"sortOrder":0,"dateCreated":"03/24/20 17:10","dateModified":"03/24/20 17:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.4","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/11/20 12:34","dateCreated":"03/24/20 10:11","dateModified":"03/24/20 10:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.4.dmg","displayName":"Command Line Tools for Xcode 11.4","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.4/Command_Line_Tools_for_Xcode_11.4.dmg","fileSize":260497052,"sortOrder":0,"dateCreated":"03/24/20 17:11","dateModified":"03/24/20 17:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.4","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.\n\nBuild: 11E146","isReleased":1,"datePublished":"03/11/20 12:43","dateCreated":"03/24/20 15:34","dateModified":"03/24/20 15:35","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.4.xip","displayName":"Xcode 11.4","remotePath":"/Developer_Tools/Xcode_11.4/Xcode_11.4.xip","fileSize":8111919274,"sortOrder":0,"dateCreated":"03/24/20 22:34","dateModified":"03/24/20 22:35","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Hardware IO Tools for Xcode - Late July 2012","description":"This package includes tools for developing for specific hardware and external devices. These tools were formerly bundled in the Xcode installer, and include: PacketLogger, IORegistryExplorer, Bluetooth Explorer, and the Network Link Conditioner pane for System Preferences. Tools in this package support running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"07/25/12 08:42","dateModified":"11/26/12 02:45","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools for Xcode 4.4 - Late July 2012","displayName":"Hardware IO Tools for Xcode 4.4 - Late July 2012","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode_4.4__late_july_2012/xcode44hwiotools6938115a.dmg","fileSize":30262698,"sortOrder":1,"dateCreated":"07/25/12 15:42","dateModified":"11/26/12 10:45","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Auxiliary Tools for Xcode - Late July 2012","description":"This package includes additional miscellaneous tools formerly bundled in the Xcode installer. These tools include: PackageMaker, Clipboard Viewer, CrashReporterPrefs, Help Indexer, Repeat After Me, SRLanguageModeler, and SleepX. These auxiliary tools support running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"07/25/12 09:13","dateModified":"08/07/12 06:47","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Auxiliary Tools for Xcode - Late July 2012","displayName":"Auxiliary Tools for Xcode - Late July 2012","remotePath":"/Developer_Tools/auxiliary_tools_for_xcode__late_july_2012/xcode44auxtools6938114a.dmg","fileSize":35059114,"sortOrder":1,"dateCreated":"07/25/12 16:13","dateModified":"08/07/12 13:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Audio Tools for Xcode - Late July 2012","description":"This package includes additional audio tools formerly bundled in the Xcode installer. These tools include the AU Lab and HALLab applications, CoreAudio headers and example code. These audio tools support running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"07/25/12 09:17","dateModified":"08/07/12 06:48","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio Tools for Xcode - Late July 2012","displayName":"Audio Tools for Xcode - Late July 2012","remotePath":"/Developer_Tools/audio_tools_for_xcode__late_july_2012/xcode44audiotools6938117a.dmg","fileSize":36292010,"sortOrder":1,"dateCreated":"07/25/12 16:17","dateModified":"08/07/12 13:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G47b","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/18/18 03:00","dateCreated":"06/18/18 15:22","dateModified":"06/18/18 15:45","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G47b.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G47b","remotePath":"/macOS/Kernel_Debug_Kit_10.13.6_build_17G47b/Kernel_Debug_Kit_10.13.6_build_17G47b.dmg","fileSize":73095228,"sortOrder":0,"dateCreated":"06/18/18 22:23","dateModified":"06/18/18 22:45","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A314k","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/26/18 10:18","dateCreated":"06/26/18 10:29","dateModified":"06/26/18 10:30","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A314k.dmg","displayName":"Kernel Debug Kit 10.14 build 18A314k","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A314k/Kernel_Debug_Kit_10.14_build_18A314k.dmg","fileSize":81843368,"sortOrder":0,"dateCreated":"06/26/18 17:29","dateModified":"06/26/18 17:30","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A314h","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/19/18 12:58","dateCreated":"06/26/18 10:30","dateModified":"06/26/18 10:30","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A314h.dmg","displayName":"Kernel Debug Kit 10.14 build 18A314h","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A314h/Kernel_Debug_Kit_10.14_build_18A314h.dmg","fileSize":81843335,"sortOrder":0,"dateCreated":"06/26/18 17:30","dateModified":"06/26/18 17:30","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G62a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/02/18 10:00","dateCreated":"07/02/18 20:10","dateModified":"07/02/18 20:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G62a.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G62a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G62a/Kernel_Debug_Kit_10.13.6_build_17G62a.dmg","fileSize":73107510,"sortOrder":0,"dateCreated":"07/03/18 03:10","dateModified":"07/03/18 03:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A326g","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/03/18 13:00","dateCreated":"07/04/18 02:03","dateModified":"07/04/18 10:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A326g.dmg","displayName":"Kernel Debug Kit 10.14 build 18A326g","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A326g/Kernel_Debug_Kit_10.14_build_18A326g.dmg","fileSize":81846400,"sortOrder":0,"dateCreated":"07/04/18 09:08","dateModified":"07/04/18 17:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15.4 build 19E287","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/08/20 10:00","dateCreated":"04/10/20 18:16","dateModified":"04/13/20 13:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15.4 build 19E287.dmg","displayName":"Kernel Debug Kit 10.15.4 build 19E287","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15.4_build_19E287/Kernel_Debug_Kit_10.15.4_build_19E287.dmg","fileSize":94447554,"sortOrder":0,"dateCreated":"04/11/20 01:17","dateModified":"04/13/20 20:23","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G65","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/09/18 13:00","dateCreated":"07/09/18 14:51","dateModified":"07/09/18 14:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G65.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G65","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G65/Kernel_Debug_Kit_10.13.6_build_17G65.dmg","fileSize":73111074,"sortOrder":0,"dateCreated":"07/09/18 21:51","dateModified":"07/09/18 21:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Web Kit SDK (v1.0)","description":"The Web Kit provides a set of classes to display web content in windows, and implements browser features such as following links when clicked by user, managing a back-forward list, and managing a history of pages recently visited. Documentation is included.","isReleased":0,"datePublished":null,"dateCreated":"06/21/03 07:13","dateModified":"03/12/04 09:53","categories":[],"files":[{"filename":"Web Kit SDK","displayName":"Web Kit SDK","remotePath":"/WWDC_2003/WebKitSDK.dmg.bin","fileSize":787840,"sortOrder":0,"dateCreated":"06/21/03 14:13","dateModified":"10/29/04 15:21","fileFormat":{"extension":".bin","description":"MacBinary"}}]},{"name":"Command Line Tools for Xcode 11.4.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"04/09/20 15:13","dateCreated":"04/15/20 11:35","dateModified":"04/15/20 11:35","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.4.1.dmg","displayName":"Command Line Tools for Xcode 11.4.1","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.4.1/Command_Line_Tools_for_Xcode_11.4.1.dmg","fileSize":260365974,"sortOrder":0,"dateCreated":"04/15/20 18:35","dateModified":"04/15/20 18:35","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.4.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.\n\nBuild Number: 11E503a","isReleased":1,"datePublished":"04/09/20 15:13","dateCreated":"04/16/20 09:20","dateModified":"04/16/20 09:21","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.4.1.xip","displayName":"Xcode 11.4.1","remotePath":"/Developer_Tools/Xcode_11.4.1/Xcode_11.4.1.xip","fileSize":8108773540,"sortOrder":0,"dateCreated":"04/16/20 16:20","dateModified":"04/16/20 16:21","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Kernel Debug Kit 10.14 build 18A336e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/17/18 13:00","dateCreated":"07/18/18 09:01","dateModified":"07/18/18 10:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A336e.dmg","displayName":"Kernel Debug Kit 10.14 build 18A336e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A336e/Kernel_Debug_Kit_10.14_build_18A336e.dmg","fileSize":81981524,"sortOrder":0,"dateCreated":"07/18/18 16:44","dateModified":"07/18/18 17:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"FileProviderValidation","description":"This application provides a way to validate that your File Provider Extension conforms to certain expectations that the system makes, by running a suite of tests against it.","isReleased":0,"datePublished":"06/04/18 12:00","dateCreated":"04/16/20 13:17","dateModified":"04/16/20 13:22","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"FileProviderValidation.zip","displayName":"FileProviderValidation","remotePath":"/Developer_Tools/FileProviderValidation/FileProviderValidation.zip","fileSize":10644752,"sortOrder":0,"dateCreated":"04/16/20 20:22","dateModified":"04/16/20 20:22","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Dashcode for Xcode - Late July 2012","description":"Dashcode makes it fun and easy to create beautiful Dashboard widgets. You can build your first widget in less than a minute, using one of the included templates. For more advanced widgets, Dashcode includes a design canvas that produces the graphics assets for you, as well as a powerful code editor, and even a full JavaScript debugger. Dashcode supports running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"07/25/12 11:16","dateModified":"11/26/12 02:44","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Dashcode for Xcode - Late July 2012","displayName":"Dashcode for Xcode - Late July 2012","remotePath":"/Developer_Tools/dashcode_for_xcode__late_july_2012/xcode44dashcode6938116a.dmg","fileSize":121398698,"sortOrder":1,"dateCreated":"07/25/12 18:16","dateModified":"11/26/12 10:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G2208","description":"Only set this if submitting a GM KDK.\nDescription: This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/24/18 10:00","dateCreated":"07/24/18 09:26","dateModified":"07/24/18 10:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G2208.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G2208","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G2208/Kernel_Debug_Kit_10.13.6_build_17G2208.dmg","fileSize":73122236,"sortOrder":0,"dateCreated":"07/24/18 16:29","dateModified":"07/24/18 17:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Swift Playgrounds Author Template for Xcode 11.1 (for Swift Playgrounds 3.3)","description":"This package includes a sample Xcode project and related tools to aid in creating, debugging, and producing a playground book document compatible with Swift Playgrounds version 3.3 for iPad and Mac. This package requires a Mac, and supports Xcode 11.1. It may not be compatible with later releases of Xcode.","isReleased":1,"datePublished":"04/02/20 10:26","dateCreated":"04/21/20 17:01","dateModified":"04/21/20 17:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift Playgrounds Author Template for Xcode 11.1 (for Swift Playgrounds 3.3).xip","displayName":"Swift Playgrounds Author Template for Xcode 11.1 (for Swift Playgrounds 3.3)","remotePath":"/Developer_Tools/Swift_Playgrounds_Author_Template_for_Xcode_11.1_for_Swift_Playgrounds_3.3/Swift_Playgrounds_Author_Template_for_Xcode_11.1_for_Swift_Playgrounds_3.3.xip","fileSize":1970327,"sortOrder":0,"dateCreated":"04/22/20 00:01","dateModified":"04/22/20 00:01","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8 (12A269). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"08/01/12 05:56","dateModified":"08/01/12 05:56","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-516.4.1-log","displayName":"IOUSBFamily-516.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8/iousbfamily516.4.1log.dmg","fileSize":2702618,"sortOrder":1,"dateCreated":"08/01/12 12:56","dateModified":"08/01/12 12:56","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.7.4 on MacBook Portables (Mid 2012)","description":"This is the version of IOUSBFamily that is present on the MacBook Air (Mid 2012), MacBook Pro (13\" and 15\", Mid 2012), and MacBook Pro (Retina) systems with USB 3 ports, and which have OS X 10.7.4 and IOUSBFamily 5.0.8, but with logging enabled. It will overwrite all the header files associated with the IOUSBFamily. It will install the latest versions of USBProber.app at /DevTools/Hardware and the tool usbtracer (in the Resources folder of the USB Prober.app). \r\nIMPORTANT: If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup. Before installing this version of IOUSBFamily, verify that the currently installed version of the IOUSBFamily is 5.0.8.","isReleased":1,"datePublished":null,"dateCreated":"08/14/12 03:52","dateModified":"08/14/12 03:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-508.4.1-log","displayName":"IOUSBFamily-508.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.7.4_on_macbook_portables_mid_2012/iousbfamily508.4.1log.dmg","fileSize":4309838,"sortOrder":1,"dateCreated":"08/14/12 10:52","dateModified":"08/14/12 10:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"USDPython 0.64","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\n\n\nUSDPython 0.64 Release Notes:
\n\n- Added blend shapes conversion from glTF and FBX.
\n- Added texture transform conversion from glTF and FBX.
\n- Added -path flag to add search paths for finding textures.
\n","isReleased":0,"datePublished":"04/24/20 12:32","dateCreated":"04/24/20 12:25","dateModified":"04/24/20 12:32","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"USDPython-0.64.zip","displayName":"USDPython-0.64","remotePath":"/Developer_Tools/USDPython_0.64/USDPython0.64.zip","fileSize":63086325,"sortOrder":0,"dateCreated":"04/24/20 19:32","dateModified":"04/24/20 19:32","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Mac OS X \"Panther\" and Xcode Prerelease Documentation","description":"Prerelease documentation for Mac OS X \"Panther\" and Xcode.","isReleased":0,"datePublished":null,"dateCreated":"06/21/03 08:41","dateModified":"03/12/04 09:53","categories":[],"files":[{"filename":"\"Panther\" and Xcode Documentation","displayName":"\"Panther\" and Xcode Documentation","remotePath":"/WWDC_2003/PreReleaseDocs_WWDC2003.dmg.bin","fileSize":225280128,"sortOrder":0,"dateCreated":"06/21/03 15:41","dateModified":"10/29/04 15:21","fileFormat":{"extension":".bin","description":"MacBinary"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8 and 10.8.1","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8 (12A269) and 10.8.1 (12B19. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"08/24/12 12:17","dateModified":"08/24/12 12:17","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-516.4.1b-log","displayName":"IOUSBFamily-516.4.1b-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8_and_10.8.1/iousbfamily516.4.1blog.dmg","fileSize":2704383,"sortOrder":1,"dateCreated":"08/24/12 19:17","dateModified":"08/24/12 19:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - August 2012","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Debug, and the CI Filter Browser widget for Dashboard. These graphics tools support running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"08/24/12 12:18","dateModified":"11/15/12 04:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode 4.4 - August 2012","displayName":"Graphics Tools for Xcode 4.4 - August 2012","remotePath":"/Developer_Tools/xcode_4.4_graphicstools_pkg_update/graphics_tools_for_xcode_4.4__august_2012.dmg","fileSize":127129002,"sortOrder":1,"dateCreated":"09/13/12 17:27","dateModified":"11/15/12 12:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.1 build 12B19","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"08/29/12 12:51","dateModified":"08/29/12 12:51","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.1 build 12B19","displayName":"Kernel Debug Kit 10.8.1 build 12B19","remotePath":"/Mac_OS_X/kernel_debug_kit_10.8.1_build_12b19/kernel_debug_kit_10.8.1_12b19.dmg","fileSize":82164310,"sortOrder":1,"dateCreated":"08/29/12 19:51","dateModified":"08/29/12 19:51","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 10 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 10\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"09/06/12 04:06","dateModified":"09/06/12 04:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 10","displayName":"Java Developer Package for Mac OS X 10.6 Update 10","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_10_developer_package/javadeveloper_for_mac_os_x_10.6_update_10__10m3811.dmg","fileSize":142267813,"sortOrder":1,"dateCreated":"09/06/12 11:06","dateModified":"09/06/12 11:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2012-005 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2012-005\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"09/06/12 04:07","dateModified":"09/06/12 04:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2012-005","displayName":"Java Developer Package for OS X 2012-005","remotePath":"/Developer_Tools/java_for_os_x_2012005_developer_package/javadeveloper_for_os_x_2012005__11m3811.dmg","fileSize":168001152,"sortOrder":1,"dateCreated":"09/06/12 11:07","dateModified":"09/06/12 11:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A347e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/30/18 10:00","dateCreated":"07/30/18 17:28","dateModified":"07/30/18 17:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A347e.dmg","displayName":"Kernel Debug Kit 10.14 build 18A347e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A347e/Kernel_Debug_Kit_10.14_build_18A347e.dmg","fileSize":81945357,"sortOrder":0,"dateCreated":"07/31/18 00:32","dateModified":"07/31/18 00:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Passbook Support Materials","description":"Support materials for developing and testing passes for use with Pass Kit and the Passbook application in iOS 6. Includes documentation, sample passes, a command-line tool for signing your passes for testing purposes, and a sample implementation in Ruby of a server that supports Passbook's web service.","isReleased":0,"datePublished":null,"dateCreated":"09/14/12 04:24","dateModified":"06/13/13 07:35","categories":[{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Passbook Materials","displayName":"Passbook Materials","remotePath":"/ios/passbook_support_materials/passbook_materials.dmg","fileSize":3340361,"sortOrder":1,"dateCreated":"09/19/12 10:38","dateModified":"06/13/13 14:35","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.2 build 12C54","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"09/20/12 06:46","dateModified":"09/20/12 06:46","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.2 build 12C54","displayName":"Kernel Debug Kit 10.8.2 build 12C54","remotePath":"/Developer_Tools/kernel_debug_kit_10.8.2_build_12c54/kernel_debug_kit_10.8.2_12c54.dmg","fileSize":82347000,"sortOrder":1,"dateCreated":"09/20/12 13:46","dateModified":"09/20/12 13:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.7.5 build 11G56","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"09/20/12 06:47","dateModified":"09/20/12 06:47","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.7.5 build 11G56","displayName":"Kernel Debug Kit 10.7.5 build 11G56","remotePath":"/Developer_Tools/kernel_debug_kit_10.7.5_build_11g56/kernel_debug_kit_10.7.5_11g56.dmg","fileSize":120497903,"sortOrder":1,"dateCreated":"09/20/12 13:47","dateModified":"09/20/12 13:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8.2","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8.2 (12C54) and (12C60). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"09/24/12 06:28","dateModified":"10/10/12 19:59","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-540.4.1a-log","displayName":"IOUSBFamily-540.4.1a-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8.2/iousbfamily540.4.1alog.dmg","fileSize":2734603,"sortOrder":1,"dateCreated":"10/11/12 02:59","dateModified":"10/11/12 02:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A353d","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"08/06/18 10:00","dateCreated":"08/06/18 16:32","dateModified":"08/06/18 16:32","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A353d.dmg","displayName":"Kernel Debug Kit 10.14 build 18A353d","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A353d/Kernel_Debug_Kit_10.14_build_18A353d.dmg","fileSize":81972645,"sortOrder":0,"dateCreated":"08/06/18 23:32","dateModified":"08/06/18 23:32","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.5 beta","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"04/25/20 22:13","dateCreated":"04/29/20 10:11","dateModified":"04/29/20 10:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.5 beta.xip","displayName":"Xcode 11.5 beta","remotePath":"/Developer_Tools/Xcode_11.5_beta/Xcode_11.5_beta.xip","fileSize":8122863782,"sortOrder":0,"dateCreated":"04/29/20 17:11","dateModified":"04/29/20 17:11","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.5 beta","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"04/25/20 21:55","dateCreated":"04/29/20 10:11","dateModified":"04/29/20 10:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.5 beta.dmg","displayName":"Command Line Tools for Xcode 11.5 beta","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.5_beta/Command_Line_Tools_for_Xcode_11.5_beta.dmg","fileSize":260431499,"sortOrder":0,"dateCreated":"04/29/20 17:11","dateModified":"04/29/20 17:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 11 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 11\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"10/16/12 06:00","dateModified":"10/16/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 11","displayName":"Java Developer Package for Mac OS X 10.6 Update 11","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_11_developer_package/javadeveloper_for_mac_os_x_10.6_update_11__10m3909.dmg","fileSize":133111317,"sortOrder":1,"dateCreated":"10/16/12 13:00","dateModified":"10/16/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2012-006 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2012-006\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"10/16/12 06:00","dateModified":"10/16/12 06:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2012-006","displayName":"Java Developer Package for OS X 2012-006","remotePath":"/Developer_Tools/java_for_os_x_2012006_developer_package/javadeveloper_for_os_x_2012006__11m3909.dmg","fileSize":158145073,"sortOrder":1,"dateCreated":"10/16/12 13:00","dateModified":"10/16/12 13:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.5 build 15F34","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/16/16 10:00","dateCreated":"05/16/16 11:51","dateModified":"05/19/16 15:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.5 build 15F34.dmg","displayName":"Kernel Debug Kit 10.11.5 build 15F34","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.5_build_15F34/Kernel_Debug_Kit_10.11.5_build_15F34.dmg","fileSize":73583238,"sortOrder":0,"dateCreated":"05/16/16 18:52","dateModified":"05/19/16 22:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.2 build 12C60","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"11/01/12 10:27","dateModified":"11/01/12 10:27","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.2 build 12C60","displayName":"Kernel Debug Kit 10.8.2 build 12C60","remotePath":"/Developer_Tools/kernel_debug_kit_10.8.2_build_12c60/kernel_debug_kit_10.8.2_12c60.dmg","fileSize":82285593,"sortOrder":1,"dateCreated":"11/01/12 17:27","dateModified":"11/01/12 17:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.5 beta 2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"05/04/20 14:31","dateCreated":"05/06/20 10:05","dateModified":"05/06/20 10:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.5 beta 2.xip","displayName":"Xcode 11.5 beta 2","remotePath":"/Developer_Tools/Xcode_11.5_beta_2/Xcode_11.5_beta_2.xip","fileSize":8123584674,"sortOrder":0,"dateCreated":"05/06/20 17:05","dateModified":"05/06/20 17:05","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"IOUSBFamily Log Release for OS X 10.7.5","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.7.5 builds 11G56, 11G63, 11G63b and 11G65. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"11/28/12 04:35","dateModified":"11/28/12 04:35","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-510.4.6-log","displayName":"IOUSBFamily-510.4.6-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.7.5/iousbfamily510.4.6log.dmg","fileSize":3793729,"sortOrder":1,"dateCreated":"11/28/12 12:35","dateModified":"11/28/12 12:35","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - January 2013","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Debug, and the CI Filter Browser widget for Dashboard. These graphics tools support running on OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"01/25/13 09:25","dateModified":"02/09/13 03:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode 4.6 - January 2013","displayName":"Graphics Tools for Xcode 4.6 - January 2013","remotePath":"/Developer_Tools/graphics_tools_for_xcode__january_2013/xcode46graphicstools6938140a.dmg","fileSize":126391722,"sortOrder":1,"dateCreated":"01/25/13 17:25","dateModified":"02/09/13 11:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - January 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6 and later. This package requires Mac OS X 10.7.4 or later.","isReleased":1,"datePublished":null,"dateCreated":"01/25/13 09:32","dateModified":"02/09/13 03:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - January 2013","displayName":"Command Line Tools (OS X Lion) for Xcode - January 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__january_2013/xcode46cltools_10_76938132a.dmg","fileSize":146394832,"sortOrder":1,"dateCreated":"01/25/13 17:32","dateModified":"02/09/13 11:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - January 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6.","isReleased":1,"datePublished":null,"dateCreated":"01/25/13 09:41","dateModified":"02/09/13 03:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - January 2013","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - January 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__january_2013/xcode46cltools_10_86938131a.dmg","fileSize":118394139,"sortOrder":1,"dateCreated":"01/25/13 17:41","dateModified":"02/09/13 11:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 4.6","description":"The is the release version of the complete Xcode developer toolset for Mac, iPhone, iPod touch, and iPad. It includes the iOS 6 SDK and OS X 10.8 SDK. Xcode 4.6 requires OS X Mountain Lion or OS X Lion.","isReleased":1,"datePublished":null,"dateCreated":"01/25/13 10:04","dateModified":"12/20/19 17:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 4.6","displayName":"Xcode 4.6","remotePath":"/Developer_Tools/xcode_4.6/xcode460417218a.dmg","fileSize":1723665548,"sortOrder":1,"dateCreated":"01/25/13 18:04","dateModified":"02/20/13 19:27","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Release Notes Xcode 4.6","displayName":"Release Notes Xcode 4.6","remotePath":"/Developer_Tools/xcode_4.6/release_notes_xcode46gm.pdf","fileSize":78147,"sortOrder":1,"dateCreated":"01/25/13 18:04","dateModified":"02/20/13 19:27","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Java for Mac OS X 10.6 Update 13 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 13\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"02/19/13 09:24","dateModified":"02/19/13 09:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 13","displayName":"Java Developer Package for Mac OS X 10.6 Update 13","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_13_developer_package/java_for_mac_os_x_10.6_update_13_dp__10m4102.dmg","fileSize":132995399,"sortOrder":1,"dateCreated":"02/19/13 17:24","dateModified":"02/19/13 17:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2013-001 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2013-001\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"02/19/13 09:24","dateModified":"02/19/13 09:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2013-001","displayName":"Java Developer Package for OS X 2013-001","remotePath":"/Developer_Tools/java_for_os_x_2013001_developer_package/java_for_os_x_2013001_dp__11m4107.dmg","fileSize":158106904,"sortOrder":1,"dateCreated":"02/19/13 17:24","dateModified":"02/19/13 17:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 14 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 14\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"03/04/13 05:01","dateModified":"03/04/13 05:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 14","displayName":"Java Developer Package for Mac OS X 10.6 Update 14","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_14_developer_package/javadeveloper_for_mac_os_x_10.6_update_14__10m4203.dmg","fileSize":132942084,"sortOrder":1,"dateCreated":"03/04/13 13:01","dateModified":"03/04/13 13:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2013-002 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2013-002\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":1,"datePublished":null,"dateCreated":"03/04/13 05:01","dateModified":"03/04/13 05:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2013-002","displayName":"Java Developer Package for OS X 2013-002","remotePath":"/Developer_Tools/java_for_os_x_2013002_developer_package/java_for_os_x_2013002_dp__11m4203.dmg","fileSize":158047222,"sortOrder":1,"dateCreated":"03/04/13 13:01","dateModified":"03/04/13 13:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A371a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"08/20/18 10:00","dateCreated":"08/20/18 16:15","dateModified":"08/20/18 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A371a.dmg","displayName":"Kernel Debug Kit 10.14 build 18A371a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A371a/Kernel_Debug_Kit_10.14_build_18A371a.dmg","fileSize":81962412,"sortOrder":0,"dateCreated":"08/20/18 23:15","dateModified":"08/20/18 23:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6.1.","isReleased":1,"datePublished":null,"dateCreated":"03/14/13 09:01","dateModified":"03/14/13 09:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2013","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - March 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__march_2013/xcode461_cltools_10_86938245a.dmg","fileSize":118401880,"sortOrder":1,"dateCreated":"03/14/13 16:01","dateModified":"03/14/13 16:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - March 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6.1 and later. This package requires Mac OS X 10.7.4 or later.","isReleased":1,"datePublished":null,"dateCreated":"03/14/13 09:01","dateModified":"03/14/13 09:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - March 2013","displayName":"Command Line Tools (OS X Lion) for Xcode - March 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__march_2013/xcode461_cltools_10_76938246a.dmg","fileSize":146376178,"sortOrder":1,"dateCreated":"03/14/13 16:01","dateModified":"03/14/13 16:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.3 build 12D78","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"03/29/13 05:50","dateModified":"03/29/13 05:50","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.3 build 12D78","displayName":"Kernel Debug Kit 10.8.3 build 12D78","remotePath":"/Mac_OS_X/kernel_debug_kit_10.8.3_build_12d78/kernel_debug_kit_10.8.3_12d78.dmg","fileSize":82388601,"sortOrder":1,"dateCreated":"03/29/13 12:50","dateModified":"03/29/13 12:50","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6.2.","isReleased":1,"datePublished":null,"dateCreated":"04/11/13 11:29","dateModified":"04/15/13 10:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2013","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - April 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__april_2013/xcode462_cltools_10_86938259a.dmg","fileSize":118451750,"sortOrder":1,"dateCreated":"04/11/13 18:29","dateModified":"04/15/13 17:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Lion) for Xcode - April 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE, and can be installed on your system using the Downloads preferences pane within Xcode 4.6.2 and later. This package requires Mac OS X 10.7.4 or later.","isReleased":1,"datePublished":null,"dateCreated":"04/12/13 08:40","dateModified":"04/15/13 10:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Lion) for Xcode - April 2013","displayName":"Command Line Tools (OS X Lion) for Xcode - April 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_lion_for_xcode__april_2013/xcode462_cltools_10_76938260a.dmg","fileSize":146426030,"sortOrder":1,"dateCreated":"04/12/13 15:40","dateModified":"04/15/13 17:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2013-003 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2013-003\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/16/13 12:23","dateModified":"04/16/13 12:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2013-003","displayName":"Java Developer Package for OS X 2013-003","remotePath":"/Developer_Tools/java_for_os_x_2013003_developer_package/java_for_os_x_2013003_dp__11m4406.dmg","fileSize":158190796,"sortOrder":1,"dateCreated":"04/16/13 19:23","dateModified":"04/16/13 19:23","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 15 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 15\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"04/17/13 02:37","dateModified":"04/17/13 02:37","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 15","displayName":"Java Developer Package for Mac OS X 10.6 Update 15","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_15_developer_package/javadeveloper_for_mac_os_x_10.6_update_15__10m4406.dmg","fileSize":133084476,"sortOrder":1,"dateCreated":"04/17/13 09:37","dateModified":"04/17/13 09:37","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8.3","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8.3 (12D78). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"04/22/13 04:53","dateModified":"04/22/13 04:53","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-555.4.0-log","displayName":"IOUSBFamily-555.4.0-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8.3/iousbfamily555.4.0log.dmg","fileSize":2944681,"sortOrder":1,"dateCreated":"04/22/13 11:53","dateModified":"04/22/13 11:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.5 GM Seed","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"05/06/20 11:41","dateCreated":"05/18/20 10:16","dateModified":"05/18/20 10:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.5 GM Seed.xip","displayName":"Xcode 11.5 GM Seed","remotePath":"/Developer_Tools/Xcode_11.5_GM_Seed/Xcode_11.5_GM_Seed.xip","fileSize":8124240037,"sortOrder":0,"dateCreated":"05/18/20 17:16","dateModified":"05/18/20 17:16","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.5 GM Seed","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"05/06/20 11:56","dateCreated":"05/18/20 10:17","dateModified":"05/18/20 10:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.5 GM Seed.dmg","displayName":"Command Line Tools for Xcode 11.5 GM Seed","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.5_GM_Seed/Command_Line_Tools_for_Xcode_11.5_GM_Seed.dmg","fileSize":260431508,"sortOrder":0,"dateCreated":"05/18/20 17:17","dateModified":"05/18/20 17:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 Build 14F1021","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"11/10/15 15:00","dateCreated":"11/10/15 15:13","dateModified":"11/11/15 10:09","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.5 Build 14F1021.dmg","displayName":"Kernel Debug Kit 10.10.5 Build 14F1021","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_Build_14F1021/Kernel_Debug_Kit_10.10.5_Build_14F1021.dmg","fileSize":92492011,"sortOrder":0,"dateCreated":"11/10/15 23:16","dateModified":"11/11/15 18:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A377a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"08/27/18 10:00","dateCreated":"08/27/18 14:04","dateModified":"08/27/18 14:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A377a.dmg","displayName":"Kernel Debug Kit 10.14 build 18A377a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A377a/Kernel_Debug_Kit_10.14_build_18A377a.dmg","fileSize":81993211,"sortOrder":0,"dateCreated":"08/27/18 21:04","dateModified":"08/27/18 21:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Aperture 3.4 SDK","description":"The Aperture 3.4 SDK lets you create two kinds of Aperture plug-ins: Export plug-ins and Edit plug-ins. The SDK package includes Xcode templates, as well as example plug-ins.","isReleased":0,"datePublished":null,"dateCreated":"06/05/13 04:02","dateModified":"06/05/13 05:26","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Aperture 3.4 SDK","displayName":"Aperture 3.4 SDK","remotePath":"/Applications/aperture_3.4_sdk/aperturesdk_34.dmg","fileSize":862041,"sortOrder":1,"dateCreated":"06/05/13 11:02","dateModified":"06/05/13 12:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.4 build 12E55","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"06/06/13 09:52","dateModified":"06/06/13 09:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.4 build 12E55","displayName":"Kernel Debug Kit 10.8.4 build 12E55","remotePath":"/Developer_Tools/kernel_debug_kit_10.8.4_build_12e55/kernel_debug_kit_10.8.4_12e55.dmg","fileSize":82458031,"sortOrder":1,"dateCreated":"06/06/13 16:52","dateModified":"06/06/13 16:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.5","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"05/06/20 11:56","dateCreated":"05/20/20 12:00","dateModified":"05/20/20 12:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.5.xip","displayName":"Xcode 11.5","remotePath":"/Developer_Tools/Xcode_11.5/Xcode_11.5.xip","fileSize":8124240037,"sortOrder":0,"dateCreated":"05/20/20 19:00","dateModified":"05/20/20 19:00","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.5","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"05/06/20 12:00","dateCreated":"05/20/20 12:17","dateModified":"05/20/20 12:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.5.dmg","displayName":"Command Line Tools for Xcode 11.5","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.5/Command_Line_Tools_for_Xcode_11.5.dmg","fileSize":260431508,"sortOrder":0,"dateCreated":"05/20/20 19:17","dateModified":"05/20/20 19:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 16 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 16\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/18/13 06:02","dateModified":"06/21/13 03:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 16","displayName":"Java Developer Package for Mac OS X 10.6 Update 16","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_16_developer_package/java_for_mac_os_x_10.6_update_16_dp__10m4509.dmg","fileSize":133143086,"sortOrder":1,"dateCreated":"06/21/13 10:40","dateModified":"06/21/13 10:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2013-004 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2013-004\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"06/18/13 06:03","dateModified":"06/21/13 03:41","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2013-004","displayName":"Java Developer Package for OS X 2013-004","remotePath":"/Developer_Tools/java_for_os_x_2013004_developer_package/java_for_os_x_2013004_dp__11m4509.dmg","fileSize":158267562,"sortOrder":1,"dateCreated":"06/21/13 10:41","dateModified":"06/21/13 10:41","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8.4","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8.4 (12E55). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"06/19/13 09:43","dateModified":"06/19/13 09:43","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBamily-560.4.2-log","displayName":"IOUSBamily-560.4.2-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8.4/iousbfamily560.4.2log.dmg","fileSize":2959872,"sortOrder":1,"dateCreated":"06/19/13 16:43","dateModified":"06/19/13 16:43","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"WWDC 2013 Sample Code","description":"Sample Code from WWDC 2013 Sessions","isReleased":0,"datePublished":null,"dateCreated":"06/20/13 04:24","dateModified":"10/15/13 07:41","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":325,"name":"iOS","sortOrder":50},{"id":330,"name":"WWDC 2013","sortOrder":1}],"files":[{"filename":"iOS_IntroToTextKit","displayName":"iOS_IntroToTextKit","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_intrototextkit.zip","fileSize":1221364,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_DynamicsCatalog","displayName":"iOS_DynamicsCatalog","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_dynamicscatalog.zip","fileSize":49848,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_DownloadFont","displayName":"iOS_DownloadFont","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_downloadfont.zip","fileSize":101736,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_AVCompositionDebugViewer","displayName":"iOS_AVCompositionDebugViewer","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_avcompositiondebugviewer.zip","fileSize":8143234,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_AirLocate","displayName":"iOS_AirLocate","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_airlocate.zip","fileSize":59774,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_Dehaze","displayName":"OS_X_Dehaze","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_dehaze.zip","fileSize":13887176,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_VideoSnake","displayName":"iOS_VideoSnake","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_videosnake.zip","fileSize":171529,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_WWDCMaps","displayName":"iOS_WWDCMaps","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_wwdcmaps.zip","fileSize":48675,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_TicTacToeApp","displayName":"iOS_TicTacToeApp","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_tictactoeapp.zip","fileSize":166278,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_UIImageEffects","displayName":"iOS_UIImageEffects","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_uiimageeffects.zip","fileSize":2745247,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_ThreadedCoreData","displayName":"iOS_ThreadedCoreData","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_threadedcoredata.zip","fileSize":72865,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_SloPoke","displayName":"iOS_SloPoke","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_slopoke.zip","fileSize":215275,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_SoZoomy","displayName":"iOS_SoZoomy","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_sozoomy.zip","fileSize":454347,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_SimpleBackgroundFetch","displayName":"iOS_SimpleBackgroundFetch","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_simplebackgroundfetch.zip","fileSize":2384320,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_RunningWithASnap","displayName":"iOS_RunningWithASnap","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_runningwithasnap.zip","fileSize":244421,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_PrivacyPrompts","displayName":"iOS_PrivacyPrompts","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_privacyprompts.zip","fileSize":33602,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_SpriteKit_Physics_Collisions","displayName":"OS_X_SpriteKit_Physics_Collisions","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_spritekit_physics_collisions.zip","fileSize":52859,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_PrintBanner","displayName":"iOS_PrintBanner","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_printbanner.zip","fileSize":111072,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_QRchestra","displayName":"iOS_QRchestra","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_qrchestra.zip","fileSize":128627,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_CollectionView-StateRestoration","displayName":"iOS_CollectionView-StateRestoration","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_collectionviewstaterestoration.zip","fileSize":8553906,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_CIFunHouse","displayName":"iOS_CIFunHouse","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_cifunhouse.zip","fileSize":125256,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_ButtonTapper3000","displayName":"iOS_ButtonTapper3000","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_buttontapper3000.zip","fileSize":94791,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_CollectionViewTransition","displayName":"iOS_CollectionViewTransition","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_collectionviewtransition.zip","fileSize":896394,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_AVCustomEdit","displayName":"iOS_AVCustomEdit","remotePath":"/wwdc_2013/wwdc_2013_sample_code/ios_avcustomedit.zip","fileSize":8159020,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_SceneKit_Slides_WWDC2013","displayName":"OS_X_SceneKit_Slides_WWDC2013","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_scenekit_slides_wwdc2013.zip","fileSize":35645058,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_RockPaperScissors","displayName":"OS_X_RockPaperScissors","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_rockpaperscissors.zip","fileSize":1744396,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_avsubtitleswriter","displayName":"OS_X_avsubtitleswriter","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avsubtitleswriter.zip","fileSize":18848,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_Sprite_Tour","displayName":"OS_X_Sprite_Tour","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_sprite_tour.zip","fileSize":749927,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AVLegibleMeanings","displayName":"OS_X_AVLegibleMeanings","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avlegiblemeanings.zip","fileSize":32711,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AVCompositionDebugViewer","displayName":"OS_X_AVCompositionDebugViewer","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avcompositiondebugviewer.zip","fileSize":8125498,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AVMediaSelectionDemo","displayName":"OS_X_AVMediaSelectionDemo","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avmediaselectiondemo.zip","fileSize":100440632,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AVKitPlayer","displayName":"OS_X_AVKitPlayer","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avkitplayer.zip","fileSize":27986,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AppleSamplePCI","displayName":"OS_X_AppleSamplePCI","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_applesamplepci.zip","fileSize":26381,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AVCustomEdit","displayName":"OS_X_AVCustomEdit","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_avcustomedit.zip","fileSize":8143448,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_ColorMyWords","displayName":"OS_X_ColorMyWords","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_colormywords.zip","fileSize":19056,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"OS_X_AccessibilityUIExamples","displayName":"OS_X_AccessibilityUIExamples","remotePath":"/wwdc_2013/wwdc_2013_sample_code/os_x_accessibilityuiexamples.zip","fileSize":542312,"sortOrder":1,"dateCreated":"06/20/13 11:24","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"iOS_SimpleBackgroundTransfer","displayName":"iOS_SimpleBackgroundTransfer","remotePath":"/wwdc_2013/wwdc_2013_sample_code/52012_ios_simplebackgroundtransfer.zip","fileSize":30881,"sortOrder":1,"dateCreated":"08/12/13 13:20","dateModified":"10/15/13 14:41","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Kernel Debug Kit 10.14 build 18A384a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"09/04/18 10:00","dateCreated":"09/09/18 20:58","dateModified":"09/09/18 20:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A384a.dmg","displayName":"Kernel Debug Kit 10.14 build 18A384a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A384a/Kernel_Debug_Kit_10.14_build_18A384a.dmg","fileSize":81991540,"sortOrder":0,"dateCreated":"09/10/18 03:58","dateModified":"09/10/18 03:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A389","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"09/12/18 16:00","dateCreated":"09/12/18 15:18","dateModified":"09/12/18 15:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A389.dmg","displayName":"Kernel Debug Kit 10.14 build 18A389","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A389/Kernel_Debug_Kit_10.14_build_18A389.dmg","fileSize":81991168,"sortOrder":0,"dateCreated":"09/12/18 22:27","dateModified":"09/12/18 22:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 10","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"09/17/18 07:21","dateCreated":"09/17/18 10:25","dateModified":"09/17/18 10:26","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 10.dmg","displayName":"Additional Tools for Xcode 10","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_10/Additional_Tools_for_Xcode_10.dmg","fileSize":62332045,"sortOrder":0,"dateCreated":"09/17/18 17:25","dateModified":"09/17/18 17:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14 build 18A391","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"09/24/18 10:38","dateCreated":"09/24/18 10:33","dateModified":"09/24/18 10:38","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14 build 18A391.dmg","displayName":"Kernel Debug Kit 10.14 build 18A391","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14_build_18A391/Kernel_Debug_Kit_10.14_build_18A391.dmg","fileSize":81992054,"sortOrder":0,"dateCreated":"09/24/18 17:34","dateModified":"09/24/18 17:38","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.6.8 build 10K549","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included is a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"08/07/13 09:51","dateModified":"08/07/13 09:51","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.6.8 build 10K549","displayName":"Kernel Debug Kit 10.6.8 build 10K549","remotePath":"/Developer_Tools/kernel_debug_kit_10.6.8_build_10k549/kernel_debug_kit_10.6.8_10k549.dmg","fileSize":93429770,"sortOrder":1,"dateCreated":"08/07/13 16:51","dateModified":"08/07/13 16:51","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.1 build 18B45d","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"09/25/18 16:15","dateCreated":"09/25/18 16:08","dateModified":"09/26/18 10:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.1 build 18B45d.dmg","displayName":"Kernel Debug Kit 10.14.1 build 18B45d","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.1_build_18B45d/Kernel_Debug_Kit_10.14.1_build_18B45d.dmg","fileSize":81997489,"sortOrder":0,"dateCreated":"09/25/18 23:09","dateModified":"09/26/18 17:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.1 build 18B50c","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/02/18 10:00","dateCreated":"10/02/18 20:42","dateModified":"10/02/18 20:42","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.1 build 18B50c.dmg","displayName":"Kernel Debug Kit 10.14.1 build 18B50c","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.1_build_18B50c/Kernel_Debug_Kit_10.14.1_build_18B50c.dmg","fileSize":81986807,"sortOrder":0,"dateCreated":"10/03/18 03:42","dateModified":"10/03/18 03:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.5 build 12F37","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":0,"datePublished":null,"dateCreated":"09/12/13 06:19","dateModified":"10/15/13 06:48","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.5 build 12F37","displayName":"Kernel Debug Kit 10.8.5 build 12F37","remotePath":"/Developer_Tools/kernel_debug_kit_10.8.5_build_12f37/kernel_debug_kit_10.8.5_12f37.dmg","fileSize":82830653,"sortOrder":1,"dateCreated":"09/12/13 13:19","dateModified":"10/15/13 13:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.8.5 build 12F45","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are GDB macros useful for kernel debugging, a DEBUG kernel built without compiler optimizations, and a script for simplifying the creation of symbol files.","isReleased":0,"datePublished":null,"dateCreated":"10/03/13 06:27","dateModified":"10/15/13 06:48","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.8.5 build 12F45","displayName":"Kernel Debug Kit 10.8.5 build 12F45","remotePath":"/Developer_Tools/kernel_debug_kit_10.8.5_build_12f45/kernel_debug_kit_10.8.5_12f45.dmg","fileSize":82824703,"sortOrder":1,"dateCreated":"10/03/13 13:27","dateModified":"10/15/13 13:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2013","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make.","isReleased":1,"datePublished":null,"dateCreated":"10/14/13 04:44","dateModified":"10/22/13 11:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2013","displayName":"Command Line Tools (OS X Mountain Lion) for Xcode - October 2013","remotePath":"/Developer_Tools/command_line_tools_os_x_mountain_lion_for_xcode__october_2013/command_line_tools_os_x_mountain_lion_for_xcode__october_2013.dmg","fileSize":101192644,"sortOrder":1,"dateCreated":"10/14/13 11:44","dateModified":"10/22/13 18:23","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for Mac OS X 10.6 Update 17 Developer Package","description":"Documentation and developer runtime of \"Java for Mac OS X 10.6 Update 17\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"10/15/13 09:45","dateModified":"10/15/13 09:45","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for Mac OS X 10.6 Update 17","displayName":"Java Developer Package for Mac OS X 10.6 Update 17","remotePath":"/Developer_Tools/java_for_mac_os_x_10.6_update_17_developer_package/java_for_mac_os_x_10.6_update_17_dp__10m4609.dmg","fileSize":133273545,"sortOrder":1,"dateCreated":"10/15/13 16:45","dateModified":"10/15/13 16:45","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Java for OS X 2013-005 Developer Package","description":"Documentation and developer runtime of \"Java for OS X 2013-005\". Contains JavaDoc, tools documentation, and native framework headers.","isReleased":0,"datePublished":null,"dateCreated":"10/15/13 09:46","dateModified":"10/15/13 10:39","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Java Developer Package for OS X 2013-005","displayName":"Java Developer Package for OS X 2013-005","remotePath":"/Developer_Tools/java_for_os_x_2013005_developer_package/java_for_os_x_2013005_dp__11m4609.dmg","fileSize":158261773,"sortOrder":1,"dateCreated":"10/15/13 16:46","dateModified":"10/15/13 17:39","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Auxiliary Tools for Xcode - October 2013","description":"This package includes additional miscellaneous tools formerly bundled in the Xcode installer. These tools include: Clipboard Viewer, CrashReporterPrefs, Help Indexer, Repeat After Me, and SRLanguageModeler. These auxiliary tools support running on OS X Mountain Lion and later.","isReleased":1,"datePublished":null,"dateCreated":"10/22/13 09:34","dateModified":"10/22/13 02:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Auxiliary Tools for Xcode - October 2013","displayName":"Auxiliary Tools for Xcode - October 2013","remotePath":"/Developer_Tools/auxiliary_tools_for_xcode__october_2013/auxiliary_tools_for_xcode__october_2013.dmg","fileSize":29762986,"sortOrder":1,"dateCreated":"10/22/13 16:34","dateModified":"12/05/13 09:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Audio Tools for Xcode - October 2013","description":"This package includes additional audio tools formerly bundled in the Xcode installer. These tools include the AU Lab and HALLab applications. These audio tools support running on OS X Mountain Lion and later.","isReleased":1,"datePublished":null,"dateCreated":"10/22/13 09:34","dateModified":"11/19/13 06:42","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio Tools for Xcode - October 2013","displayName":"Audio Tools for Xcode - October 2013","remotePath":"/Developer_Tools/audio_tools_for_xcode__october_2013/audio_tools_for_xcode__october_2013.dmg","fileSize":36660650,"sortOrder":1,"dateCreated":"10/22/13 16:34","dateModified":"11/19/13 14:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode - October 2013","description":"This package includes tools for developing for specific hardware and external devices. These tools were formerly bundled in the Xcode installer, and include: PacketLogger, IORegistryExplorer, Bluetooth Explorer, and the Network Link Conditioner pane for System Preferences. Tools in this package support running on OS X Mountain Lion and later.","isReleased":1,"datePublished":null,"dateCreated":"10/22/13 09:34","dateModified":"10/22/13 09:34","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools for Xcode - October 2013","displayName":"Hardware IO Tools for Xcode - October 2013","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__october_2013/hardware_io_tools_for_xcode__october_2013.dmg","fileSize":30655914,"sortOrder":1,"dateCreated":"10/22/13 16:34","dateModified":"10/22/13 16:34","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - October 2013","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Debug, and the CI Filter Browser widget for Dashboard. These graphics tools support running on OS X Mountain Lion and later.","isReleased":1,"datePublished":null,"dateCreated":"10/22/13 09:34","dateModified":"10/22/13 09:34","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode - October 2013","displayName":"Graphics Tools for Xcode - October 2013","remotePath":"/Developer_Tools/graphics_tools_for_xcode__october_2013/graphics_tools_for_xcode__october_2013_.dmg","fileSize":126404010,"sortOrder":1,"dateCreated":"10/22/13 16:34","dateModified":"10/22/13 16:34","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit OS X Mavericks GM Seed build 13A603","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":1,"datePublished":null,"dateCreated":"10/22/13 10:16","dateModified":"10/22/13 10:17","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit OS X Mavericks GM Seed build 13A603","displayName":"Kernel Debug Kit OS X Mavericks GM Seed build 13A603","remotePath":"/Developer_Tools/kernel_debug_kit_os_x_mavericks_gm_seed_build_13a603/kernel_debug_kit_10.9_13a603.dmg","fileSize":88567806,"sortOrder":1,"dateCreated":"10/22/13 17:16","dateModified":"10/22/13 17:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.8.5","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.8.5 (12F37, and 12F45). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"10/29/13 01:39","dateModified":"10/29/13 09:17","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-635.4.0-log","displayName":"IOUSBFamily-635.4.0-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_os_x_10.8.5/iousbfamily635.4.0log.dmg","fileSize":3067157,"sortOrder":1,"dateCreated":"10/29/13 08:39","dateModified":"10/29/13 16:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.9","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.9 (13A603). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"10/31/13 01:40","dateModified":"10/31/13 01:40","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-650.4.4-log","displayName":"IOUSBFamily-650.4.4-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_os_x_10.9/iousbfamily650.4.4log.dmg","fileSize":2913924,"sortOrder":1,"dateCreated":"10/31/13 08:40","dateModified":"10/31/13 08:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.2 Build 15C50","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"11/19/15 03:15","dateCreated":"11/19/15 15:11","dateModified":"12/08/15 10:02","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.2 Build 15C50.dmg","displayName":"Kernel Debug Kit 10.11.2 Build 15C50","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.2_Build_15C50/Kernel_Debug_Kit_10.11.2_Build_15C50.dmg","fileSize":57677405,"sortOrder":0,"dateCreated":"12/03/15 18:19","dateModified":"12/08/15 18:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"FireLog for OS X 10.6-10.8","description":"FireLog is a fast plain text logging service with a remote viewer, suitable for use with kernel or application development.","isReleased":1,"datePublished":null,"dateCreated":"01/16/14 07:12","dateModified":"01/16/14 07:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"FireLog for OS X 10.6-10.8","displayName":"FireLog for OS X 10.6-10.8","remotePath":"/Developer_Tools/firelog_for_os_x_10.610.8/firelog_for_os_x_10.610.8.zip","fileSize":81153,"sortOrder":1,"dateCreated":"01/16/14 15:12","dateModified":"01/16/14 15:12","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"FireLog 2.0.5 for OS X 10.9","description":"FireLog is a fast plain text logging service with a remote viewer, suitable for use with kernel or application development.","isReleased":1,"datePublished":null,"dateCreated":"01/16/14 07:13","dateModified":"01/16/14 07:13","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"FireLog 2.0.5 for OS X 10.9","displayName":"FireLog 2.0.5 for OS X 10.9","remotePath":"/Developer_Tools/firelog_2.0.5_for_os_x_10.9/firelog_2.0.5_for_os_x_10.9.zip","fileSize":30983,"sortOrder":1,"dateCreated":"01/16/14 15:13","dateModified":"01/16/14 15:13","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Kernel Debug Kit 10.14.1 build 18B67a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/17/18 10:00","dateCreated":"10/19/18 21:06","dateModified":"10/19/18 23:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.1 build 18B67a.dmg","displayName":"Kernel Debug Kit 10.14.1 build 18B67a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.1_build_18B67a/Kernel_Debug_Kit_10.14.1_build_18B67a.dmg","fileSize":81968866,"sortOrder":0,"dateCreated":"10/20/18 04:06","dateModified":"10/20/18 06:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.1 build 13B42","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":1,"datePublished":null,"dateCreated":"02/12/14 02:56","dateModified":"02/12/14 03:02","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.1 build 13B42","displayName":"Kernel Debug Kit 10.9.1 build 13B42","remotePath":"/Mac_OS_X/kernel_debug_kit_10.9.1_build_13b42/kernel_debug_kit_10.9.1_13b42.dmg","fileSize":88565657,"sortOrder":1,"dateCreated":"02/12/14 10:56","dateModified":"02/12/14 11:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.1 build 18B73a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/23/18 10:00","dateCreated":"10/29/18 20:13","dateModified":"10/29/18 20:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.1 build 18B73a.dmg","displayName":"Kernel Debug Kit 10.14.1 build 18B73a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.1_build_18B73a/Kernel_Debug_Kit_10.14.1_build_18B73a.dmg","fileSize":81976621,"sortOrder":0,"dateCreated":"10/30/18 03:13","dateModified":"10/30/18 03:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.9 and 10.9.1","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.9 (13A603) and OS X 10.9.1 (13B42). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"02/21/14 00:55","dateModified":"02/21/14 00:55","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-650.4.4a-log","displayName":"IOUSBFamily-650.4.4a-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_os_x_10.9_and_10.9.1/iousbfamily650.4.4alog.dmg","fileSize":2913976,"sortOrder":1,"dateCreated":"02/21/14 08:55","dateModified":"02/21/14 08:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.2 build 13C64","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":1,"datePublished":null,"dateCreated":"02/28/14 02:40","dateModified":"02/28/14 02:40","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.2 build 13C64","displayName":"Kernel Debug Kit 10.9.2 build 13C64","remotePath":"/Mac_OS_X/kernel_debug_kit_10.9.2_build_13c64/kernel_debug_kit_10.9.2_13c64.dmg","fileSize":88653857,"sortOrder":1,"dateCreated":"02/28/14 10:40","dateModified":"02/28/14 10:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.9.2","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.9.2 (13C64). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"03/03/14 08:16","dateModified":"03/04/14 01:10","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-675.4.0-log","displayName":"IOUSBFamily-675.4.0-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_os_x_10.9.2/iousbfamily675.4.0log.dmg","fileSize":2937031,"sortOrder":1,"dateCreated":"03/03/14 16:16","dateModified":"03/04/14 09:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - March 2014","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Debug, and the CI Filter Browser widget for Dashboard. These graphics tools support running on OS X Mavericks and OS X Mountain Lion.","isReleased":1,"datePublished":null,"dateCreated":"03/10/14 05:04","dateModified":"03/10/14 05:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode 5.1 - March 2014","displayName":"Graphics Tools for Xcode 5.1 - March 2014","remotePath":"/Developer_Tools/graphics_tools_for_xcode__march_2014/graphics_tools_for_xcode_5.1__march_2014.dmg","fileSize":126678442,"sortOrder":1,"dateCreated":"03/10/14 12:04","dateModified":"03/10/14 12:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 10.1","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":0,"datePublished":"10/25/18 12:03","dateCreated":"10/30/18 17:44","dateModified":"10/30/18 17:44","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 10.1.dmg","displayName":"Additional Tools for Xcode 10.1","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_10.1/Additional_Tools_for_Xcode_10.1.dmg","fileSize":62326634,"sortOrder":0,"dateCreated":"10/31/18 00:44","dateModified":"10/31/18 00:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1704","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/31/18 11:00","dateCreated":"10/31/18 10:38","dateModified":"10/31/18 11:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1704.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1704","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1704/Kernel_Debug_Kit_10.12.6_build_16G1704.dmg","fileSize":73964284,"sortOrder":0,"dateCreated":"10/31/18 17:39","dateModified":"10/31/18 18:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G4005","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/31/18 11:00","dateCreated":"10/31/18 10:46","dateModified":"10/31/18 11:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G4005.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G4005","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G4005/Kernel_Debug_Kit_10.13.6_build_17G4005.dmg","fileSize":73134670,"sortOrder":0,"dateCreated":"10/31/18 17:47","dateModified":"10/31/18 18:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.2 build 18C31g","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/01/18 11:00","dateCreated":"11/01/18 11:25","dateModified":"11/01/18 11:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.2 build 18C31g.dmg","displayName":"Kernel Debug Kit 10.14.2 build 18C31g","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.2_build_18C31g/Kernel_Debug_Kit_10.14.2_build_18C31g.dmg","fileSize":81968304,"sortOrder":0,"dateCreated":"11/01/18 18:26","dateModified":"11/01/18 18:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.2 build 13C1021","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":1,"datePublished":null,"dateCreated":"04/28/14 04:26","dateModified":"04/28/14 04:26","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.2 build 13C1021","displayName":"Kernel Debug Kit 10.9.2 build 13C1021","remotePath":"/Developer_Tools/kernel_debug_kit_10.9.2_build_13c1021/kernel_debug_kit_10.9.2_13c1021.dmg","fileSize":88749628,"sortOrder":1,"dateCreated":"04/28/14 11:26","dateModified":"04/28/14 11:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.3 build 13D65","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":1,"datePublished":null,"dateCreated":"05/16/14 10:21","dateModified":"05/16/14 10:21","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.3 build 13D65","displayName":"Kernel Debug Kit 10.9.3 build 13D65","remotePath":"/Developer_Tools/kernel_debug_kit_10.9.3_build_13d65/kernel_debug_kit_10.9.3_13d65.dmg","fileSize":88802757,"sortOrder":1,"dateCreated":"05/16/14 17:21","dateModified":"05/16/14 17:21","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G4008","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/07/18 12:30","dateCreated":"11/07/18 12:20","dateModified":"11/07/18 12:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G4008.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G4008","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G4008/Kernel_Debug_Kit_10.13.6_build_17G4008.dmg","fileSize":73116563,"sortOrder":0,"dateCreated":"11/07/18 20:21","dateModified":"11/07/18 20:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.2 build 18C38b","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/07/18 12:30","dateCreated":"11/07/18 12:24","dateModified":"11/07/18 12:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.2 build 18C38b.dmg","displayName":"Kernel Debug Kit 10.14.2 build 18C38b","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.2_build_18C38b/Kernel_Debug_Kit_10.14.2_build_18C38b.dmg","fileSize":81967831,"sortOrder":0,"dateCreated":"11/07/18 20:24","dateModified":"11/07/18 20:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1707","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations","isReleased":0,"datePublished":"11/07/18 12:30","dateCreated":"11/07/18 12:26","dateModified":"11/07/18 12:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1707.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1707","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1707/Kernel_Debug_Kit_10.12.6_build_16G1707.dmg","fileSize":73964284,"sortOrder":0,"dateCreated":"11/07/18 20:27","dateModified":"11/07/18 20:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G3025.dmg","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/30/18 10:00","dateCreated":"11/16/18 11:19","dateModified":"11/16/18 11:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G3025.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G3025","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G3025.dmg/Kernel_Debug_Kit_10.13.6_build_17G3025.dmg","fileSize":73138045,"sortOrder":0,"dateCreated":"11/16/18 19:19","dateModified":"11/16/18 19:19","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1618","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/30/18 10:00","dateCreated":"11/16/18 11:24","dateModified":"11/16/18 11:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1618.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1618","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1618/Kernel_Debug_Kit_10.12.6_build_16G1618.dmg","fileSize":73906940,"sortOrder":0,"dateCreated":"11/16/18 19:24","dateModified":"11/16/18 19:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.1 build 18B75","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/30/18 10:00","dateCreated":"11/16/18 11:32","dateModified":"11/16/18 11:32","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.1 build 18B75.dmg","displayName":"Kernel Debug Kit 10.14.1 build 18B75","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.1_build_18B75/Kernel_Debug_Kit_10.14.1_build_18B75.dmg","fileSize":81987285,"sortOrder":0,"dateCreated":"11/16/18 19:32","dateModified":"11/16/18 19:32","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.4 build 13E28","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":0,"datePublished":null,"dateCreated":"07/07/14 07:59","dateModified":"07/07/14 07:59","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.4 build 13E28","displayName":"Kernel Debug Kit 10.9.4 build 13E28","remotePath":"/Mac_OS_X/kernel_debug_kit_10.9.4_build_13e28/kernel_debug_kit_10.9.4_13e28.dmg","fileSize":88807767,"sortOrder":1,"dateCreated":"07/07/14 14:59","dateModified":"07/07/14 14:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.9.3","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.9.3 (13D65). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"07/09/14 03:49","dateModified":"07/09/14 03:49","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-677.4.0-log","displayName":"IOUSBFamily-677.4.0-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_os_x_10.9.3/iousbfamily677.4.0log.dmg","fileSize":2937151,"sortOrder":1,"dateCreated":"07/09/14 10:49","dateModified":"07/09/14 10:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log Release for OS X 10.9.4","description":"This package provides an IOUSBFamily with logging enabled for OS X 10.9.4 (13E28). If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The latest version of the USB Prober application will be installed on the local hard drive at /DevTools/Hardware/USB Prober. IMPORTANT: Please verify that the OS X version matches that of the system where the software will be installed. If the incorrect version of the IOUSBFamily kernel extension is installed, the system may panic on startup or USB services may not work properly.","isReleased":1,"datePublished":null,"dateCreated":"07/09/14 06:03","dateModified":"07/09/14 06:03","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-683.4.0-log","displayName":"IOUSBFamily-683.4.0-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_os_x_10.9.4/iousbfamily683.4.0log.dmg","fileSize":2937125,"sortOrder":1,"dateCreated":"07/09/14 13:03","dateModified":"07/09/14 13:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode 7.2","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: Icon Composer, OpenGL Driver Monitor, OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Composer Visualizer and Quartz Debug. These graphics tools support running on OS X 10.11.","isReleased":1,"datePublished":"11/20/15 16:17","dateCreated":"12/08/15 09:52","dateModified":"12/08/15 10:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode 7.2.dmg","displayName":"Graphics Tools for Xcode 7.2","remotePath":"/Developer_Tools/Graphics_Tools_for_Xcode_7.2/Graphics_Tools_for_Xcode_7.2.dmg","fileSize":48249367,"sortOrder":0,"dateCreated":"12/08/15 17:52","dateModified":"12/08/15 18:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Late July 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":null,"dateCreated":"07/21/14 03:06","dateModified":"07/21/14 03:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X Mavericks) for Xcode - Late July 2014","displayName":"Command Line Tools (OS X Mavericks) for Xcode - Late July 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__late_july_2014/command_line_tools_for_os_x_mavericks_late_july_2014.dmg","fileSize":106749804,"sortOrder":1,"dateCreated":"07/21/14 10:06","dateModified":"07/21/14 10:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1710","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"11/30/18 10:00","dateCreated":"11/28/18 15:54","dateModified":"12/05/18 10:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1710.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1710","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1710/Kernel_Debug_Kit_10.12.6_build_16G1710.dmg","fileSize":73972476,"sortOrder":0,"dateCreated":"11/30/18 03:51","dateModified":"12/05/18 18:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.2 build 18C52a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/30/18 10:00","dateCreated":"11/29/18 15:45","dateModified":"12/05/18 10:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.2 build 18C52a.dmg","displayName":"Kernel Debug Kit 10.14.2 build 18C52a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.2_build_18C52a/Kernel_Debug_Kit_10.14.2_build_18C52a.dmg","fileSize":82024225,"sortOrder":0,"dateCreated":"11/30/18 03:53","dateModified":"12/05/18 18:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G4015","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"12/05/18 10:00","dateCreated":"12/03/18 15:20","dateModified":"12/05/18 10:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G4015.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G4015","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G4015/Kernel_Debug_Kit_10.13.6_build_17G4015.dmg","fileSize":73128410,"sortOrder":0,"dateCreated":"12/03/18 23:21","dateModified":"12/05/18 18:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - August 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":null,"dateCreated":"08/04/14 03:11","dateModified":"08/04/14 03:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.9) for Xcode - August 2014","displayName":"Command Line Tools (OS X 10.9) for Xcode - August 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__august_2014/command_line_tools_os_x_10.9_for_xcode__august_2014.dmg","fileSize":106829746,"sortOrder":1,"dateCreated":"08/04/14 10:11","dateModified":"08/04/14 10:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.2 build 18C54","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"12/05/18 10:00","dateCreated":"12/05/18 09:44","dateModified":"12/05/18 10:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.2 build 18C54.dmg","displayName":"Kernel Debug Kit 10.14.2 build 18C54","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.2_build_18C54/Kernel_Debug_Kit_10.14.2_build_18C54.dmg","fileSize":82020373,"sortOrder":0,"dateCreated":"12/05/18 17:45","dateModified":"12/05/18 18:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode - Late August 2014","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.10 and OS X 10.9.","isReleased":0,"datePublished":null,"dateCreated":"08/18/14 03:07","dateModified":"08/18/14 03:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools Late August 2014","displayName":"Hardware IO Tools Late August 2014","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__late_august_2014/hardwareiotools_late_august_2014.dmg","fileSize":8420901,"sortOrder":1,"dateCreated":"08/18/14 10:07","dateModified":"08/18/14 10:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - Late August 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":null,"dateCreated":"08/18/14 03:07","dateModified":"08/18/14 03:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for OS X 10.9 Late August 2014","displayName":"Command Line Tools for OS X 10.9 Late August 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__late_august_2014/command_line_tools_for_os_x_mavericks_late_august_2014.dmg","fileSize":106876314,"sortOrder":1,"dateCreated":"08/18/14 10:07","dateModified":"08/18/14 10:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - Late August 2014","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: Icon Composer, OpenGL Driver Monitor, OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Composer Visualizer and Quartz Debug. These graphics tools support running on OS X 10.10 and OS X 10.9.","isReleased":0,"datePublished":null,"dateCreated":"08/18/14 03:10","dateModified":"08/18/14 03:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools Late August 2014","displayName":"Graphics Tools Late August 2014","remotePath":"/Developer_Tools/graphics_tools_for_xcode__late_august_2014/graphicstools_late_august_2014.dmg","fileSize":47718814,"sortOrder":1,"dateCreated":"08/18/14 10:10","dateModified":"08/18/14 10:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.9) for Xcode - September 2014","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as Mac OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":null,"dateCreated":"09/02/14 03:07","dateModified":"09/02/14 03:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for OS X 10.9 - September 2014","displayName":"Command Line Tools for OS X 10.9 - September 2014","remotePath":"/Developer_Tools/command_line_tools_os_x_10.9_for_xcode__september_2014/command_line_tools_for_osx_10.9_september_2014.dmg","fileSize":106964634,"sortOrder":1,"dateCreated":"09/02/14 10:07","dateModified":"09/02/14 10:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode - September 2014","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.10 and OS X 10.9.","isReleased":0,"datePublished":null,"dateCreated":"09/02/14 03:47","dateModified":"09/02/14 03:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"HarwareIOTools September 2014","displayName":"HarwareIOTools September 2014","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__september_2014/hardwareiotools_september_2014.dmg","fileSize":4867551,"sortOrder":1,"dateCreated":"09/02/14 10:47","dateModified":"09/02/14 10:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.3 build 18D21c","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"12/10/18 10:00","dateCreated":"12/11/18 14:07","dateModified":"12/11/18 15:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.3 build 18D21c.dmg","displayName":"Kernel Debug Kit 10.14.3 build 18D21c","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.3_build_18D21c/Kernel_Debug_Kit_10.14.3_build_18D21c.dmg","fileSize":82025484,"sortOrder":0,"dateCreated":"12/11/18 22:16","dateModified":"12/11/18 23:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.9.5 build 13F34","description":"This package contains debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and a DEBUG kernel built without compiler optimizations.","isReleased":0,"datePublished":null,"dateCreated":"09/18/14 07:52","dateModified":"09/18/14 07:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.9.5 build 13F34","displayName":"Kernel Debug Kit 10.9.5 build 13F34","remotePath":"/Developer_Tools/kernel_debug_kit_10.9.5_build_13f34/kernel_debug_kit_10.9.5_13f34.dmg","fileSize":88609880,"sortOrder":1,"dateCreated":"09/18/14 14:52","dateModified":"09/18/14 14:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1804","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"12/11/18 10:00","dateCreated":"12/11/18 15:35","dateModified":"12/11/18 15:36","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1804.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1804","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1804/Kernel_Debug_Kit_10.12.6_build_16G1804.dmg","fileSize":73968380,"sortOrder":0,"dateCreated":"12/11/18 23:35","dateModified":"12/11/18 23:36","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G5006","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"12/11/18 10:00","dateCreated":"12/11/18 15:36","dateModified":"12/11/18 15:36","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G5006.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G5006","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G5006/Kernel_Debug_Kit_10.13.6_build_17G5006.dmg","fileSize":73098655,"sortOrder":0,"dateCreated":"12/11/18 23:36","dateModified":"12/11/18 23:36","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode - Xcode 6.1","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: Icon Composer, OpenGL Driver Monitor, OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Composer Visualizer and Quartz Debug. These graphics tools support running on OS X 10.10 and OS X 10.9.","isReleased":1,"datePublished":null,"dateCreated":"10/16/14 08:10","dateModified":"10/16/14 08:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics Tools for Xcode 6.1","displayName":"Graphics Tools for Xcode 6.1","remotePath":"/Developer_Tools/graphics_tools_for_xcode__xcode_6.1/graphicstools_for_xcode_6.1.dmg","fileSize":47751475,"sortOrder":1,"dateCreated":"10/16/14 15:10","dateModified":"10/16/14 15:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Auxiliary Tools for Xcode - Xcode 6.1","description":"This package includes the additional tools 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me. These tools support running on OS X 10.10 and OS X 10.9.","isReleased":1,"datePublished":null,"dateCreated":"10/16/14 08:10","dateModified":"10/16/14 08:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Auxiliary Tools for Xcode 6.1","displayName":"Auxiliary Tools for Xcode 6.1","remotePath":"/Developer_Tools/auxiliary_tools_for_xcode__xcode_6.1/auxiliarytools_for_xcode_6.1.dmg","fileSize":2404960,"sortOrder":1,"dateCreated":"10/16/14 15:10","dateModified":"10/16/14 15:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Audio Tools for Xcode - Xcode 6.1","description":"This package includes the additional audio tools AU Lab and HALLab. These tools support running on OS X 10.10 and OS X 10.9.","isReleased":1,"datePublished":null,"dateCreated":"10/16/14 08:10","dateModified":"10/16/14 08:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio Tools for Xcode 6.1","displayName":"Audio Tools for Xcode 6.1","remotePath":"/Developer_Tools/audio_tools_for_xcode__xcode_6.1/audiotools_for_xcode_6.1.dmg","fileSize":6882098,"sortOrder":1,"dateCreated":"10/16/14 15:10","dateModified":"10/16/14 15:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode - Xcode 6.1","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.10 and OS X 10.9.","isReleased":1,"datePublished":null,"dateCreated":"10/16/14 08:19","dateModified":"10/16/14 08:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools for Xcode 6.1","displayName":"Hardware IO Tools for Xcode 6.1","remotePath":"/Developer_Tools/hardware_io_tools_for_xcode__xcode_6.1/hardwareiotools_for_xcode_6.1.dmg","fileSize":9607382,"sortOrder":1,"dateCreated":"10/16/14 15:19","dateModified":"10/16/14 15:19","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10 GM build 14A389","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":null,"dateCreated":"10/17/14 03:35","dateModified":"10/17/14 03:35","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10 GM build 14A389","displayName":"Kernel Debug Kit 10.10 GM build 14A389","remotePath":"/Developer_Tools/kernel_debug_kit_10.10_gm_build_14a389/kernel_debug_kit_10.10_14a389.dmg","fileSize":91972684,"sortOrder":1,"dateCreated":"10/17/14 10:35","dateModified":"10/17/14 10:35","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"SignatureCheck","description":"The signature check application (\"check-signature\") checks OS X application bundles and installer packages to determine if they are correctly signed for distribution and will pass the default Gatekeeper assessment.","isReleased":0,"datePublished":null,"dateCreated":"11/12/14 10:29","dateModified":"11/12/14 10:29","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Signature Check","displayName":"Signature Check","remotePath":"/Developer_Tools/signaturecheck/signaturecheck.dmg","fileSize":15979946,"sortOrder":1,"dateCreated":"11/12/14 18:29","dateModified":"11/12/14 18:29","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.1 build 14B25","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":null,"dateCreated":"11/18/14 05:24","dateModified":"11/18/14 05:24","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.1 build 14B25","displayName":"Kernel Debug Kit 10.10.1 build 14B25","remotePath":"/Developer_Tools/kernel_debug_kit_10.10.1_build_14b25/kernel_debug_kit_10.10.1_14b25.dmg","fileSize":91972340,"sortOrder":1,"dateCreated":"11/18/14 13:24","dateModified":"11/18/14 13:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F1509","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"12/11/15 18:00","dateCreated":"12/17/15 16:28","dateModified":"12/18/15 09:11","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F1509.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F1509","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_build_14F1509/Kernel_Debug_Kit_10.10.5_build_14F1509.dmg","fileSize":92492174,"sortOrder":0,"dateCreated":"12/18/15 00:29","dateModified":"12/18/15 17:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 Build 15G31","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/18/16 17:11","dateCreated":"07/18/16 17:12","dateModified":"07/18/16 17:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 Build 15G31.dmg","displayName":"Kernel Debug Kit 10.11.6 Build 15G31","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_Build_15G31/Kernel_Debug_Kit_10.11.6_Build_15G31.dmg","fileSize":57632359,"sortOrder":0,"dateCreated":"07/19/16 00:12","dateModified":"07/19/16 00:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.3 build 15D13b","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"12/23/15 10:00","dateCreated":"01/06/16 10:49","dateModified":"01/06/16 10:49","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.3 build 15D13b.dmg","displayName":"Kernel Debug Kit 10.11.3 build 15D13b","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.3_build_15D13b/Kernel_Debug_Kit_10.11.3_build_15D13b.dmg","fileSize":57595486,"sortOrder":0,"dateCreated":"01/06/16 18:49","dateModified":"01/06/16 18:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.4 build 18E174f","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"01/24/19 10:00","dateCreated":"02/04/19 08:47","dateModified":"02/04/19 08:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.4 build 18E174f.dmg","displayName":"Kernel Debug Kit 10.14.4 build 18E174f","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.4_build_18E174f/Kernel_Debug_Kit_10.14.4_build_18E174f.dmg","fileSize":83109305,"sortOrder":0,"dateCreated":"02/04/19 16:47","dateModified":"02/04/19 16:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G6006","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"01/24/19 10:00","dateCreated":"02/04/19 08:47","dateModified":"02/04/19 08:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G6006.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G6006","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G6006/Kernel_Debug_Kit_10.13.6_build_17G6006.dmg","fileSize":73112094,"sortOrder":0,"dateCreated":"02/04/19 16:47","dateModified":"02/04/19 16:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1905","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"01/24/19 10:00","dateCreated":"02/04/19 08:47","dateModified":"02/04/19 08:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1905.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1905","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1905/Kernel_Debug_Kit_10.12.6_build_16G1905.dmg","fileSize":73960188,"sortOrder":0,"dateCreated":"02/04/19 16:47","dateModified":"02/04/19 16:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.4 build 18E184e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"02/04/19 10:00","dateCreated":"02/04/19 11:46","dateModified":"02/04/19 11:46","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.4 build 18E184e.dmg","displayName":"Kernel Debug Kit 10.14.4 build 18E184e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.4_build_18E184e/Kernel_Debug_Kit_10.14.4_build_18E184e.dmg","fileSize":83096299,"sortOrder":0,"dateCreated":"02/04/19 19:46","dateModified":"02/04/19 19:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G6009","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"02/04/19 10:00","dateCreated":"02/05/19 08:58","dateModified":"02/05/19 08:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G6009.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G6009","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G6009/Kernel_Debug_Kit_10.13.6_build_17G6009.dmg","fileSize":73094075,"sortOrder":0,"dateCreated":"02/05/19 16:58","dateModified":"02/05/19 16:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1906","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"02/04/19 10:00","dateCreated":"02/05/19 08:59","dateModified":"02/05/19 08:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1906.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1906","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1906/Kernel_Debug_Kit_10.12.6_build_16G1906.dmg","fileSize":73955974,"sortOrder":0,"dateCreated":"02/05/19 16:59","dateModified":"02/05/19 16:59","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode Tools v1.0","description":"Xcode Tools version 1.0 include gcc 3.3, Interface Builder 2.3.4, AppleScript Studio, updated documentation, performance tools. NOTE: Requires Mac OS X v 10.3 or later.","isReleased":0,"datePublished":null,"dateCreated":"10/27/03 05:43","dateModified":"01/19/06 06:48","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode Tools v1.0 CD","displayName":"Xcode Tools v1.0 CD","remotePath":"/Mac_OS_X/Mac_OS_X_10.3_Build_7B85/7B85_Xcode_CD.dmg","fileSize":612428171,"sortOrder":1,"dateCreated":"10/27/04 17:58","dateModified":"01/19/06 14:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1004","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"09/01/16 17:00","dateCreated":"09/01/16 17:12","dateModified":"09/01/16 18:55","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"KernelDebugKit_10.11.6_build15G1004.dmg","displayName":"KernelDebugKit_10.11.6_build15G1004","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.6_build_15G1004/KernelDebugKit_10.11.6_build15G1004.dmg","fileSize":57640189,"sortOrder":0,"dateCreated":"09/02/16 00:15","dateModified":"09/02/16 01:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F1912","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"09/01/16 17:00","dateCreated":"09/01/16 17:17","dateModified":"09/01/16 18:55","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"KernelDebugKit_10.10.5_build14F1912.dmg","displayName":"KernelDebugKit_10.10.5_build14F1912","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_build_14F1912/KernelDebugKit_10.10.5_build14F1912.dmg","fileSize":92754894,"sortOrder":0,"dateCreated":"09/02/16 00:18","dateModified":"09/02/16 01:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G6022","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/04/19 10:00","dateCreated":"03/08/19 09:30","dateModified":"03/08/19 09:30","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G6022.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G6022","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G6022/Kernel_Debug_Kit_10.13.6_build_17G6022.dmg","fileSize":73101321,"sortOrder":0,"dateCreated":"03/08/19 17:30","dateModified":"03/08/19 17:30","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.4 build 18E205e","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/04/19 10:00","dateCreated":"03/08/19 09:31","dateModified":"03/08/19 09:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.4 build 18E205e.dmg","displayName":"Kernel Debug Kit 10.14.4 build 18E205e","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.4_build_18E205e/Kernel_Debug_Kit_10.14.4_build_18E205e.dmg","fileSize":83125659,"sortOrder":0,"dateCreated":"03/08/19 17:31","dateModified":"03/08/19 17:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1915","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/04/19 10:00","dateCreated":"03/08/19 09:31","dateModified":"03/08/19 09:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1915.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1915","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1915/Kernel_Debug_Kit_10.12.6_build_16G1915.dmg","fileSize":73956092,"sortOrder":0,"dateCreated":"03/08/19 17:31","dateModified":"03/08/19 17:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12 Build 16A323","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"09/20/16 10:00","dateCreated":"09/22/16 10:38","dateModified":"09/22/16 14:32","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12 Build 16A323.dmg","displayName":"Kernel Debug Kit 10.12 Build 16A323","remotePath":"/OS_X/Kernel_Debug_Kit_10.12_Build_16A323/Kernel_Debug_Kit_10.12_Build_16A323.dmg","fileSize":56510602,"sortOrder":0,"dateCreated":"09/22/16 17:43","dateModified":"09/22/16 21:32","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 10.2","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"03/19/19 16:19","dateCreated":"03/25/19 13:20","dateModified":"03/25/19 13:21","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 10.2.dmg","displayName":"Additional Tools for Xcode 10.2","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_10.2/Additional_Tools_for_Xcode_10.2.dmg","fileSize":62344250,"sortOrder":0,"dateCreated":"03/25/19 20:20","dateModified":"03/25/19 20:21","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.4 build 18E226","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/25/19 15:00","dateCreated":"03/25/19 16:07","dateModified":"03/25/19 16:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.4 build 18E226.dmg","displayName":"Kernel Debug Kit 10.14.4 build 18E226","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.4_build_18E226/Kernel_Debug_Kit_10.14.4_build_18E226.dmg","fileSize":83131496,"sortOrder":0,"dateCreated":"03/25/19 23:07","dateModified":"03/25/19 23:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.4 build 18E220a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/18/19 10:00","dateCreated":"03/25/19 16:08","dateModified":"03/25/19 16:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.4 build 18E220a.dmg","displayName":"Kernel Debug Kit 10.14.4 build 18E220a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.4_build_18E220a/Kernel_Debug_Kit_10.14.4_build_18E220a.dmg","fileSize":83107740,"sortOrder":0,"dateCreated":"03/25/19 23:08","dateModified":"03/25/19 23:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G6029","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/25/19 15:00","dateCreated":"03/25/19 16:09","dateModified":"03/25/19 16:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G6029.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G6029","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G6029/Kernel_Debug_Kit_10.13.6_build_17G6029.dmg","fileSize":73105340,"sortOrder":0,"dateCreated":"03/25/19 23:09","dateModified":"03/25/19 23:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1917","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/25/19 15:00","dateCreated":"03/25/19 16:11","dateModified":"03/25/19 16:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1917.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1917","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G1917/Kernel_Debug_Kit_10.12.6_build_16G1917.dmg","fileSize":73951996,"sortOrder":0,"dateCreated":"03/25/19 23:11","dateModified":"03/25/19 23:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G6028","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/19/19 10:00","dateCreated":"03/25/19 16:12","dateModified":"03/25/19 16:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G6028.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G6028","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G6028/Kernel_Debug_Kit_10.13.6_build_17G6028.dmg","fileSize":73110120,"sortOrder":0,"dateCreated":"03/25/19 23:12","dateModified":"03/25/19 23:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F96h","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/27/19 13:00","dateCreated":"03/27/19 13:51","dateModified":"03/27/19 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F96h.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F96h","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F96h/Kernel_Debug_Kit_10.14.5_build_18F96h.dmg","fileSize":83099495,"sortOrder":0,"dateCreated":"03/27/19 20:53","dateModified":"03/27/19 23:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2002","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/27/19 13:00","dateCreated":"03/27/19 15:34","dateModified":"03/27/19 16:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2002.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2002","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2002/Kernel_Debug_Kit_10.12.6_build_16G2002.dmg","fileSize":73964284,"sortOrder":0,"dateCreated":"03/27/19 22:38","dateModified":"03/27/19 23:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7004","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"03/27/19 13:00","dateCreated":"03/27/19 15:36","dateModified":"03/27/19 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7004.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7004","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7004/Kernel_Debug_Kit_10.13.6_build_17G7004.dmg","fileSize":73117471,"sortOrder":0,"dateCreated":"03/27/19 22:38","dateModified":"03/27/19 23:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 Build 14F2009","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/14/16 14:00","dateCreated":"10/24/16 10:11","dateModified":"10/24/16 10:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.5 Build 14F2009.dmg","displayName":"Kernel Debug Kit 10.10.5 Build 14F2009","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_Build_14F2009/Kernel_Debug_Kit_10.10.5_Build_14F2009.dmg","fileSize":92759173,"sortOrder":0,"dateCreated":"10/24/16 17:11","dateModified":"10/24/16 17:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 Build 15G1108","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/21/16 11:00","dateCreated":"10/24/16 10:12","dateModified":"10/24/16 10:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.6 Build 15G1108.dmg","displayName":"Kernel Debug Kit 10.11.6 Build 15G1108","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.6_Build_15G1108/Kernel_Debug_Kit_10.11.6_Build_15G1108.dmg","fileSize":57632375,"sortOrder":0,"dateCreated":"10/24/16 17:12","dateModified":"10/24/16 17:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2006","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/08/19 10:00","dateCreated":"04/08/19 15:33","dateModified":"04/08/19 15:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2006.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2006","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2006/Kernel_Debug_Kit_10.12.6_build_16G2006.dmg","fileSize":73931516,"sortOrder":0,"dateCreated":"04/08/19 22:35","dateModified":"04/08/19 22:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.1 Build 16B2657","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.\n","isReleased":1,"datePublished":"11/03/16 08:43","dateCreated":"11/02/16 17:08","dateModified":"11/03/16 08:43","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.1 Build 16B2657.dmg","displayName":"Kernel Debug Kit 10.12.1 Build 16B2657","remotePath":"/OS_X/Kernel_Debug_Kit_10.12.1_Build_16B2657/Kernel_Debug_Kit_10.12.1_Build_16B2657.dmg","fileSize":56528357,"sortOrder":0,"dateCreated":"11/03/16 00:09","dateModified":"11/03/16 15:43","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7009","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/08/19 10:00","dateCreated":"04/08/19 15:38","dateModified":"04/08/19 15:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7009.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7009","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7009/Kernel_Debug_Kit_10.13.6_build_17G7009.dmg","fileSize":73114682,"sortOrder":0,"dateCreated":"04/08/19 22:39","dateModified":"04/08/19 22:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F108f","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/08/19 10:00","dateCreated":"04/08/19 15:41","dateModified":"04/08/19 15:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F108f.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F108f","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F108f/Kernel_Debug_Kit_10.14.5_build_18F108f.dmg","fileSize":83140883,"sortOrder":0,"dateCreated":"04/08/19 22:41","dateModified":"04/08/19 22:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F118d","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/22/19 10:00","dateCreated":"04/22/19 14:12","dateModified":"04/22/19 14:34","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F118d.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F118d","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F118d/Kernel_Debug_Kit_10.14.5_build_18F118d.dmg","fileSize":83203902,"sortOrder":0,"dateCreated":"04/22/19 21:14","dateModified":"04/22/19 21:34","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2011","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/22/19 10:00","dateCreated":"04/22/19 14:15","dateModified":"04/22/19 14:34","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2011.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2011","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2011/Kernel_Debug_Kit_10.12.6_build_16G2011.dmg","fileSize":73935612,"sortOrder":0,"dateCreated":"04/22/19 21:16","dateModified":"04/22/19 21:34","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7017","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/22/19 10:00","dateCreated":"04/22/19 14:24","dateModified":"04/22/19 14:34","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7017.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7017","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7017/Kernel_Debug_Kit_10.13.6_build_17G7017.dmg","fileSize":73107135,"sortOrder":0,"dateCreated":"04/22/19 21:24","dateModified":"04/22/19 21:34","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.2 build 16C63a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"12/08/16 13:03","dateCreated":"12/08/16 12:51","dateModified":"12/08/16 13:03","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.2 build 16C63a.dmg","displayName":"Kernel Debug Kit 10.12.2 build 16C63a","remotePath":"/OS_X/Kernel_Debug_Kit_10.12.2_build_16C63a/Kernel_Debug_Kit_10.12.2_build_16C63a.dmg","fileSize":72678140,"sortOrder":0,"dateCreated":"12/08/16 20:51","dateModified":"12/08/16 21:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F127a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/29/19 10:00","dateCreated":"04/29/19 12:24","dateModified":"04/29/19 12:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F127a.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F127a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F127a/Kernel_Debug_Kit_10.14.5_build_18F127a.dmg","fileSize":83211965,"sortOrder":0,"dateCreated":"04/29/19 19:27","dateModified":"04/29/19 19:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2014","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/30/19 10:00","dateCreated":"04/30/19 14:20","dateModified":"04/30/19 15:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2014.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2014","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2014/Kernel_Debug_Kit_10.12.6_build_16G2014.dmg","fileSize":73886460,"sortOrder":0,"dateCreated":"04/30/19 21:29","dateModified":"04/30/19 22:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.2 build 16C67","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"12/13/16 14:00","dateCreated":"12/13/16 13:39","dateModified":"12/13/16 13:42","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.2 build 16C67.dmg","displayName":"Kernel Debug Kit 10.12.2 build 16C67","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.2_build_16C67/Kernel_Debug_Kit_10.12.2_build_16C67.dmg","fileSize":72686332,"sortOrder":0,"dateCreated":"12/13/16 21:40","dateModified":"12/13/16 21:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7020","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"04/30/19 10:00","dateCreated":"04/30/19 14:31","dateModified":"04/30/19 15:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7020.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7020","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7020/Kernel_Debug_Kit_10.13.6_build_17G7020.dmg","fileSize":73151058,"sortOrder":0,"dateCreated":"04/30/19 21:31","dateModified":"04/30/19 22:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F131a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/08/19 11:40","dateCreated":"05/08/19 11:41","dateModified":"05/08/19 13:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F131a.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F131a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F131a/Kernel_Debug_Kit_10.14.5_build_18F131a.dmg","fileSize":83213478,"sortOrder":0,"dateCreated":"05/08/19 18:55","dateModified":"05/08/19 20:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7023","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/08/19 11:40","dateCreated":"05/08/19 11:43","dateModified":"05/08/19 13:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7023.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7023","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7023/Kernel_Debug_Kit_10.13.6_build_17G7023.dmg","fileSize":73145189,"sortOrder":0,"dateCreated":"05/08/19 18:44","dateModified":"05/08/19 20:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"iTunes Visual Plug-ins SDK","description":"This SDK contains the files necessary for iTunes Visual Plug-in development for iTunes 10.4 or later, and includes documentation and sample code. Specifically, this SDK contains the files \"iTunesAPI.h\", \"iTunesVisualAPI.h\", and \"iTunesAPI.cpp\" that developers will use to develop their own plug-ins. The sample code is a fully functional Visual Plug-in developed for Mac OS X 10.5.8 and later with Xcode 3.2 and for Windows XP SP3 and later with Microsoft Visual Studio 2013. Both 32-bit and 64-bit versions of iTunes are supported.","isReleased":1,"datePublished":null,"dateCreated":"01/29/15 16:57","dateModified":"01/29/15 17:19","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"iTunesVisualPlugInsSDK2_0_1.zip","displayName":"iTunes Visual Plug-ins SDK","remotePath":"/Applications/itunes_visual_plugins_sdk/iTunesVisualPlugInsSDK2_0_1.zip","fileSize":243268,"sortOrder":0,"dateCreated":"01/30/15 00:59","dateModified":"01/30/15 01:19","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1212","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/05/17 09:14","dateCreated":"01/04/17 13:59","dateModified":"01/05/17 09:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G1212.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G1212","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G1212/Kernel_Debug_Kit_10.11.6_build_15G1212.dmg","fileSize":72534780,"sortOrder":0,"dateCreated":"01/04/17 22:02","dateModified":"01/05/17 17:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F2109","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/05/17 09:14","dateCreated":"01/04/17 14:36","dateModified":"01/05/17 09:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F2109.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F2109","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.5_build_14F2109/Kernel_Debug_Kit_10.10.5_build_14F2109.dmg","fileSize":108656160,"sortOrder":0,"dateCreated":"01/04/17 22:37","dateModified":"01/05/17 17:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.5 build 18F132","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/13/19 11:00","dateCreated":"05/13/19 11:01","dateModified":"05/13/19 11:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.5 build 18F132.dmg","displayName":"Kernel Debug Kit 10.14.5 build 18F132","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.5_build_18F132/Kernel_Debug_Kit_10.14.5_build_18F132.dmg","fileSize":83228305,"sortOrder":0,"dateCreated":"05/13/19 18:02","dateModified":"05/13/19 18:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G7024","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/13/19 11:00","dateCreated":"05/13/19 11:03","dateModified":"05/13/19 11:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G7024.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G7024","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G7024/Kernel_Debug_Kit_10.13.6_build_17G7024.dmg","fileSize":73152852,"sortOrder":0,"dateCreated":"05/13/19 18:04","dateModified":"05/13/19 18:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2016","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/08/19 11:40","dateCreated":"05/13/19 11:16","dateModified":"05/13/19 11:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2016.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2016","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2016/Kernel_Debug_Kit_10.12.6_build_16G2016.dmg","fileSize":73886460,"sortOrder":0,"dateCreated":"05/13/19 18:16","dateModified":"05/13/19 18:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1217","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/17/17 12:15","dateCreated":"01/17/17 10:45","dateModified":"01/17/17 12:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G1217.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G1217","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G1217/Kernel_Debug_Kit_10.11.6_build_15G1217.dmg","fileSize":72530684,"sortOrder":0,"dateCreated":"01/17/17 18:46","dateModified":"01/17/17 20:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.3 build 16D32","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/24/17 10:05","dateCreated":"01/23/17 16:03","dateModified":"01/24/17 10:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"macOS10.12.3KDK.dmg","displayName":"macOS10.12.3KDK","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.3_build_16D32/macOS10.12.3KDK.dmg","fileSize":72686332,"sortOrder":0,"dateCreated":"01/24/17 00:06","dateModified":"01/24/17 18:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G2102","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/23/19 01:45","dateCreated":"05/23/19 13:42","dateModified":"05/23/19 13:51","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G2102.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G2102","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G2102/Kernel_Debug_Kit_10.12.6_build_16G2102.dmg","fileSize":73915014,"sortOrder":0,"dateCreated":"05/23/19 20:43","dateModified":"05/23/19 20:51","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G8011","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/23/19 01:45","dateCreated":"05/23/19 13:44","dateModified":"05/23/19 13:51","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G8011.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G8011","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G8011/Kernel_Debug_Kit_10.13.6_build_17G8011.dmg","fileSize":73147049,"sortOrder":0,"dateCreated":"05/23/19 20:45","dateModified":"05/23/19 20:51","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 build 18G29g","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/23/19 01:45","dateCreated":"05/23/19 13:46","dateModified":"05/23/19 13:51","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.6 build 18G29g.dmg","displayName":"Kernel Debug Kit 10.14.6 build 18G29g","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_build_18G29g/Kernel_Debug_Kit_10.14.6_build_18G29g.dmg","fileSize":83205737,"sortOrder":0,"dateCreated":"05/23/19 20:47","dateModified":"05/23/19 20:51","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 11 Beta","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":0,"datePublished":"06/03/19 01:59","dateCreated":"06/03/19 06:24","dateModified":"06/03/19 12:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 11 Beta.dmg","displayName":"Additional Tools for Xcode 11 Beta","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_11_Beta/Additional_Tools_for_Xcode_11_Beta.dmg","fileSize":59059837,"sortOrder":0,"dateCreated":"06/03/19 13:24","dateModified":"06/03/19 19:19","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15 build 19A471t","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/04/19 20:35","dateCreated":"06/05/19 01:13","dateModified":"06/05/19 01:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15 build 19A471t.dmg","displayName":"Kernel Debug Kit 10.15 build 19A471t","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15_build_19A471t/Kernel_Debug_Kit_10.15_build_19A471t.dmg","fileSize":89111086,"sortOrder":0,"dateCreated":"06/05/19 08:13","dateModified":"06/05/19 08:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"HTTP Live Streaming Tools","description":"HTTP Live Streaming uses the HTTP protocol to stream audio and video from almost any web server. The HTTP Live Streaming Tools package contains seven prerelease command-line tools that are used for deployment and validation of HTTP Live Streaming solutions. The tools are: Media Stream Segmenter, Media File Segmenter, Media Subtitle Segmenter, Media Stream Validator, Variant Playlist Creator, ID3 Tag Generator and HLS Report. Please see the enclosed Readme for more details.","isReleased":0,"datePublished":"05/25/17 16:43","dateCreated":"06/05/19 11:50","dateModified":"06/05/19 11:58","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"HTTPLiveStreamingTools-417.2.dmg","displayName":"HTTPLiveStreamingTools-417.2","remotePath":"/QuickTime/http_live_streaming_tools/HTTPLiveStreamingTools417.2.dmg","fileSize":4607656,"sortOrder":0,"dateCreated":"06/05/19 18:58","dateModified":"06/05/19 18:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 Build 18G59b","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/24/19 10:00","dateCreated":"06/24/19 15:21","dateModified":"06/28/19 00:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.6 Build 18G59b.dmg","displayName":"Kernel Debug Kit 10.14.6 Build 18G59b","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_Build_18G59b/Kernel_Debug_Kit_10.14.6_Build_18G59b.dmg","fileSize":83197974,"sortOrder":0,"dateCreated":"06/24/19 22:29","dateModified":"06/28/19 07:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 Build 17G8023","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/24/19 10:00","dateCreated":"06/28/19 00:14","dateModified":"06/28/19 00:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 Build 17G8023.dmg","displayName":"Kernel Debug Kit 10.13.6 Build 17G8023","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_Build_17G8023/Kernel_Debug_Kit_10.13.6_Build_17G8023.dmg","fileSize":73135135,"sortOrder":0,"dateCreated":"06/28/19 07:14","dateModified":"06/28/19 07:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 Build 16G2123","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"06/24/19 10:00","dateCreated":"06/28/19 00:14","dateModified":"06/28/19 00:15","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 Build 16G2123.dmg","displayName":"Kernel Debug Kit 10.12.6 Build 16G2123","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_Build_16G2123/Kernel_Debug_Kit_10.12.6_Build_16G2123.dmg","fileSize":73894652,"sortOrder":0,"dateCreated":"06/28/19 07:14","dateModified":"06/28/19 07:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode Tools v1.5","description":"The Xcode Tools 1.5 release is a full update of the Xcode development tools suite. It requires Mac OS X v10.3.x and is able to upgrade previous installations of Xcode Tools 1.0.x, 1.1, and 1.2. See the Read Me document for more information.","isReleased":0,"datePublished":null,"dateCreated":"08/02/04 08:37","dateModified":"01/19/06 06:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode Tools 1.5 - CD Image","displayName":"Xcode Tools 1.5 - CD Image","remotePath":"/Developer_Tools/xcode_v1.5/xcode_tools_1.5_cd.dmg.bin","fileSize":390483712,"sortOrder":1,"dateCreated":"08/06/04 14:53","dateModified":"01/19/06 14:49","fileFormat":{"extension":".bin","description":"MacBinary"}},{"filename":"Xcode Tools 1.5 Read Me-Updated","displayName":"Xcode Tools 1.5 Read Me-Updated","remotePath":"/Developer_Tools/xcode_v1.5/554_xcode_tools_1.5_read_me.pdf","fileSize":52342,"sortOrder":1,"dateCreated":"09/09/04 13:25","dateModified":"01/19/06 14:49","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"AppleGlot 4.0","description":"AppleGlot is a tool for extracting text strings to be translated and then merging them back into the localized application environment. It supports incremental localization. AppleGlot 4.0 supports Interface Builder 2.0, 3.0, 4.0 and 5.0 style XIB, NIB and storyboard formats via ibtool.","isReleased":0,"datePublished":"03/15/17 15:11","dateCreated":"03/14/17 11:14","dateModified":"03/15/17 15:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"AppleGlot 4.0 (v161.6).dmg","displayName":"AppleGlot 4.0 (v161.6)","remotePath":"/Developer_Tools/appleglot_4.0/AppleGlot_4.0_v161.6.dmg","fileSize":23884620,"sortOrder":0,"dateCreated":"03/14/17 18:15","dateModified":"03/15/17 22:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.4 build 16E195","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/27/17 10:00","dateCreated":"03/20/17 14:10","dateModified":"03/28/17 13:49","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.4 build 16E195.dmg","displayName":"Kernel Debug Kit 10.12.4 build 16E195","remotePath":"/OS_X/Kernel_Debug_Kit_10.12.4_build_16E195/Kernel_Debug_Kit_10.12.4_build_16E195.dmg","fileSize":72973052,"sortOrder":0,"dateCreated":"03/23/17 17:09","dateModified":"03/28/17 20:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F2315","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/27/17 10:00","dateCreated":"03/20/17 14:12","dateModified":"03/28/17 13:46","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F2315.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F2315","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_build_14F2315/Kernel_Debug_Kit_10.10.5_build_14F2315.dmg","fileSize":108553760,"sortOrder":0,"dateCreated":"03/20/17 21:12","dateModified":"03/28/17 20:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1421","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/27/17 10:00","dateCreated":"03/29/17 13:02","dateModified":"03/29/17 13:06","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G1421.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G1421","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.6_build_15G1421/Kernel_Debug_Kit_10.11.6_build_15G1421.dmg","fileSize":72530566,"sortOrder":0,"dateCreated":"03/29/17 20:02","dateModified":"03/29/17 20:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F27","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"08/13/15 10:01","dateCreated":"08/11/15 13:46","dateModified":"08/13/15 10:01","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F27.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F27","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.5_build_14F27/Kernel_Debug_Kit_10.10.5_build_14F27.dmg","fileSize":92495762,"sortOrder":0,"dateCreated":"08/11/15 21:15","dateModified":"08/13/15 17:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.5 build 16F73","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/15/17 10:00","dateCreated":"05/15/17 10:12","dateModified":"05/15/17 10:22","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.5 build 16F73.dmg","displayName":"Kernel Debug Kit 10.12.5 build 16F73","remotePath":"/OS_X/Kernel_Debug_Kit_10.12.5_build_16F73/Kernel_Debug_Kit_10.12.5_build_16F73.dmg","fileSize":73022204,"sortOrder":0,"dateCreated":"05/15/17 17:15","dateModified":"05/15/17 17:22","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1510","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"05/15/17 10:00","dateCreated":"05/15/17 10:50","dateModified":"05/15/17 12:54","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G1510.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G1510","remotePath":"/OS_X/Kernel_Debug_Kit_10.11.6_build_15G1510/Kernel_Debug_Kit_10.11.6_build_15G1510.dmg","fileSize":72538876,"sortOrder":0,"dateCreated":"05/15/17 17:51","dateModified":"05/15/17 19:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F2411","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"05/15/17 10:00","dateCreated":"05/15/17 10:55","dateModified":"05/15/17 12:54","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F2411.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F2411","remotePath":"/OS_X/Kernel_Debug_Kit_10.10.5_build_14F2411/Kernel_Debug_Kit_10.10.5_build_14F2411.dmg","fileSize":108533162,"sortOrder":0,"dateCreated":"05/15/17 17:55","dateModified":"05/15/17 19:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 Build 18G84","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/22/19 15:23","dateCreated":"07/22/19 14:42","dateModified":"07/22/19 15:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.14.6 Build 18G84.dmg","displayName":"Kernel Debug Kit 10.14.6 Build 18G84","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_Build_18G84/Kernel_Debug_Kit_10.14.6_Build_18G84.dmg","fileSize":83241511,"sortOrder":0,"dateCreated":"07/22/19 21:43","dateModified":"07/22/19 22:23","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 Build 17G8029","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/22/19 15:24","dateCreated":"07/22/19 14:44","dateModified":"07/22/19 15:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.13.6 Build 17G8029.dmg","displayName":"Kernel Debug Kit 10.13.6 Build 17G8029","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_Build_17G8029/Kernel_Debug_Kit_10.13.6_Build_17G8029.dmg","fileSize":73133892,"sortOrder":0,"dateCreated":"07/22/19 21:44","dateModified":"07/22/19 22:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 Build 16G2127","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/22/19 15:24","dateCreated":"07/22/19 14:45","dateModified":"07/22/19 15:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.6 Build 16G2127.dmg","displayName":"Kernel Debug Kit 10.12.6 Build 16G2127","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_Build_16G2127/Kernel_Debug_Kit_10.12.6_Build_16G2127.dmg","fileSize":73894652,"sortOrder":0,"dateCreated":"07/22/19 21:45","dateModified":"07/22/19 22:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode Legacy Tools","description":"This package contains older tools some developers may need that are not included in the Xcode Tools 2.x releases. Tools included are: gcc 2.95.2, gcc 3.1, Mac OS X 10.1.5 Cross Development Package, and PEFViewer. These tools install on any system with Mac OS X v10.3 (Panther) or later.","isReleased":0,"datePublished":null,"dateCreated":"08/23/05 02:54","dateModified":"01/19/06 06:46","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode Legacy Tools Read Me","displayName":"Xcode Legacy Tools Read Me","remotePath":"/Developer_Tools/xcode_legacy_tools/xcode_legacy_read_me.rtf","fileSize":3586,"sortOrder":1,"dateCreated":"08/23/05 09:54","dateModified":"01/19/06 14:46","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xcode Legacy Tools","displayName":"Xcode Legacy Tools","remotePath":"/Developer_Tools/xcode_legacy_tools/xcode_legacy_7k594_0611959.dmg","fileSize":21244094,"sortOrder":1,"dateCreated":"08/23/05 09:54","dateModified":"01/19/06 14:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 Build 16G2128","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/29/19 11:00","dateCreated":"07/29/19 21:54","dateModified":"07/29/19 21:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.6 Build 16G2128.dmg","displayName":"Kernel Debug Kit 10.12.6 Build 16G2128","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_Build_16G2128/Kernel_Debug_Kit_10.12.6_Build_16G2128.dmg","fileSize":73894652,"sortOrder":0,"dateCreated":"07/30/19 04:54","dateModified":"07/30/19 04:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 Build 17G8030","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"07/29/19 11:00","dateCreated":"07/29/19 21:54","dateModified":"07/29/19 21:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.13.6 Build 17G8030.dmg","displayName":"Kernel Debug Kit 10.13.6 Build 17G8030","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_Build_17G8030/Kernel_Debug_Kit_10.13.6_Build_17G8030.dmg","fileSize":73133706,"sortOrder":0,"dateCreated":"07/30/19 04:54","dateModified":"07/30/19 04:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15 Build 19A526h","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"08/01/19 14:11","dateCreated":"08/01/19 14:40","dateModified":"08/01/19 14:40","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.15 build 19A526h.dmg","displayName":"Kernel Debug Kit 10.15 build 19A526h","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15_Build_19A526h/Kernel_Debug_Kit_10.15_build_19A526h.dmg","fileSize":90804558,"sortOrder":0,"dateCreated":"08/01/19 21:40","dateModified":"08/01/19 21:40","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode Tools 2.2.1","description":"Xcode 2.2.1 is an update for the Mac OS X v10.4 Xcode Tools suite. Please see the Read Me document for more details and installation instructions.","isReleased":0,"datePublished":null,"dateCreated":"01/12/06 15:26","dateModified":"01/13/06 02:40","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode Tools 2.2.1","displayName":"Xcode Tools 2.2.1","remotePath":"/Developer_Tools/xcode_tools_2.2.1/xcode_2.2.1_8g1165_018213632.dmg","fileSize":863467316,"sortOrder":1,"dateCreated":"01/12/06 23:26","dateModified":"01/13/06 10:40","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode Tools 2.2.1 Read Me","displayName":"Xcode Tools 2.2.1 Read Me","remotePath":"/Developer_Tools/xcode_tools_2.2.1/xcode_2.2.1_readme.pdf","fileSize":110399,"sortOrder":1,"dateCreated":"01/12/06 23:26","dateModified":"01/13/06 10:40","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"10.4.0 Mac OS SDK","description":"This SDK is required for development of IOKit device drivers for Mac OS X 10.4 (Tiger) for the PowerPC. If you need to build IOKit drivers that take specific advantage of Tiger IOKit features, you must install this SDK and use it for PPC development only (and continue to use the 10.4u SDK for Intel development).","isReleased":0,"datePublished":null,"dateCreated":"01/20/06 12:14","dateModified":"01/23/06 09:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Mac OS 10.4.0 SDK","displayName":"Mac OS 10.4.0 SDK","remotePath":"/Developer_Tools/10.4.0_mac_os_sdk/10.4.0_sdk.dmg","fileSize":28554032,"sortOrder":1,"dateCreated":"01/20/06 20:14","dateModified":"01/23/06 17:55","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"10.4.0 SDK Readme","displayName":"10.4.0 SDK Readme","remotePath":"/Developer_Tools/10.4.0_mac_os_sdk/10.4.0_sdk_readme.pdf","fileSize":52090,"sortOrder":1,"dateCreated":"01/23/06 17:55","dateModified":"01/23/06 17:55","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Device Management Services Simulators","description":"Simulators for the DEP, VPP and Roster API services for Mobile Device Management developers to test their features in different environments. ","isReleased":0,"datePublished":"06/08/17 14:06","dateCreated":"06/08/17 14:10","dateModified":"06/08/17 14:10","categories":[{"id":325,"name":"iOS","sortOrder":50}],"files":[{"filename":"Device Management Services Simulators.zip","displayName":"Device Management Services Simulators","remotePath":"/iOS/Device_Management_Services_Simulators/Device_Management_Services_Simulators.zip","fileSize":10416706,"sortOrder":0,"dateCreated":"06/08/17 21:10","dateModified":"06/08/17 21:10","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"USDPython 0.56","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.56 Release Notes:
\n\nAdded usdzconvert for converting OBJ and glTF files to usdz","isReleased":0,"datePublished":"06/03/19 13:00","dateCreated":"08/06/19 08:35","dateModified":"08/06/19 08:35","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"USDPython 0.56.zip","displayName":"USDPython 0.56","remotePath":"/Developer_Tools/USDPython_0.56/USDPython_0.56.zip","fileSize":63742327,"sortOrder":0,"dateCreated":"08/06/19 15:35","dateModified":"08/06/19 15:35","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"USDPython 0.58","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.58 Release Notes:
\n\nFixes to OBJ and glTF conversion.","isReleased":0,"datePublished":"06/20/19 20:08","dateCreated":"08/06/19 08:37","dateModified":"08/06/19 08:37","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"USDPython 0.58.zip","displayName":"USDPython 0.58","remotePath":"/Developer_Tools/USDPython_0.58/USDPython_0.58.zip","fileSize":63724553,"sortOrder":0,"dateCreated":"08/06/19 15:37","dateModified":"08/06/19 15:37","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"USDPython 0.59","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.59 Release Notes:
\n\n FBX support, fixes to glTF conversion.","isReleased":0,"datePublished":"07/25/19 20:17","dateCreated":"08/06/19 08:38","dateModified":"08/06/19 08:38","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"USDPython 0.59.zip","displayName":"USDPython 0.59","remotePath":"/Developer_Tools/USDPython_0.59/USDPython_0.59.zip","fileSize":63748799,"sortOrder":0,"dateCreated":"08/06/19 15:38","dateModified":"08/06/19 15:38","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Sync Services Schema Validator","description":"Schema Validator is a standalone tool which can be run on Mac OS X 10.4 (Tiger) or later. It allows developers to test their Sync Schemas to ensure that each Schema is valid and future-proofed against future Sync Services versions which may enforce more rigorous validation. It is self-contained and does not require any updates to the installed SyncServices framework or SyncServer.","isReleased":1,"datePublished":null,"dateCreated":"03/31/06 11:14","dateModified":"04/04/06 03:27","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Schema Validator","displayName":"Schema Validator","remotePath":"/Developer_Tools/sync_services_schema_validator/4139_schemavalidator.dmg","fileSize":676412,"sortOrder":1,"dateCreated":"04/04/06 10:27","dateModified":"04/04/06 10:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 2.3","description":"Xcode 2.3 adds support for the DWARF debugging format for enhanced debugging fidelity. This release also includes stability and performance improvements to the Xcode IDE, build system, and Code Sense. It is recommended that all Xcode users install this update. Please see the attached release notes for further information and system requirements.","isReleased":1,"datePublished":null,"dateCreated":"05/23/06 01:00","dateModified":"05/23/06 01:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 2.3","displayName":"Xcode 2.3","remotePath":"/Developer_Tools/xcode_2.3/xcode_2.3_8m1780_oz693620813.dmg","fileSize":959543092,"sortOrder":1,"dateCreated":"05/23/06 08:00","dateModified":"05/23/06 08:00","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode 2.3 Read Me","displayName":"Xcode 2.3 Read Me","remotePath":"/Developer_Tools/xcode_2.3/xcode_2.3_readme_20060522.pdf","fileSize":226735,"sortOrder":1,"dateCreated":"05/23/06 08:00","dateModified":"05/23/06 08:00","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Shake 4.1 SDK","description":"The Shake SDK consists of a powerful toolset of C/C++ APIs that allows developers to customize and extend the Shake experience by creating both compiled plug-ins for the application as well as new applications based upon the Shake engine. Apple offers a mailing list for the Shake SDK development community. To subscribe to this list, please visit the following site: http://www.lists.apple.com/mailman/listinfo/shake-sdk.","isReleased":1,"datePublished":null,"dateCreated":"06/21/06 05:52","dateModified":"06/22/06 01:00","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Shake 4.1 SDK","displayName":"Shake 4.1 SDK","remotePath":"/Applications/shake_4.1_sdk/shake_4.1_sdk.dmg","fileSize":15217993,"sortOrder":1,"dateCreated":"06/21/06 12:52","dateModified":"06/22/06 08:00","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"USDPython 0.60","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.60 Release Notes:
\n\n- Alembic and usda/usdc/usd input file support
\n- usdARKitChecker now performs UsdPreviewSurface material validation
\n- new command line argument “-metersPerUnit” to override file format units
","isReleased":0,"datePublished":"08/06/19 13:42","dateCreated":"08/14/19 13:17","dateModified":"08/14/19 13:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"usdpython 0.60.zip","displayName":"usdpython 0.60","remotePath":"/Developer_Tools/USDPython_0.60/usdpython_0.60.zip","fileSize":63768572,"sortOrder":0,"dateCreated":"08/14/19 20:18","dateModified":"08/14/19 20:19","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Xcode 2.4","description":"The Xcode 2.4 release provides overall stability improvement and adds support for 64-bit Intel based Mac computers. It is recommended that all Xcode users install this update.","isReleased":0,"datePublished":null,"dateCreated":"08/07/06 10:31","dateModified":"08/11/06 12:42","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 2.4","displayName":"Xcode 2.4","remotePath":"/Developer_Tools/xcode_2.4/xcode_2.4_8k1079_6936199.dmg","fileSize":983820084,"sortOrder":1,"dateCreated":"08/07/06 17:31","dateModified":"08/11/06 19:42","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode 2.4 ReadMe","displayName":"Xcode 2.4 ReadMe","remotePath":"/Developer_Tools/xcode_2.4/xcode_2.4_readme.pdf","fileSize":121696,"sortOrder":1,"dateCreated":"08/07/06 17:31","dateModified":"08/11/06 19:42","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Apple EFI DDK","description":"The Apple EFI DDK contains header and code files enabling developers of EFI drivers to take advantage of Apple extensions to EFI. These include extensions for removable media devices and for Target Disk Mode. See the ReadMe file and documentation in the DDK for details.","isReleased":0,"datePublished":null,"dateCreated":"08/08/06 02:12","dateModified":"09/16/11 08:42","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28},{"id":312,"name":"WWDC","sortOrder":1}],"files":[{"filename":"Apple EFI DDK v1.0","displayName":"Apple EFI DDK v1.0","remotePath":"/Developer_Tools/apple_efi_ddk/appleefiddk_v1.0.dmg","fileSize":219055,"sortOrder":1,"dateCreated":"08/08/06 09:12","dateModified":"09/16/11 15:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Syncrospector","description":"Syncrospector is a debugging tool meant to aid in the development of a Sync Services client. It allows developers to view client and server data, conflict details, and a complete call history for the observed sync session. \r\n\r\nSyncrospector requires Mac OS X v10.4.3 or later. Please see the readme for more details.","isReleased":0,"datePublished":null,"dateCreated":"09/11/06 05:55","dateModified":"09/11/06 05:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Syncrospector","displayName":"Syncrospector","remotePath":"/Developer_Tools/syncrospector/syncrospector.dmg","fileSize":504525,"sortOrder":1,"dateCreated":"09/11/06 12:55","dateModified":"09/11/06 12:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15 Build 19A536g","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"08/19/19 10:56","dateCreated":"08/19/19 10:53","dateModified":"08/19/19 10:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.15 build 19A536g.dmg","displayName":"Kernel Debug Kit 10.15 build 19A536g","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15_Build_19A536g/Kernel_Debug_Kit_10.15_build_19A536g.dmg","fileSize":90799789,"sortOrder":0,"dateCreated":"08/19/19 17:55","dateModified":"08/19/19 17:56","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Android MusicKit","description":"MusicKit on Android lets users play Apple Music directly from your Android app. When a user provides permission to their Apple Music account, your app can create playlists, add songs to their library, and play any of the millions of songs in the Apple Music catalog. This package contains developer documentation and libraries for user authentication and music playback.","isReleased":0,"datePublished":"02/20/19 16:58","dateCreated":"08/19/19 16:33","dateModified":"08/19/19 16:33","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Android-MusicKit-SDK-1.0.0.zip","displayName":"Android-MusicKit-SDK-1.0.0","remotePath":"/Developer_Tools/Android_MusicKit/AndroidMusicKitSDK1.0.0.zip","fileSize":21086065,"sortOrder":0,"dateCreated":"08/19/19 23:33","dateModified":"08/19/19 23:33","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Xcode 2.4.1","description":"Xcode 2.4.1 addresses several issues in DWARF debugging and improves overall stability and security. It is recommended that all Xcode users install this update.","isReleased":1,"datePublished":null,"dateCreated":"10/31/06 03:09","dateModified":"10/31/06 03:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 2.4.1 ReadMe","displayName":"Xcode 2.4.1 ReadMe","remotePath":"/Developer_Tools/xcode_2.4.1/xcode_2.4.1.readme.pdf","fileSize":121765,"sortOrder":1,"dateCreated":"10/31/06 11:09","dateModified":"10/31/06 11:18","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 2.4.1","displayName":"Xcode 2.4.1","remotePath":"/Developer_Tools/xcode_2.4.1/xcode_2.4.1_8m1910_6936315.dmg","fileSize":968079156,"sortOrder":1,"dateCreated":"10/31/06 11:09","dateModified":"10/31/06 11:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"WebObjects 5.3.3 Update","description":"This installer updates WebObjects 5.3 systems to observe the Daylight Saving Time (DST) and 2007 time zone changes as of January 8, 2007.","isReleased":0,"datePublished":null,"dateCreated":"02/18/07 12:04","dateModified":"02/18/07 12:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"WebObjects 5.3.3 Update","displayName":"WebObjects 5.3.3 Update","remotePath":"/Developer_Tools/webobjects_5.3.3_update/webobjects5.3.3update.dmg","fileSize":42321716,"sortOrder":1,"dateCreated":"02/18/07 20:04","dateModified":"02/18/07 20:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G29","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/19/17 10:05","dateCreated":"07/18/17 15:10","dateModified":"07/19/17 10:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G29.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G29","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.12.6_build_16G29/Kernel_Debug_Kit_10.12.6_build_16G29.dmg","fileSize":73030396,"sortOrder":0,"dateCreated":"07/18/17 22:12","dateModified":"07/19/17 17:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G1611","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/19/17 10:06","dateCreated":"07/18/17 15:14","dateModified":"07/19/17 10:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G1611.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G1611","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.6_build_15G1611/Kernel_Debug_Kit_10.11.6_build_15G1611.dmg","fileSize":73349766,"sortOrder":0,"dateCreated":"07/18/17 22:15","dateModified":"07/19/17 17:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.5 build 14F2511","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"07/19/17 10:06","dateCreated":"07/18/17 15:17","dateModified":"07/19/17 10:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.10.5 build 14F2511.dmg","displayName":"Kernel Debug Kit 10.10.5 build 14F2511","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.5_build_14F2511/Kernel_Debug_Kit_10.10.5_build_14F2511.dmg","fileSize":108668448,"sortOrder":0,"dateCreated":"07/18/17 22:17","dateModified":"07/19/17 17:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 11 GM Seed","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":0,"datePublished":"09/09/19 16:37","dateCreated":"09/10/19 13:09","dateModified":"09/10/19 13:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 11 GM Seed.dmg","displayName":"Additional Tools for Xcode 11 GM Seed","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_11_GM_Seed/Additional_Tools_for_Xcode_11_GM_Seed.dmg","fileSize":58772965,"sortOrder":0,"dateCreated":"09/10/19 20:09","dateModified":"09/10/19 20:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Font Tools for Xcode 11 GM Seed","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter. ","isReleased":0,"datePublished":"09/09/19 16:33","dateCreated":"09/10/19 13:10","dateModified":"09/10/19 13:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 11 GM Seed.dmg","displayName":"Font Tools for Xcode 11 GM Seed","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_11_GM_Seed/Font_Tools_for_Xcode_11_GM_Seed.dmg","fileSize":10961081,"sortOrder":0,"dateCreated":"09/10/19 20:10","dateModified":"09/10/19 20:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11 GM Seed","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"09/09/19 16:32","dateCreated":"09/10/19 13:10","dateModified":"09/10/19 13:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11 GM Seed.dmg","displayName":"Command Line Tools for Xcode 11 GM Seed","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11_GM_Seed/Command_Line_Tools_for_Xcode_11_GM_Seed.dmg","fileSize":230414283,"sortOrder":0,"dateCreated":"09/10/19 20:10","dateModified":"09/10/19 20:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 1.4.2 Update Build 8M3009","description":"Xsan 1.4.2 is an update to Xsan, Apple's high-performance, easy to use SAN file system for Mac OS X and Mac OS X Server. Please see Release Notes for OS requirement and details on this seed. Developer use serial number valid through December 31, 2007.","isReleased":0,"datePublished":null,"dateCreated":"08/03/07 06:00","dateModified":"09/28/11 05:22","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Xsan 1.x Developer Use Serial Number - Exp. June 2008","displayName":"Xsan 1.x Developer Use Serial Number - Exp. June 2008","remotePath":"/xsan/xsan_1.4.2_update_build_8m3009/xsan1.x_developersn_jun30_2008.rtf","fileSize":4880,"sortOrder":1,"dateCreated":"12/20/07 13:59","dateModified":"09/28/11 12:22","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan 1.4.2 Build 8M3009 Xsan Filesystem Update Manual","displayName":"Xsan 1.4.2 Build 8M3009 Xsan Filesystem Update Manual","remotePath":"/xsan/xsan_1.4.2_update_build_8m3009/xsan_1.4.2_8m3009_xsanfilesystemupdatemanual.dmg","fileSize":16278962,"sortOrder":1,"dateCreated":"08/03/07 13:00","dateModified":"09/28/11 12:22","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 1.4.2 Build 8M3009 Xsan Uninstaller Image","displayName":"Xsan 1.4.2 Build 8M3009 Xsan Uninstaller Image","remotePath":"/xsan/xsan_1.4.2_update_build_8m3009/xsan_1.4.2_8m3009_xsanuninstallerimage.dmg","fileSize":229131,"sortOrder":1,"dateCreated":"08/03/07 13:00","dateModified":"09/28/11 12:22","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 1.4.2 Build 8M3009 Xsan Admin Manual","displayName":"Xsan 1.4.2 Build 8M3009 Xsan Admin Manual","remotePath":"/xsan/xsan_1.4.2_update_build_8m3009/xsan_1.4.2__8m3009_xsanadminmanual.dmg","fileSize":9590714,"sortOrder":1,"dateCreated":"08/03/07 13:00","dateModified":"09/28/11 12:22","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 1.4.2 8M3009 Release Notes","displayName":"Xsan 1.4.2 8M3009 Release Notes","remotePath":"/xsan/xsan_1.4.2_update_build_8m3009/xsan_1.4.2_8m3009_release_notes.rtf","fileSize":4238,"sortOrder":1,"dateCreated":"08/03/07 13:00","dateModified":"09/28/11 12:22","fileFormat":{"extension":".rtf","description":"RTF"}}]},{"name":"iPhoto '08 Plug-in SDK","description":"This package contains documentation and sample code on how to write iPhoto Export plug-ins supported by iPhoto '08.","isReleased":1,"datePublished":null,"dateCreated":"08/07/07 06:52","dateModified":"08/10/07 06:37","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"iPhoto '08 Export Plug-in SDK","displayName":"iPhoto '08 Export Plug-in SDK","remotePath":"/Developer_Tools/iphoto_08__plugin_sdk/iphoto_08_plugin_sdk.dmg","fileSize":1249544,"sortOrder":1,"dateCreated":"08/07/07 13:52","dateModified":"08/10/07 13:37","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"USDPython 0.61","description":"Download essential Python-based tools for generating, validating, and inspecting usdz files. Also includes a converter that creates usdz from other 3D file formats along with Pixar’s USD library and sample scripts.
\n
\n
\n\n\nUSDPython 0.61 Release Notes:
\n\n- Add iOS12 flag for backwards compatibility with iOS12 AR Quick Look","isReleased":0,"datePublished":"09/20/19 18:12","dateCreated":"09/20/19 12:55","dateModified":"09/20/19 18:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"usdpython_0.61.zip","displayName":"usdpython_0.61","remotePath":"/Developer_Tools/USDPython_0.61/usdpython_0.61.zip","fileSize":63773420,"sortOrder":0,"dateCreated":"09/20/19 19:58","dateModified":"09/21/19 01:12","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Aperture 1.5.5 SDK (3C31)","description":"The Aperture 1.5.5 SDK lets you write plug-ins that provide custom export capabilities for users of Aperture 1.5 (and later). See Extending the Aperture Workflow document for details. For more information about writing export plug-ins for Aperture, please send email to aperturedeveloper@apple.com. You can also join a public mailing list focused on developing export plug-ins for Aperture by visiting http://lists.apple.com/mailman/listinfo/aperture-dev.","isReleased":0,"datePublished":null,"dateCreated":"10/26/07 04:00","dateModified":"10/26/07 07:33","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Aperture SDK 1.5.5","displayName":"Aperture SDK 1.5.5","remotePath":"/Applications/aperture_1.5.5_sdk_3c31/aperture_1.5.5_sdk.dmg","fileSize":534073,"sortOrder":1,"dateCreated":"10/26/07 11:00","dateModified":"10/26/07 14:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.5 build 9A581","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. \r\n\r\nAlso included are GDB macros useful for kernel debugging and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"10/26/07 05:11","dateModified":"11/29/07 08:11","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.5 build 9A581","displayName":"Kernel Debug Kit 10.5 build 9A581","remotePath":"/Developer_Tools/kernel_debug_kit_10.5_build_9a581/kernel_debug_kit_10.5_9a581.dmg","fileSize":41519795,"sortOrder":1,"dateCreated":"10/26/07 12:11","dateModified":"11/29/07 16:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 2.5 Developer Tools","description":"Xcode 2.5 is an update release of Xcode developer tools, providing bug fixes over Xcode 2.4.1. Xcode 2.5 can be installed on Tiger (Mac OS X 10.4) or on Leopard (Mac OS X 10.5). Xcode 2.5 may be used on Leopard along side the Xcode 3.0 tools, providing a smoother migration path to Leopard for those projects not immediately ready to move to the Xcode 3 tools. See the release notes for Leopard support details and related packaging changes.","isReleased":1,"datePublished":null,"dateCreated":"10/30/07 07:20","dateModified":"11/01/07 23:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 2.5 Developer Tools","displayName":"Xcode 2.5 Developer Tools","remotePath":"/Developer_Tools/xcode_2.5_developer_tools/xcode25_8m2558_developerdvd.dmg","fileSize":946768492,"sortOrder":1,"dateCreated":"10/30/07 14:20","dateModified":"11/02/07 06:14","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xcode 2.5 - Release Notes","displayName":"Xcode 2.5 - Release Notes","remotePath":"/Developer_Tools/xcode_2.5_developer_tools/relnotesxcode25.pdf","fileSize":226325,"sortOrder":1,"dateCreated":"11/02/07 06:14","dateModified":"11/02/07 06:14","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"QuickTime 7.3 SDK for Windows","description":"QuickTime 7.3 SDK for Windows contains a set of QuickTime headers, libraries, tools and documentation used when maintaining existing QuickTime-based applications. Important note: All APIs in this SDK are deprecated and should not be used for new development. The QuickTime SDK for Windows is no longer supported by Apple and is provided for reference purposes only.","isReleased":1,"datePublished":null,"dateCreated":"11/05/07 05:52","dateModified":"11/01/07 03:03","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"QuickTime 7.3 SDK for Windows","displayName":"QuickTime 7.3 SDK for Windows","remotePath":"/QuickTime/quicktime_7.3_sdk_for_windows/quicktimesdk.zip","fileSize":2059400,"sortOrder":1,"dateCreated":"11/05/07 13:52","dateModified":"12/05/13 10:03","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Debug and Profile Libraries for Mac OS X 10.5","description":"Contains debug and profile variants of several Mac OS X libraries and frameworks, for enabling additional debugging and profiling behavior when creating your programs. These variants are tied to the underlying operating system's APIs; ensure your versions of Mac OS X and the debug and profile variants match to avoid unexpected behavior when using the variants. DTS' goal is to update this package with each Software Update (e.g. 10.5.1, 10.5.2). See the ReadMe for more information.","isReleased":1,"datePublished":null,"dateCreated":"11/07/07 01:30","dateModified":"08/11/09 04:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Debug and Profile Libraries for Mac OS X 10.5.7 (9J61)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.7 (9J61)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.7_9j61.mpkg.zip","fileSize":81433929,"sortOrder":1,"dateCreated":"08/04/09 14:30","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.8 (9L30)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.8 (9L30)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.8_9l30.mpkg.zip","fileSize":81482299,"sortOrder":1,"dateCreated":"08/11/09 11:48","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.6 (9G55)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.6 (9G55)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.6_9g55.mpkg.zip","fileSize":81145798,"sortOrder":1,"dateCreated":"01/06/09 07:56","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.5 (9F33)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.5 (9F33)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.5_9f33.mpkg.zip","fileSize":79285783,"sortOrder":1,"dateCreated":"09/15/08 15:12","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.3 (9D34)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.3 (9D34)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.3_9d34.mpkg.zip","fileSize":79258956,"sortOrder":1,"dateCreated":"06/02/08 10:40","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.4 (9E17)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.4 (9E17)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.4_9e17.mpkg.zip","fileSize":79267372,"sortOrder":1,"dateCreated":"07/01/08 12:45","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.1 (9B18)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.1 (9B18)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/12609_apple_debug_and_profile_libraries_for_mac_os_x_10.5.1_9b18.mpkg.zip","fileSize":78713139,"sortOrder":1,"dateCreated":"02/12/08 09:57","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.2 (9C31)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.2 (9C31)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/apple_debug_and_profile_libraries_for_mac_os_x_10.5.2_9c31.mpkg.zip","fileSize":79076999,"sortOrder":1,"dateCreated":"02/12/08 09:57","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}},{"filename":"ReadMe","displayName":"ReadMe","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/readme_for_connect_site.html","fileSize":2233,"sortOrder":1,"dateCreated":"11/07/07 13:05","dateModified":"08/11/09 11:48","fileFormat":{"extension":".html","description":"HTML"}},{"filename":"Debug and Profile Libraries for Mac OS X 10.5.0 (9A581)","displayName":"Debug and Profile Libraries for Mac OS X 10.5.0 (9A581)","remotePath":"/Developer_Tools/debug_and_profile_libraries_for_10.5.0_9a581/9012_apple_debug_and_profile_libraries_for_mac_os_x_10.5.0_9a581.mpkg.zip","fileSize":78716227,"sortOrder":1,"dateCreated":"11/07/07 13:05","dateModified":"08/11/09 11:48","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5 Build 9A581","description":"This package provides an IOUSBFamily with logging enabled for the Leopard 9A581 release only. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"11/29/07 02:58","dateModified":"11/29/07 02:58","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"IOUSBFamily-303.4.5-log","displayName":"IOUSBFamily-303.4.5-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_mac_os_x_10.5_build_9a581/iousbfamily303.4.5log.dmg","fileSize":3402183,"sortOrder":1,"dateCreated":"11/29/07 10:58","dateModified":"11/29/07 10:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.4.11 (Intel) build 8S2167","description":"This package contains debug versions of the Mac OS X kernel and many I/O Kit families for use with GDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal Mac OS X installation. Also included are GDB macros useful for kernel debugging and a script for simplifying the creation of symbol files.","isReleased":1,"datePublished":null,"dateCreated":"11/29/07 05:01","dateModified":"11/29/07 05:01","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.4.11 (Intel) build 8S2167","displayName":"Kernel Debug Kit 10.4.11 (Intel) build 8S2167","remotePath":"/Mac_OS_X/kernel_debug_kit_10.4.11_intel_build_8s2167/kernel_debug_kit_10.4.11_8s2167.dmg","fileSize":27158706,"sortOrder":1,"dateCreated":"11/29/07 13:01","dateModified":"11/29/07 13:01","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.4.11(Intel) Build 8S2167","description":"This package provides an IOUSBFamily with logging enabled for the Macintosh OS X 10.4.11 (Intel) release only. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":0,"datePublished":null,"dateCreated":"12/03/07 06:02","dateModified":"12/03/07 06:02","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-277.4.1-log(Intel)","displayName":"IOUSBFamily-277.4.1-log(Intel)","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.4.11intel_build_8s2167/iousbfamily277.4.1logintel.dmg","fileSize":2810011,"sortOrder":1,"dateCreated":"12/03/07 14:02","dateModified":"12/03/07 14:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"CrashWrangler","description":"CrashWrangler is a set of tools for macOS to determine if a crash is an exploitable security issue, and if a crash is a duplicate of another known crash. The exploitability diagnosis is intended to be used when you have a reproducible test case, but the duplicate detection can be run on any crash log.","isReleased":1,"datePublished":"08/29/17 14:22","dateCreated":"08/29/17 14:23","dateModified":"08/29/17 14:23","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"CrashWrangler.zip","displayName":"CrashWrangler","remotePath":"/macOS/CrashWrangler/CrashWrangler.zip","fileSize":827289,"sortOrder":0,"dateCreated":"08/29/17 21:23","dateModified":"08/29/17 21:23","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"Graphics Tools for Xcode 7","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: Icon Composer, OpenGL Driver Monitor, OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Composer Visualizer and Quartz Debug. These graphics tools support running on OS X 10.11.","isReleased":1,"datePublished":"09/14/15 18:17","dateCreated":"09/16/15 13:38","dateModified":"09/16/15 13:38","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Graphics_Tools_for_Xcode_7.dmg","displayName":"Graphics_Tools_for_Xcode_7","remotePath":"/Developer_Tools/Graphics_Tools_for_Xcode_7/Graphics_Tools_for_Xcode_7.dmg","fileSize":48112377,"sortOrder":0,"dateCreated":"09/16/15 20:38","dateModified":"09/16/15 20:38","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Audio Tools for Xcode 7","description":"This package includes the additional audio tools AU Lab and HALLab. These tools support running on OS X 10.11 and OS X 10.10.","isReleased":1,"datePublished":"09/14/15 18:16","dateCreated":"09/16/15 13:39","dateModified":"09/16/15 13:39","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Audio_Tools_for_Xcode_7.dmg","displayName":"Audio_Tools_for_Xcode_7","remotePath":"/Developer_Tools/Audio_Tools_for_Xcode_7/Audio_Tools_for_Xcode_7.dmg","fileSize":6663654,"sortOrder":0,"dateCreated":"09/16/15 20:39","dateModified":"09/16/15 20:39","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode 7","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.11.","isReleased":1,"datePublished":"09/14/15 18:16","dateCreated":"09/16/15 13:40","dateModified":"09/16/15 13:41","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware_IO_Tools_for_Xcode_7.dmg","displayName":"Hardware_IO_Tools_for_Xcode_7","remotePath":"/Developer_Tools/Hardware_IO_Tools_for_Xcode_7/Hardware_IO_Tools_for_Xcode_7.dmg","fileSize":13735976,"sortOrder":0,"dateCreated":"09/16/15 20:40","dateModified":"09/16/15 20:41","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Auxiliary Tools for Xcode 7","description":"This package includes the additional tools 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me. These tools support running on OS X 10.11 and OS X 10.10.","isReleased":1,"datePublished":"09/14/15 18:16","dateCreated":"09/16/15 13:41","dateModified":"09/16/15 13:41","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Auxiliary_Tools_for_Xcode_7.dmg","displayName":"Auxiliary_Tools_for_Xcode_7","remotePath":"/Developer_Tools/Auxiliary_Tools_for_Xcode_7/Auxiliary_Tools_for_Xcode_7.dmg","fileSize":2320476,"sortOrder":0,"dateCreated":"09/16/15 20:41","dateModified":"09/16/15 20:41","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Swift Playgrounds Author Template for Xcode 11.1","description":"This package includes a sample Xcode project and related tools to aid in creating, debugging, and producing a playground book document compatible with Swift Playgrounds version 3.1 for iPad. This package requires a Mac, and supports Xcode 11.1. It may not be compatible with later releases of Xcode.","isReleased":1,"datePublished":"10/01/19 10:22","dateCreated":"10/01/19 13:31","dateModified":"10/23/19 14:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift Playgrounds Author Template for Xcode 11.1.xip","displayName":"Swift Playgrounds Author Template for Xcode 11.1","remotePath":"/Developer_Tools/Swift_Playgrounds_Author_Template_for_Xcode_11.1/Swift_Playgrounds_Author_Template_for_Xcode_11.1.xip","fileSize":1314942,"sortOrder":0,"dateCreated":"10/01/19 20:31","dateModified":"10/01/19 20:32","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/19/19 15:07","dateCreated":"10/01/19 15:25","dateModified":"10/23/19 16:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.dmg","displayName":"Command Line Tools for Xcode 11","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11/Command_Line_Tools_for_Xcode_11.dmg","fileSize":230422479,"sortOrder":0,"dateCreated":"10/01/19 22:25","dateModified":"10/23/19 23:04","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Font Tools for Xcode 11","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter. ","isReleased":1,"datePublished":"09/19/19 15:07","dateCreated":"10/01/19 15:26","dateModified":"10/23/19 16:03","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 11.dmg","displayName":"Font Tools for Xcode 11","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_11/Font_Tools_for_Xcode_11.dmg","fileSize":10971324,"sortOrder":0,"dateCreated":"10/23/19 23:03","dateModified":"10/23/19 23:03","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 11","description":"This package includes audio, graphics, hardware I/O and auxiliary tools formerly bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"09/19/19 15:07","dateCreated":"10/01/19 15:26","dateModified":"02/12/20 12:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 11.dmg","displayName":"Additional Tools for Xcode 11","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_11/Additional_Tools_for_Xcode_11.dmg","fileSize":58772965,"sortOrder":0,"dateCreated":"10/01/19 22:26","dateModified":"10/01/19 22:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"09/19/19 15:10","dateCreated":"10/01/19 15:27","dateModified":"10/23/19 16:04","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.xip","displayName":"Xcode 11","remotePath":"/Developer_Tools/Xcode_11/Xcode_11.xip","fileSize":7612937462,"sortOrder":0,"dateCreated":"10/01/19 22:27","dateModified":"10/23/19 23:04","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Kernel Debug Kit 10.11.3 build 15D21","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"01/19/16 10:00","dateCreated":"03/11/16 11:24","dateModified":"03/11/16 11:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.3 build 15D21.dmg","displayName":"Kernel Debug Kit 10.11.3 build 15D21","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.3_build_15D21/Kernel_Debug_Kit_10.11.3_build_15D21.dmg","fileSize":57595491,"sortOrder":0,"dateCreated":"03/11/16 19:27","dateModified":"03/11/16 19:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"MakeRefMovie 2.2.1","description":"MakeRefMovie allows you to create a QuickTime reference movie, a movie that points to alternate data rate movies based on the user's current device, connection speed or language. This version now provides selectors for iPad, HTTP Live Streaming, Apple TV and language type. It also sorts alternate movies based on device, connection speed, and priority selectors. Posted January 4, 2012.","isReleased":1,"datePublished":null,"dateCreated":"02/06/08 03:48","dateModified":"01/04/12 05:33","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"MakeRefMovie 2.2.1","displayName":"MakeRefMovie 2.2.1","remotePath":"/QuickTime/makerefmovie_2.0.1/makerefmovie221.dmg","fileSize":255231,"sortOrder":1,"dateCreated":"01/04/12 13:09","dateModified":"01/04/12 13:33","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"WebObjects Update 5.4.1 for Mac OS X 10.5","description":"WebObjects 5.4.1 is an update release for the version of WebObjects included in the Mac OS X Leopard tools. This release fixes several bugs in areas such as web services serialization, deployment tools, and database compatibility, among others. This update can be installed on Mac OS X 10.5 Leopard. See the release notes for more information.","isReleased":1,"datePublished":null,"dateCreated":"02/13/08 04:06","dateModified":"09/28/11 05:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"WebObjects Update 5.4.1 for Mac OS X 10.5","displayName":"WebObjects Update 5.4.1 for Mac OS X 10.5","remotePath":"/WebObjects/webobjects_update_5.4.1_for_mac_os_x_10.5/webobjects541for10.5.dmg","fileSize":160392008,"sortOrder":1,"dateCreated":"02/13/08 12:06","dateModified":"09/28/11 12:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.2 Build 9C31","description":"This package provides an IOUSBFamily with logging enabled for the Mac OS X 10.5.2 9C31 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"02/13/08 06:43","dateModified":"02/13/08 06:43","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"IOUSBFamily-308.4.0-log","displayName":"IOUSBFamily-308.4.0-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_mac_os_x_10.5.2_build_9c31/iousbfamily308.4.0log.dmg","fileSize":3416129,"sortOrder":1,"dateCreated":"02/13/08 14:43","dateModified":"02/13/08 14:43","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.2 beta","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"10/01/19 15:39","dateCreated":"10/02/19 10:02","dateModified":"10/02/19 10:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.2 beta.dmg","displayName":"Command Line Tools for Xcode 11.2 beta","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.2_beta/Command_Line_Tools_for_Xcode_11.2_beta.dmg","fileSize":230414305,"sortOrder":0,"dateCreated":"10/02/19 17:02","dateModified":"10/02/19 17:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2 Developer Preview Seed Build 9M72","description":"Xsan Build 9M72 is the same build as the final GM Xsan 2 commercial product. Please read the accompanying Seed Notes carefully for information on installation and use.","isReleased":0,"datePublished":null,"dateCreated":"02/27/08 02:36","dateModified":"09/28/11 05:22","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Xsan 2 Migration Guide","displayName":"Xsan 2 Migration Guide","remotePath":"/xsan/xsan_2_developer_preview_seed_build_9m72/xsan_2_migration_guide.pdf","fileSize":81442,"sortOrder":1,"dateCreated":"02/27/08 10:36","dateModified":"09/28/11 12:22","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xsan 2 Developer Preview Build 9M72 Release Notes","displayName":"Xsan 2 Developer Preview Build 9M72 Release Notes","remotePath":"/xsan/xsan_2_developer_preview_seed_build_9m72/release_notes_for_xsan_2_build_9m72.rtf","fileSize":1337,"sortOrder":1,"dateCreated":"02/27/08 10:36","dateModified":"09/28/11 12:22","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan 2 Developer Preview Build 9M72","displayName":"Xsan 2 Developer Preview Build 9M72","remotePath":"/xsan/xsan_2_developer_preview_seed_build_9m72/xsan2_9m72_cd.dmg","fileSize":130171956,"sortOrder":1,"dateCreated":"02/27/08 10:36","dateModified":"09/28/11 12:22","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Cinema Tools SDK","description":"This is an updated Cinema Tools SDK. The updated SDK adds some additional sample code. You can transform Cinema Tools XML files into other formats, allowing for closer integration of Cinema Tools into the workflow. The files on this disk image demonstrate how to do this with an XSLT stylesheet or with an Xcode project.","isReleased":1,"datePublished":null,"dateCreated":"02/27/08 03:17","dateModified":"02/27/08 03:17","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Cinema Tools SDK","displayName":"Cinema Tools SDK","remotePath":"/Applications/cinema_tools_sdk/ctxml.dmg","fileSize":204337,"sortOrder":1,"dateCreated":"02/27/08 11:17","dateModified":"02/27/08 11:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"pcxapp2 2.5","description":"Use pcxapp2 to compare files or directory structures. It is a powerful engine which can compare every detail of supported file types. Set your preference for comparison to suppress the details. pcxapp2 is capable of comparing a variety of file formats ranging from Cocoa nib files, Carbon resource files and text files such as .strings, .plist, html or .xml. The command-line version is accessible from pcxapp2.app/Contents/Resources/pcx2.","isReleased":0,"datePublished":null,"dateCreated":"02/28/08 04:55","dateModified":"02/17/12 05:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"pcxapp 2.5","displayName":"pcxapp 2.5","remotePath":"/internationalization/pcxapp2_2.5/pcxapp_2.5.dmg","fileSize":510983,"sortOrder":1,"dateCreated":"02/28/08 12:55","dateModified":"02/17/12 13:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.2 build 14C1514","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/30/15 13:57","dateCreated":"03/26/15 13:08","dateModified":"03/30/15 13:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"kernel_debug_kit_10.10.2.14C1514.dmg","displayName":"kernel_debug_kit_10.10.2.14C1514","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.2_build_14C1514/kernel_debug_kit_10.10.2.14C1514.dmg","fileSize":92152909,"sortOrder":0,"dateCreated":"03/26/15 19:59","dateModified":"03/30/15 20:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"FxPlug SDK Version 4.0","description":"This is the FxPlug SDK version 4.0. For details please refer to the online documentation.","isReleased":1,"datePublished":"10/07/19 00:00","dateCreated":"10/07/19 09:45","dateModified":"10/07/19 10:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"FxPlug SDK 4.0.dmg","displayName":"FxPlug SDK 4.0","remotePath":"/Developer_Tools/FxPlug_SDK_Version_4.0/FxPlug_SDK_4.0.dmg","fileSize":6683157,"sortOrder":0,"dateCreated":"10/07/19 16:45","dateModified":"10/07/19 17:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"10/02/19 11:09","dateCreated":"10/07/19 10:11","dateModified":"10/07/19 10:32","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.1.xip","displayName":"Xcode 11.1","remotePath":"/Developer_Tools/Xcode_11.1/Xcode_11.1.xip","fileSize":7675842712,"sortOrder":0,"dateCreated":"10/07/19 17:11","dateModified":"10/07/19 17:32","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Aperture 2.1 SDK (3D9)","description":"The Aperture 2.1 SDK lets you create two kinds of Aperture plug-ins: Export plug-ins and Edit plug-ins. See Extending the Aperture Workflow document for details. For more information, you can join a public mailing list focused on developing plug-ins for Aperture by visiting http://lists.apple.com/mailman/listinfo/aperture-dev.","isReleased":1,"datePublished":null,"dateCreated":"04/21/08 01:51","dateModified":"04/21/08 06:02","categories":[{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"Aperture 2.1 SDK","displayName":"Aperture 2.1 SDK","remotePath":"/Applications/aperture_2.1_sdk_3d9/13037_aperture_2.1_sdk.dmg","fileSize":608593,"sortOrder":1,"dateCreated":"04/21/08 09:33","dateModified":"04/21/08 13:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 9","description":"This package includes audio, graphics, hardware i/o and auxiliary tools formally bundled in Xcode. These tools include: AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation (Requires macOS Sierra), Bluetooth Explorer (Requires macOS Sierra), HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"09/19/17 11:18","dateCreated":"09/18/17 13:25","dateModified":"09/19/17 11:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 9.dmg","displayName":"Additional Tools for Xcode 9","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_9/Additional_Tools_for_Xcode_9.dmg","fileSize":62050597,"sortOrder":0,"dateCreated":"09/18/17 20:25","dateModified":"09/19/17 18:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.2 beta 2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"10/09/19 13:45","dateCreated":"10/11/19 11:42","dateModified":"10/11/19 11:42","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.2 beta 2.dmg","displayName":"Command Line Tools for Xcode 11.2 beta 2","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.2_beta_2/Command_Line_Tools_for_Xcode_11.2_beta_2.dmg","fileSize":230414294,"sortOrder":0,"dateCreated":"10/11/19 18:42","dateModified":"10/11/19 18:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15.1 build 19B68f","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/11/19 10:00","dateCreated":"10/13/19 22:47","dateModified":"10/13/19 23:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15.1 build 19B68f.dmg","displayName":"Kernel Debug Kit 10.15.1 build 19B68f","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15.1_build_19B68f/Kernel_Debug_Kit_10.15.1_build_19B68f.dmg","fileSize":91102762,"sortOrder":0,"dateCreated":"10/14/19 05:49","dateModified":"10/14/19 06:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 build 18G1005","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/11/19 10:00","dateCreated":"10/13/19 22:52","dateModified":"10/13/19 23:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.6 build 18G1005.dmg","displayName":"Kernel Debug Kit 10.14.6 build 18G1005","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_build_18G1005/Kernel_Debug_Kit_10.14.6_build_18G1005.dmg","fileSize":83264461,"sortOrder":0,"dateCreated":"10/14/19 05:53","dateModified":"10/14/19 06:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G9007","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/11/19 10:00","dateCreated":"10/13/19 23:01","dateModified":"10/13/19 23:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G9007.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G9007","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G9007/Kernel_Debug_Kit_10.13.6_build_17G9007.dmg","fileSize":73103226,"sortOrder":0,"dateCreated":"10/14/19 06:02","dateModified":"10/14/19 06:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2.1 Build 9M95","description":"This is a seed of Xsan 2.1 Build 9M95. Please read the accompanying Release Notes carefully for information on installation and use.","isReleased":0,"datePublished":null,"dateCreated":"06/04/08 05:38","dateModified":"11/10/10 22:51","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Release Notes for Xsan 2.1 build 9M95","displayName":"Release Notes for Xsan 2.1 build 9M95","remotePath":"/xsan/xsan_2.1_build_9m93/release_notes_for_xsan_2.1_build_9m95.rtf","fileSize":6254,"sortOrder":1,"dateCreated":"11/11/10 06:51","dateModified":"11/11/10 06:51","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan File System Update 2.1 Build 9M95","displayName":"Xsan File System Update 2.1 Build 9M95","remotePath":"/xsan/xsan_2.1_build_9m93/xsan_file_system_update_2.1_build_9m95.dmg","fileSize":28062095,"sortOrder":1,"dateCreated":"11/11/10 06:51","dateModified":"11/11/10 06:51","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan Admin Update 2.1 Build 9M95","displayName":"Xsan Admin Update 2.1 Build 9M95","remotePath":"/xsan/xsan_2.1_build_9m93/xsan_admin_update_2.1_build_9m95.dmg","fileSize":4499194,"sortOrder":1,"dateCreated":"11/11/10 06:51","dateModified":"11/11/10 06:51","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 2.1 Migration Guide","displayName":"Xsan 2.1 Migration Guide","remotePath":"/xsan/xsan_2.1_build_9m93/xsan_2_migration_guide_2nd_ed.pdf","fileSize":294795,"sortOrder":1,"dateCreated":"06/04/08 12:38","dateModified":"11/11/10 06:51","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"iTunes Metadata Specification","description":"Apple's iTunes Metadata Format is a format for storing and transporting metadata in iTunes audio and video files.This document describes the metadata and format for iTunes, version 6 and later. \r\nThis document is intended for developers who create or modify files for use with iTunes in order to include metadata such as artist name, copyright, and so on.","isReleased":1,"datePublished":null,"dateCreated":"06/05/08 05:32","dateModified":"02/17/12 05:49","categories":[{"id":7,"name":"Documentation","sortOrder":35},{"id":187,"name":"Developer Tools","sortOrder":28},{"id":247,"name":"Applications","sortOrder":5},{"id":310,"name":"Reference Library","sortOrder":1}],"files":[{"filename":"iTunes Metadata Specification","displayName":"iTunes Metadata Specification","remotePath":"/iTunes_Producer/itunes_metadata_specification/itunes_metadata_specification.pkg.zip","fileSize":241597,"sortOrder":1,"dateCreated":"06/05/08 12:32","dateModified":"02/17/12 13:49","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"WebObjects Nightly Builds Snapshot","description":"A snapshot of WebObjects nightly builds in Maven 2 repository format with most recent changes.","isReleased":0,"datePublished":null,"dateCreated":"06/10/08 02:00","dateModified":"09/28/11 05:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"WebObjects 5.4.x (20080808)","displayName":"WebObjects 5.4.x (20080808)","remotePath":"/WebObjects/webobjects_nightly_builds/womaven_20080808.zip","fileSize":23925257,"sortOrder":1,"dateCreated":"08/08/08 14:49","dateModified":"09/28/11 12:24","fileFormat":{"extension":".zip","description":"Zip"}}]},{"name":"WebObjects API Reference","description":"WebObjects 5.4.2 API Reference (archived HTML)","isReleased":0,"datePublished":null,"dateCreated":"07/02/08 09:39","dateModified":"09/28/11 05:25","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Javadoc","displayName":"Javadoc","remotePath":"/WebObjects/webobjects_api_reference/wo542apidocs.tar.gz","fileSize":3607564,"sortOrder":1,"dateCreated":"07/02/08 16:39","dateModified":"09/28/11 12:25","fileFormat":{"extension":".gz","description":"GNU Zip"}}]},{"name":"Xcode 3.1 Developer Tools","description":"Xcode 3.1 is an update release of the developer tools for Mac OS X, and is the same version included with the iPhone SDK. This release provides additional GCC and LLVM compiler options, general bug fixes, and must be installed on Leopard, Mac OS X 10.5.0 and higher. Xcode 3.1 defaults to upgrading Xcode 3.0, but may optionally be installed along side existing Xcode installations. See the accompanying release notes for detailed installation instructions, known issues, and security advisories.","isReleased":1,"datePublished":null,"dateCreated":"07/11/08 08:32","dateModified":"07/11/08 08:32","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 3.1 Developer DVD","displayName":"Xcode 3.1 Developer DVD","remotePath":"/Developer_Tools/xcode_3.1_developer_tools/xcode31_2199_developerdvd.dmg","fileSize":1111753662,"sortOrder":1,"dateCreated":"07/11/08 15:32","dateModified":"07/11/08 15:32","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"About Xcode 3.1 Tools","displayName":"About Xcode 3.1 Tools","remotePath":"/Developer_Tools/xcode_3.1_developer_tools/about_xcode_tools_3.1.pdf","fileSize":77626,"sortOrder":1,"dateCreated":"07/11/08 15:32","dateModified":"07/11/08 15:32","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Xcode 3.1.1 Developer Tools","description":"Xcode 3.1.1 is an update release of the developer tools for Mac OS X. This release provides additional GCC and LLVM compiler options, general bug fixes, and must be installed on Leopard, Mac OS X 10.5.0 and higher. Xcode defaults to upgrading an existing Xcode installation, but may optionally be installed along side existing Xcode installations. See the accompanying release notes for detailed installation instructions, known issues, and security advisories.","isReleased":1,"datePublished":null,"dateCreated":"07/24/08 09:29","dateModified":"10/20/09 08:22","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 3.1.1 Tools","displayName":"Xcode 3.1.1 Tools","remotePath":"/Developer_Tools/xcode_3.1.1_developer_tools_preview_1/xcode311_9m2517_developerdvd.dmg","fileSize":1058505780,"sortOrder":1,"dateCreated":"10/20/09 15:22","dateModified":"10/20/09 15:22","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"About Xcode 3.1.1 Tools","displayName":"About Xcode 3.1.1 Tools","remotePath":"/Developer_Tools/xcode_3.1.1_developer_tools_preview_1/about_xcode_3.1.1_tools.pdf","fileSize":78375,"sortOrder":1,"dateCreated":"10/20/09 15:22","dateModified":"10/20/09 15:22","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Kernel Debug Kit 10.15.1 build 19B77a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/24/19 10:00","dateCreated":"10/23/19 00:20","dateModified":"10/23/19 10:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15.1 build 19B77a.dmg","displayName":"Kernel Debug Kit 10.15.1 build 19B77a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15.1_build_19B77a/Kernel_Debug_Kit_10.15.1_build_19B77a.dmg","fileSize":91029304,"sortOrder":0,"dateCreated":"10/23/19 07:23","dateModified":"10/23/19 17:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 build 18G1007","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/24/19 10:00","dateCreated":"10/23/19 00:24","dateModified":"10/23/19 10:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.6 build 18G1007.dmg","displayName":"Kernel Debug Kit 10.14.6 build 18G1007","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_build_18G1007/Kernel_Debug_Kit_10.14.6_build_18G1007.dmg","fileSize":83147922,"sortOrder":0,"dateCreated":"10/23/19 07:25","dateModified":"10/23/19 17:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G9010","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"10/24/19 10:00","dateCreated":"10/23/19 00:26","dateModified":"10/23/19 10:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G9010.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G9010","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G9010/Kernel_Debug_Kit_10.13.6_build_17G9010.dmg","fileSize":73103245,"sortOrder":0,"dateCreated":"10/23/19 07:26","dateModified":"10/23/19 17:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.4 Build 9E17","description":"This package provides an IOUSBFamily with logging enabled for the Mac OS X 10.5.4 9E17 and for the 10.5.3 9D34 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"07/31/08 04:57","dateModified":"07/31/08 04:57","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-315.4.1-log.dmg","displayName":"IOUSBFamily-315.4.1-log.dmg","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.5.4_build_9e17/iousbfamily315.4.1log.dmg","fileSize":3398140,"sortOrder":1,"dateCreated":"07/31/08 11:57","dateModified":"07/31/08 11:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 10.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"03/19/19 16:21","dateCreated":"10/23/19 08:57","dateModified":"10/23/19 16:20","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 10.2.xip","displayName":"Xcode 10.2","remotePath":"/Developer_Tools/Xcode_10.2/Xcode_10.2.xip","fileSize":6055736566,"sortOrder":0,"dateCreated":"10/23/19 15:57","dateModified":"10/23/19 23:20","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 10.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"07/16/19 10:52","dateCreated":"10/23/19 13:45","dateModified":"10/23/19 16:20","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 10.3.xip","displayName":"Xcode 10.3","remotePath":"/Developer_Tools/Xcode_10.3/Xcode_10.3.xip","fileSize":6044005625,"sortOrder":0,"dateCreated":"10/23/19 20:45","dateModified":"10/23/19 23:20","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.14) for Xcode 10.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"07/16/19 10:35","dateCreated":"10/23/19 13:52","dateModified":"10/23/19 16:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.14) for Xcode 10.3.dmg","displayName":"Command Line Tools (macOS 10.14) for Xcode 10.3","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.14_for_Xcode_10.3/Command_Line_Tools_macOS_10.14_for_Xcode_10.3.dmg","fileSize":203944529,"sortOrder":0,"dateCreated":"10/23/19 20:52","dateModified":"10/23/19 23:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 10.2.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"04/09/19 16:42","dateCreated":"10/23/19 13:54","dateModified":"10/23/19 16:20","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 10.2.1.xip","displayName":"Xcode 10.2.1","remotePath":"/Developer_Tools/Xcode_10.2.1/Xcode_10.2.1.xip","fileSize":6055671032,"sortOrder":0,"dateCreated":"10/23/19 20:54","dateModified":"10/23/19 23:20","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Swift Playgrounds Author Template for Xcode 10.2","description":"This package includes a sample Xcode project and related tools to aid in creating, debugging, and producing a playground book document compatible with Swift Playgrounds version 3 for iPad. This package requires a Mac, and supports Xcode 10.2. It may not be compatible with later releases of Xcode.","isReleased":1,"datePublished":"05/13/19 16:32","dateCreated":"10/23/19 14:45","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift Playgrounds Author Template for Xcode 10.2.xip","displayName":"Swift Playgrounds Author Template for Xcode 10.2","remotePath":"/Developer_Tools/Swift_Playgrounds_Author_Template_for_Xcode_10.2/Swift_Playgrounds_Author_Template_for_Xcode_10.2.xip","fileSize":66729294,"sortOrder":0,"dateCreated":"10/23/19 21:45","dateModified":"10/23/19 23:17","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Swift Playgrounds Author Template for Xcode 9.3","description":"This package includes a sample Xcode project and related tools to aid in creating, debugging, and producing a playground book document compatible with Swift Playgrounds for iPad, including support for all of the features available in Swift Playgrounds 2.1. This package requires a Mac, and supports Xcode 9.3. It may not be compatible with later releases of Xcode.","isReleased":1,"datePublished":"05/01/18 17:38","dateCreated":"10/23/19 14:48","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift Playgrounds Author Template for Xcode 9.3.xip","displayName":"Swift Playgrounds Author Template for Xcode 9.3","remotePath":"/Developer_Tools/Swift_Playgrounds_Author_Template_for_Xcode_9.3/Swift_Playgrounds_Author_Template_for_Xcode_9.3.xip","fileSize":24991067,"sortOrder":0,"dateCreated":"10/23/19 21:48","dateModified":"10/23/19 23:17","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.14) for Xcode 10.2.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"04/09/19 16:26","dateCreated":"10/23/19 14:49","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.14) for Xcode 10.2.1.dmg","displayName":"Command Line Tools (macOS 10.14) for Xcode 10.2.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.14_for_Xcode_10.2.1.dmg/Command_Line_Tools_macOS_10.14_for_Xcode_10.2.1.dmg","fileSize":203813456,"sortOrder":0,"dateCreated":"10/23/19 21:49","dateModified":"10/23/19 23:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.14) for Xcode 10","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/14/18 09:59","dateCreated":"10/23/19 14:50","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.14) for Xcode 10.dmg","displayName":"Command Line Tools (macOS 10.14) for Xcode 10","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.14_for_Xcode_10/Command_Line_Tools_macOS_10.14_for_Xcode_10.dmg","fileSize":192475091,"sortOrder":0,"dateCreated":"10/23/19 21:50","dateModified":"10/23/19 23:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 10","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/14/18 10:01","dateCreated":"10/23/19 14:51","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 10.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 10","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_10/Command_Line_Tools_macOS_10.13_for_Xcode_10.dmg","fileSize":195780760,"sortOrder":0,"dateCreated":"10/23/19 21:51","dateModified":"10/23/19 23:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.14) for Xcode 10.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/19/19 16:22","dateCreated":"10/23/19 14:52","dateModified":"10/23/19 16:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.14) for Xcode 10.2.dmg","displayName":"Command Line Tools (macOS 10.14) for Xcode 10.2","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.14_for_Xcode_10.2/Command_Line_Tools_macOS_10.14_for_Xcode_10.2.dmg","fileSize":203813482,"sortOrder":0,"dateCreated":"10/23/19 21:52","dateModified":"10/23/19 23:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 10","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"09/14/18 10:27","dateCreated":"10/23/19 14:55","dateModified":"10/23/19 16:19","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 10.xip","displayName":"Xcode 10","remotePath":"/Developer_Tools/Xcode_10/Xcode_10.xip","fileSize":5876954359,"sortOrder":0,"dateCreated":"10/23/19 21:55","dateModified":"10/23/19 23:19","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Swift 5 Runtime Support for Command Line Tools","description":"Starting with Xcode 10.2, Swift 5 command line programs you build require the Swift 5 runtime support libraries built into macOS. These libraries are included in the OS starting with macOS Mojave 10.14.4. When running on earlier versions of macOS, this package must be installed to provide the necessary Swift 5 libraries. This package is not necessary for apps with graphical user interfaces. ","isReleased":1,"datePublished":"03/19/19 16:24","dateCreated":"10/23/19 15:01","dateModified":"10/23/19 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift 5 Runtime Support for Command Line Tools.dmg","displayName":"Swift 5 Runtime Support for Command Line Tools","remotePath":"/Developer_Tools/Swift_5_Runtime_Support_for_Command_Line_Tools/Swift_5_Runtime_Support_for_Command_Line_Tools.dmg","fileSize":3183461,"sortOrder":0,"dateCreated":"10/23/19 22:01","dateModified":"10/23/19 23:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Swift Playgrounds Author Template for Xcode 10","description":"This package includes a sample Xcode project and related tools to aid in creating, debugging, and producing a playground book document compatible with Swift Playgrounds version 2.2 for iPad. This package requires a Mac, and supports Xcode 10. It may not be compatible with later releases of Xcode.","isReleased":0,"datePublished":"11/09/18 15:37","dateCreated":"10/23/19 16:04","dateModified":"10/23/19 16:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Swift Playgrounds Author Template for Xcode 10.xip","displayName":"Swift Playgrounds Author Template for Xcode 10","remotePath":"/Developer_Tools/Playground_Book_Template_Swift_Playgrounds_2.2_for_Xcode_10/Swift_Playgrounds_Author_Template_for_Xcode_10.xip","fileSize":8467791,"sortOrder":0,"dateCreated":"10/23/19 23:04","dateModified":"10/23/19 23:05","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 10.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"10/25/18 12:06","dateCreated":"10/23/19 16:07","dateModified":"10/23/19 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 10.1.xip","displayName":"Xcode 10.1","remotePath":"/Developer_Tools/Xcode_10.1/Xcode_10.1.xip","fileSize":6047806709,"sortOrder":0,"dateCreated":"10/23/19 23:07","dateModified":"10/23/19 23:16","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.14) for Xcode 10.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"10/25/18 12:04","dateCreated":"10/23/19 16:14","dateModified":"10/23/19 16:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.14) for Xcode 10.1.dmg","displayName":"Command Line Tools (macOS 10.14) for Xcode 10.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.14_for_Xcode_10.1/Command_Line_Tools_macOS_10.14_for_Xcode_10.1.dmg","fileSize":192997780,"sortOrder":0,"dateCreated":"10/23/19 23:14","dateModified":"10/23/19 23:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 10.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/25/18 12:04","dateCreated":"10/23/19 16:15","dateModified":"10/23/19 16:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 10.1.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 10.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_10.1/Command_Line_Tools_macOS_10.13_for_Xcode_10.1.dmg","fileSize":195846261,"sortOrder":0,"dateCreated":"10/23/19 23:15","dateModified":"10/23/19 23:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode 7.3","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.11.","isReleased":1,"datePublished":"03/21/16 12:27","dateCreated":"03/21/16 12:26","dateModified":"03/21/16 12:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Hardware IO Tools for Xcode 7.3.dmg","displayName":"Hardware IO Tools for Xcode 7.3","remotePath":"/Developer_Tools/Hardware_IO_Tools_for_Xcode_7.3/Hardware_IO_Tools_for_Xcode_7.3.dmg","fileSize":12694049,"sortOrder":0,"dateCreated":"03/21/16 19:26","dateModified":"03/21/16 19:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"WebObjects Update 5.4.3 for Mac OS X 10.5","description":"WebObjects 5.4.3 is an update release for the version of WebObjects included in the Mac OS X Leopard tools. This release addresses issues in the areas of runtime database interaction, Direct to Web, and field validation, among others. This update can be installed on Mac OS X 10.5.3 or later with Xcode 3.1 or later version of the Developer Tools installed.","isReleased":1,"datePublished":null,"dateCreated":"09/15/08 07:26","dateModified":"09/28/11 05:24","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"WebObjects Update 5.4.3 for Mac OS X 10.5","displayName":"WebObjects Update 5.4.3 for Mac OS X 10.5","remotePath":"/WebObjects/webobjects_update_5.4.3_for_mac_os_x_10.5/webobjects543for10.5.dmg","fileSize":166167249,"sortOrder":1,"dateCreated":"09/15/08 14:26","dateModified":"09/28/11 12:24","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.5 Build 9F33","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.5.5 9F33, for Mac OS X 10.5.4 9E17, and for the 10.5.3 9D34 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"09/16/08 02:12","dateModified":"09/16/08 02:12","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-315.4.1-log","displayName":"IOUSBFamily-315.4.1-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.5.5_build_9f33/iousbfamily315.4.1log.dmg","fileSize":3127548,"sortOrder":1,"dateCreated":"09/16/08 09:12","dateModified":"09/16/08 09:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Hardware IO Tools for Xcode 6.3","description":"This package includes additional hardware i/o tools formerly bundled in the Xcode installer. These tools include: Apple Bluetooth Guidelines Validation, Bluetooth Explorer, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner.prefpane, PacketLogger and Printer Simulator. These graphics tools support running on OS X 10.10.","isReleased":1,"datePublished":"04/08/15 10:00","dateCreated":"04/07/15 12:21","dateModified":"04/08/15 14:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"HardwareIOTools_Xcode_6.3.dmg","displayName":"HardwareIOTools_Xcode_6.3","remotePath":"/Developer_Tools/Hardware_IO_Tools_for_Xcode_6.3/HardwareIOTools_Xcode_6.3.dmg","fileSize":10142391,"sortOrder":0,"dateCreated":"04/07/15 19:20","dateModified":"04/08/15 21:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Graphics Tools for Xcode 6.3","description":"This package includes additional graphics tools formerly bundled in the Xcode installer. These tools include: Icon Composer, OpenGL Driver Monitor, OpenGL Profiler, OpenGL Shader Builder, Pixie, Quartz Composer, Quartz Composer Visualizer and Quartz Debug. These graphics tools support running on OS X 10.10.","isReleased":1,"datePublished":"04/08/15 14:16","dateCreated":"04/07/15 12:23","dateModified":"04/08/15 14:16","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"GraphicsTools_Xcode_6.3.dmg","displayName":"GraphicsTools_Xcode_6.3","remotePath":"/Developer_Tools/Graphics_Tools_for_Xcode_6.3/GraphicsTools_Xcode_6.3.dmg","fileSize":48136061,"sortOrder":0,"dateCreated":"04/07/15 19:22","dateModified":"04/08/15 21:16","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xsan 2.1.1 Build 9M109","description":"This is a seed of Xsan 2.1.1 Build 9M102. Please read the accompanying Release Notes carefully for information on installation and use.","isReleased":0,"datePublished":null,"dateCreated":"10/07/08 06:14","dateModified":"09/28/11 05:20","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Release Notes for Xsan 2.1.1 build 9M109","displayName":"Release Notes for Xsan 2.1.1 build 9M109","remotePath":"/xsan/xsan_2.1.1_build_9m109/release_notes_for_xsan_2.1.1_build_9m109.rtf","fileSize":5837,"sortOrder":1,"dateCreated":"10/07/08 13:14","dateModified":"09/28/11 12:20","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan Admin Update 2.1.1 Build 9M109","displayName":"Xsan Admin Update 2.1.1 Build 9M109","remotePath":"/xsan/xsan_2.1.1_build_9m109/xsan_admin_update_2.1.1_build_9m109.dmg","fileSize":4492669,"sortOrder":1,"dateCreated":"10/07/08 13:14","dateModified":"09/28/11 12:20","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"Xsan 2.x Developer Use Serial Number","displayName":"Xsan 2.x Developer Use Serial Number","remotePath":"/xsan/xsan_2.1.1_build_9m109/xsan2.x_developersn_dec31_2009.rtf","fileSize":4951,"sortOrder":1,"dateCreated":"01/22/09 13:26","dateModified":"09/28/11 12:20","fileFormat":{"extension":".rtf","description":"RTF"}},{"filename":"Xsan File System Update 2.1.1 Build 9M109","displayName":"Xsan File System Update 2.1.1 Build 9M109","remotePath":"/xsan/xsan_2.1.1_build_9m109/xsan_file_system_update_2.1.1_build_9m109.dmg","fileSize":28076976,"sortOrder":1,"dateCreated":"10/07/08 13:14","dateModified":"09/28/11 12:20","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"10/31/19 15:00","dateCreated":"10/31/19 21:45","dateModified":"10/31/19 21:45","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.2.xip","displayName":"Xcode 11.2","remotePath":"/Developer_Tools/Xcode_11.2/Xcode_11.2.xip","fileSize":7821856919,"sortOrder":0,"dateCreated":"11/01/19 04:45","dateModified":"11/01/19 04:45","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 3.1.2 Developer Tools","description":"Xcode 3.1.2 is an update release of the developer tools for Mac OS X. This release provides additional GCC and LLVM compiler options, general bug fixes, and must be installed on Leopard, Mac OS X 10.5.0 and higher. Xcode defaults to upgrading an existing Xcode installation, but may optionally be installed along side existing Xcode installations. See the accompanying release notes for detailed installation instructions, known issues, and security advisories.","isReleased":0,"datePublished":null,"dateCreated":"11/24/08 03:31","dateModified":"11/24/08 03:31","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"About Xcode Tools 3.1.2","displayName":"About Xcode Tools 3.1.2","remotePath":"/Developer_Tools/xcode_3.1.2_developer_tools/about_xcode_tools_3.1.2.pdf","fileSize":78266,"sortOrder":1,"dateCreated":"11/24/08 11:31","dateModified":"11/24/08 11:31","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.1.2 Developer Tools DVD","displayName":"Xcode 3.1.2 Developer Tools DVD","remotePath":"/Developer_Tools/xcode_3.1.2_developer_tools/xcode312_2621_developerdvd.dmg","fileSize":1044222792,"sortOrder":1,"dateCreated":"11/24/08 11:31","dateModified":"11/24/08 11:31","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.4.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"06/08/18 11:22","dateCreated":"11/01/19 11:33","dateModified":"11/01/19 13:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.4.1.xip","displayName":"Xcode 9.4.1","remotePath":"/Developer_Tools/Xcode_9.4.1/Xcode_9.4.1.xip","fileSize":5271270648,"sortOrder":0,"dateCreated":"11/01/19 18:33","dateModified":"11/01/19 20:00","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Kernel Debug Kit 10.12.6 build 16G1036","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/31/17 11:52","dateCreated":"10/31/17 11:28","dateModified":"10/31/17 11:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.12.6 build 16G1036.dmg","displayName":"Kernel Debug Kit 10.12.6 build 16G1036","remotePath":"/macOS/Kernel_Debug_Kit_10.12.6_build_16G1036/Kernel_Debug_Kit_10.12.6_build_16G1036.dmg","fileSize":73009916,"sortOrder":0,"dateCreated":"10/31/17 18:28","dateModified":"10/31/17 18:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.4","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"05/21/18 15:18","dateCreated":"11/01/19 11:45","dateModified":"11/01/19 13:00","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.4.xip","displayName":"Xcode 9.4","remotePath":"/Developer_Tools/Xcode_9.4/Xcode_9.4.xip","fileSize":5271139574,"sortOrder":0,"dateCreated":"11/01/19 18:45","dateModified":"11/01/19 20:00","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.4.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"06/08/18 11:21","dateCreated":"11/01/19 11:51","dateModified":"11/01/19 12:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.4.1.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.4.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.4.1/Command_Line_Tools_macOS_10.13_for_Xcode_9.4.1.dmg","fileSize":192548827,"sortOrder":0,"dateCreated":"11/01/19 18:51","dateModified":"11/01/19 19:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.6 build 15G17023","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/31/17 11:52","dateCreated":"10/31/17 11:36","dateModified":"10/31/17 11:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.11.6 build 15G17023.dmg","displayName":"Kernel Debug Kit 10.11.6 build 15G17023","remotePath":"/macOS/Kernel_Debug_Kit_10.11.6_build_15G17023/Kernel_Debug_Kit_10.11.6_build_15G17023.dmg","fileSize":73358076,"sortOrder":0,"dateCreated":"10/31/17 18:37","dateModified":"10/31/17 18:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.4","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"05/22/18 13:30","dateCreated":"11/01/19 11:53","dateModified":"11/01/19 12:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.4.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.4","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.4/Command_Line_Tools_macOS_10.13_for_Xcode_9.4.dmg","fileSize":192565208,"sortOrder":0,"dateCreated":"11/01/19 18:53","dateModified":"11/01/19 19:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.1 build 17B48","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"10/31/17 11:51","dateCreated":"10/31/17 11:52","dateModified":"10/31/17 11:52","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.13.1 build 17B48.dmg","displayName":"Kernel Debug Kit 10.13.1 build 17B48","remotePath":"/macOS/Kernel_Debug_Kit_10.13.1_build_17B48/Kernel_Debug_Kit_10.13.1_build_17B48.dmg","fileSize":62746806,"sortOrder":0,"dateCreated":"10/31/17 18:52","dateModified":"10/31/17 18:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.3.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"05/09/18 12:21","dateCreated":"11/01/19 11:53","dateModified":"11/01/19 12:59","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.3.1.xip","displayName":"Xcode 9.3.1","remotePath":"/Developer_Tools/Xcode_9.3.1/Xcode_9.3.1.xip","fileSize":5235160313,"sortOrder":0,"dateCreated":"11/01/19 18:53","dateModified":"11/01/19 19:59","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/22/18 21:33","dateCreated":"11/01/19 11:59","dateModified":"11/01/19 12:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.3.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.3","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.3/Command_Line_Tools_macOS_10.13_for_Xcode_9.3.dmg","fileSize":192491483,"sortOrder":0,"dateCreated":"11/01/19 18:59","dateModified":"11/01/19 19:57","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"03/23/18 09:47","dateCreated":"11/01/19 12:00","dateModified":"11/01/19 12:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.3.xip","displayName":"Xcode 9.3","remotePath":"/Developer_Tools/Xcode_9.3/Xcode_9.3.xip","fileSize":5235094775,"sortOrder":0,"dateCreated":"11/01/19 19:00","dateModified":"11/01/19 19:58","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 9.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"11/30/17 16:00","dateCreated":"11/01/19 12:07","dateModified":"11/01/19 12:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.2.xip","displayName":"Xcode 9.2","remotePath":"/Developer_Tools/Xcode_9.2/Xcode_9.2.xip","fileSize":5478692088,"sortOrder":0,"dateCreated":"11/01/19 19:07","dateModified":"11/01/19 19:58","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 9.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"11/30/17 15:59","dateCreated":"11/01/19 12:14","dateModified":"11/01/19 12:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 9.2.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 9.2","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_9.2/Command_Line_Tools_macOS_10.12_for_Xcode_9.2.dmg","fileSize":187629224,"sortOrder":0,"dateCreated":"11/01/19 19:14","dateModified":"11/01/19 19:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"11/30/17 15:58","dateCreated":"11/01/19 12:15","dateModified":"11/01/19 12:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.2.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.2","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.2/Command_Line_Tools_macOS_10.13_for_Xcode_9.2.dmg","fileSize":182316425,"sortOrder":0,"dateCreated":"11/01/19 19:15","dateModified":"11/01/19 19:55","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"10/31/17 12:24","dateCreated":"11/01/19 12:17","dateModified":"11/01/19 12:57","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.1.xip","displayName":"Xcode 9.1","remotePath":"/Developer_Tools/Xcode_9.1/Xcode_9.1.xip","fileSize":5442909430,"sortOrder":0,"dateCreated":"11/01/19 19:17","dateModified":"11/01/19 19:57","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/29/17 13:31","dateCreated":"11/01/19 12:24","dateModified":"11/01/19 12:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.1.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.1/Command_Line_Tools_macOS_10.13_for_Xcode_9.1.dmg","fileSize":182201735,"sortOrder":0,"dateCreated":"11/01/19 19:24","dateModified":"11/01/19 19:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 9.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/29/17 13:31","dateCreated":"11/01/19 12:25","dateModified":"11/01/19 12:54","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 9.1.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 9.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_9.1/Command_Line_Tools_macOS_10.12_for_Xcode_9.1.dmg","fileSize":187514526,"sortOrder":0,"dateCreated":"11/01/19 19:25","dateModified":"11/01/19 19:54","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9.0.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"10/16/17 10:34","dateCreated":"11/01/19 12:26","dateModified":"11/01/19 12:56","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.0.1.xip","displayName":"Xcode 9.0.1","remotePath":"/Developer_Tools/Xcode_9.0.1/Xcode_9.0.1.xip","fileSize":5442843891,"sortOrder":0,"dateCreated":"11/01/19 19:26","dateModified":"11/01/19 19:56","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9.0.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/16/17 10:34","dateCreated":"11/01/19 12:34","dateModified":"11/01/19 12:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.0.1.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9.0.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9.0.1/Command_Line_Tools_macOS_10.13_for_Xcode_9.0.1.dmg","fileSize":182087050,"sortOrder":0,"dateCreated":"11/01/19 19:34","dateModified":"11/01/19 19:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 9.0.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/16/17 10:34","dateCreated":"11/01/19 12:35","dateModified":"11/01/19 12:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 9.0.1.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 9.0.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_9.0.1/Command_Line_Tools_macOS_10.12_for_Xcode_9.0.1.dmg","fileSize":187403942,"sortOrder":0,"dateCreated":"11/01/19 19:35","dateModified":"11/01/19 19:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 9","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"09/19/17 11:22","dateCreated":"11/01/19 12:36","dateModified":"11/01/19 12:55","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 9.xip","displayName":"Xcode 9","remotePath":"/Developer_Tools/Xcode_9/Xcode_9.xip","fileSize":5370295544,"sortOrder":0,"dateCreated":"11/01/19 19:36","dateModified":"11/01/19 19:55","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Font Tools for Xcode 9","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter.","isReleased":1,"datePublished":"09/19/17 11:18","dateCreated":"11/01/19 12:43","dateModified":"11/01/19 12:52","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 9.dmg","displayName":"Font Tools for Xcode 9","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_9/Font_Tools_for_Xcode_9.dmg","fileSize":10915787,"sortOrder":0,"dateCreated":"11/01/19 19:43","dateModified":"11/01/19 19:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.13) for Xcode 9","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/19/17 11:17","dateCreated":"11/01/19 12:44","dateModified":"11/01/19 12:52","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.13) for Xcode 9.dmg","displayName":"Command Line Tools (macOS 10.13) for Xcode 9","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.13_for_Xcode_9/Command_Line_Tools_macOS_10.13_for_Xcode_9.dmg","fileSize":181553114,"sortOrder":0,"dateCreated":"11/01/19 19:44","dateModified":"11/01/19 19:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 9","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/19/17 11:17","dateCreated":"11/01/19 12:45","dateModified":"11/01/19 12:52","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 9.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 9","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_9/Command_Line_Tools_macOS_10.12_for_Xcode_9.dmg","fileSize":186889025,"sortOrder":0,"dateCreated":"11/01/19 19:45","dateModified":"11/01/19 19:52","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.6 Build 9G55","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.5.6 9G55 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"12/22/08 07:35","dateModified":"12/22/08 07:35","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-327.4.0-log.dmg","displayName":"IOUSBFamily-327.4.0-log.dmg","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.5.6_build_9g55/iousbfamily327.4.0log.dmg","fileSize":3461220,"sortOrder":1,"dateCreated":"12/22/08 15:35","dateModified":"12/22/08 15:35","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode 6.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"04/08/15 14:42","dateCreated":"04/08/15 14:37","dateModified":"12/11/19 13:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"commandlinetoolsosx10.10forxcode6.3.dmg","displayName":"commandlinetoolsosx10.10forxcode6.3","remotePath":"/Developer_Tools/NEW__Command_Line_Tools_OS_X_10.10_for_Xcode__Xcode_6.3/commandlinetoolsosx10.10forxcode6.3.dmg","fileSize":165972567,"sortOrder":0,"dateCreated":"04/08/15 21:36","dateModified":"04/08/15 21:42","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 8.2","description":"This package includes audio, graphics, hardware i/o and auxiliary tools formally bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation (Requires macOS Sierra), Bluetooth Explorer (Requires macOS Sierra), HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"12/12/16 10:54","dateCreated":"11/06/17 04:12","dateModified":"11/06/17 04:17","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 8.2.dmg","displayName":"Additional Tools for Xcode 8.2","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_8.2/Additional_Tools_for_Xcode_8.2.dmg","fileSize":61408426,"sortOrder":0,"dateCreated":"11/06/17 12:12","dateModified":"11/06/17 12:17","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 8","description":"This package includes audio, graphics, hardware i/o and auxiliary tools formally bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation (Requires macOS Sierra), Bluetooth Explorer (Requires macOS Sierra), HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"09/13/16 10:12","dateCreated":"11/06/17 04:18","dateModified":"11/06/17 04:18","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 8.dmg","displayName":"Additional Tools for Xcode 8","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_8/Additional_Tools_for_Xcode_8.dmg","fileSize":61384804,"sortOrder":0,"dateCreated":"11/06/17 12:18","dateModified":"11/06/17 12:18","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Additional Tools for Xcode 8.1","description":"This package includes audio, graphics, hardware i/o and auxiliary tools formally bundled in Xcode. These tools include AU Lab, HALLab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Composer Visualizer, Quartz Debug, Apple Bluetooth Guidelines Validation (Requires macOS Sierra), Bluetooth Explorer (Requires macOS Sierra), HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, CrashReporterPrefs, Dictionary Development Kit, Help Indexer, Modem Scripts and Repeat After Me.","isReleased":1,"datePublished":"10/27/16 12:47","dateCreated":"11/06/17 04:26","dateModified":"11/06/17 04:26","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Additional Tools for Xcode 8.1.dmg","displayName":"Additional Tools for Xcode 8.1","remotePath":"/Developer_Tools/Additional_Tools_for_Xcode_8.1/Additional_Tools_for_Xcode_8.1.dmg","fileSize":62414463,"sortOrder":0,"dateCreated":"11/06/17 12:26","dateModified":"11/06/17 12:26","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"FireWire SDK 26 for Mac OS X","description":"The FireWire SDK for Mac OS X gives developers tools, example projects, documentation, and debug components, both for developing FireWire software and for using FireWire to debug other services. The SDK also contains source code for most of the FireWire stack from Mac OS X Leopard (10.5) and recent Leopard updates.","isReleased":1,"datePublished":null,"dateCreated":"01/28/09 08:55","dateModified":"09/28/11 06:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"FireWire SDK 26","displayName":"FireWire SDK 26","remotePath":"/FireWire/firewire_sdk_26_for_mac_os_x_20416/firewiresdk26.dmg","fileSize":30440459,"sortOrder":1,"dateCreated":"01/28/09 16:55","dateModified":"09/28/11 13:02","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"OS X Yosemite 10.10.3 build 14D131","description":"OS X Yosemite 10.10.3 is an update to OS X Yosemite 10.10.","isReleased":1,"datePublished":"04/08/15 13:00","dateCreated":"04/09/15 10:14","dateModified":"04/09/15 10:15","categories":[{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"OSXUpd10.10.3.dmg","displayName":"OS X Yosemite 10.10.3 Update","remotePath":"/OS_X/OS_X_Yosemite_10.10.3_build_14C131/OSXUpd10.10.3.dmg","fileSize":1520348812,"sortOrder":0,"dateCreated":"04/09/15 17:14","dateModified":"04/09/15 17:15","fileFormat":{"extension":".dmg","description":"Disk Image"}},{"filename":"OSXUpdCombo10.10.3.dmg","displayName":"OS X Yosemite 10.10.3 Combo Update","remotePath":"/OS_X/OS_X_Yosemite_10.10.3_build_14C131/OSXUpdCombo10.10.3.dmg","fileSize":2001650011,"sortOrder":0,"dateCreated":"04/09/15 17:14","dateModified":"04/09/15 17:15","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools for Xcode 11.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/23/19 15:31","dateCreated":"11/07/19 09:43","dateModified":"11/07/19 09:44","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.2.dmg","displayName":"Command Line Tools for Xcode 11.2","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.2/Command_Line_Tools_for_Xcode_11.2.dmg","fileSize":230414314,"sortOrder":0,"dateCreated":"11/07/19 17:43","dateModified":"11/07/19 17:44","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"CHUD 4.6.2","description":"The Computer Hardware Understanding Developer Tools (CHUD Tools) are designed to help hardware and software developers measure and optimize the performance of Macintosh systems.","isReleased":1,"datePublished":null,"dateCreated":"03/23/09 08:01","dateModified":"03/23/09 08:39","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"CHUD 4.6.2","displayName":"CHUD 4.6.2","remotePath":"/Developer_Tools/chud_4.6.2/chud4.6.2.dmg","fileSize":36448677,"sortOrder":1,"dateCreated":"03/23/09 15:39","dateModified":"03/23/09 15:39","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11 build 15A284","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"09/30/15 10:00","dateCreated":"09/30/15 09:41","dateModified":"09/30/15 09:53","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11 build 15A284.dmg","displayName":"Kernel Debug Kit 10.11 build 15A284","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11_build_15A284/Kernel_Debug_Kit_10.11_build_15A284.dmg","fileSize":58361488,"sortOrder":0,"dateCreated":"09/30/15 16:41","dateModified":"09/30/15 16:53","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 8.3.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"06/07/17 07:37","dateCreated":"11/08/19 15:30","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.3.3.xip","displayName":"Xcode 8.3.3","remotePath":"/Developer_Tools/Xcode_8.3.3/Xcode_8.3.3.xip","fileSize":4522587381,"sortOrder":0,"dateCreated":"11/08/19 23:36","dateModified":"11/09/19 00:48","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 8.3.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"04/18/17 15:09","dateCreated":"11/08/19 15:47","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.3.2.xip","displayName":"Xcode 8.3.2","remotePath":"/Developer_Tools/Xcode_8.3.2/Xcode_8.3.2.xip","fileSize":4494079225,"sortOrder":0,"dateCreated":"11/08/19 23:47","dateModified":"11/09/19 00:48","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 8.3.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"04/24/17 14:00","dateCreated":"11/08/19 15:54","dateModified":"11/08/19 16:46","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 8.3.2.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 8.3.2","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_8.3.2/Command_Line_Tools_macOS_10.12_for_Xcode_8.3.2.dmg","fileSize":166128165,"sortOrder":0,"dateCreated":"11/08/19 23:55","dateModified":"11/09/19 00:46","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 8.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/27/17 12:56","dateCreated":"11/08/19 15:56","dateModified":"11/08/19 16:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 8.3.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 8.3","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_8.3/Command_Line_Tools_macOS_10.12_for_Xcode_8.3.dmg","fileSize":166119977,"sortOrder":0,"dateCreated":"11/08/19 23:56","dateModified":"11/09/19 00:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 8.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"03/27/17 10:46","dateCreated":"11/08/19 15:58","dateModified":"11/08/19 16:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.3.xip","displayName":"Xcode 8.3","remotePath":"/Developer_Tools/Xcode_8.3/Xcode_8.3.xip","fileSize":4505613560,"sortOrder":0,"dateCreated":"11/08/19 23:58","dateModified":"11/09/19 00:49","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 8.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"12/08/16 09:15","dateCreated":"11/08/19 16:05","dateModified":"11/08/19 16:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.2.xip","displayName":"Xcode 8.2","remotePath":"/Developer_Tools/Xcode_8.2/Xcode_8.2.xip","fileSize":4526912760,"sortOrder":0,"dateCreated":"11/09/19 00:05","dateModified":"11/09/19 00:49","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 8.2.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"12/19/16 12:57","dateCreated":"11/08/19 16:13","dateModified":"11/08/19 16:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.2.1.xip","displayName":"Xcode 8.2.1","remotePath":"/Developer_Tools/Xcode_8.2.1/Xcode_8.2.1.xip","fileSize":4527043832,"sortOrder":0,"dateCreated":"11/09/19 00:13","dateModified":"11/09/19 00:49","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 8.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/12/16 10:54","dateCreated":"11/08/19 16:26","dateModified":"11/08/19 16:47","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 8.2.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 8.2","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_8.2/Command_Line_Tools_macOS_10.12_for_Xcode_8.2.dmg","fileSize":154863510,"sortOrder":0,"dateCreated":"11/09/19 00:26","dateModified":"11/09/19 00:47","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.11) for Xcode 8.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"12/12/16 10:55","dateCreated":"11/08/19 16:27","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.11) for Xcode 8.2.dmg","displayName":"Command Line Tools (macOS 10.11) for Xcode 8.2","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.11_for_Xcode_8.2/Command_Line_Tools_macOS_10.11_for_Xcode_8.2.dmg","fileSize":154679192,"sortOrder":0,"dateCreated":"11/09/19 00:27","dateModified":"11/09/19 00:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Font Tools for Xcode 8.2","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter. These tools support running on OS X 10.11","isReleased":1,"datePublished":"12/12/16 10:55","dateCreated":"11/08/19 16:27","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 8.2.dmg","displayName":"Font Tools for Xcode 8.2","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_8.2/Font_Tools_for_Xcode_8.2.dmg","fileSize":10858464,"sortOrder":0,"dateCreated":"11/09/19 00:27","dateModified":"11/09/19 00:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 8.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/27/16 12:59","dateCreated":"11/08/19 16:28","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 8.1.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 8.1","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_8.1/Command_Line_Tools_macOS_10.12_for_Xcode_8.1.dmg","fileSize":127304058,"sortOrder":0,"dateCreated":"11/09/19 00:28","dateModified":"11/09/19 00:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 8.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"10/27/16 17:06","dateCreated":"11/08/19 16:29","dateModified":"11/08/19 16:50","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.1.xip","displayName":"Xcode 8.1","remotePath":"/Developer_Tools/Xcode_8.1/Xcode_8.1.xip","fileSize":4446762222,"sortOrder":0,"dateCreated":"11/09/19 00:29","dateModified":"11/09/19 00:50","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Font Tools for Xcode 8.1","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter. ","isReleased":0,"datePublished":"10/27/16 12:47","dateCreated":"11/08/19 16:35","dateModified":"11/08/19 16:48","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 8.1.dmg","displayName":"Font Tools for Xcode 8.1","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_8.1/Font_Tools_for_Xcode_8.1.dmg","fileSize":10952797,"sortOrder":0,"dateCreated":"11/09/19 00:35","dateModified":"11/09/19 00:48","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 8","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"09/13/16 13:35","dateCreated":"11/08/19 16:36","dateModified":"11/08/19 16:50","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 8.xip","displayName":"Xcode 8","remotePath":"/Developer_Tools/Xcode_8/Xcode_8.xip","fileSize":4415370488,"sortOrder":0,"dateCreated":"11/09/19 00:36","dateModified":"11/09/19 00:50","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Font Tools for Xcode 8","description":"This package will install command line utilities, Font Tools framework, Blinker, Font Proofer X, FTXViewer, Kerx Tester, MorxTester and UniCharter. These tools support running on macOS 10.11.","isReleased":1,"datePublished":"09/13/16 10:11","dateCreated":"11/08/19 16:42","dateModified":"11/08/19 16:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Font Tools for Xcode 8.dmg","displayName":"Font Tools for Xcode 8","remotePath":"/Developer_Tools/Font_Tools_for_Xcode_8/Font_Tools_for_Xcode_8.dmg","fileSize":10866385,"sortOrder":0,"dateCreated":"11/09/19 00:42","dateModified":"11/09/19 00:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (macOS 10.12) for Xcode 8","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/13/16 10:11","dateCreated":"11/08/19 16:42","dateModified":"11/08/19 16:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (macOS 10.12) for Xcode 8.dmg","displayName":"Command Line Tools (macOS 10.12) for Xcode 8","remotePath":"/Developer_Tools/Command_Line_Tools_macOS_10.12_for_Xcode_8/Command_Line_Tools_macOS_10.12_for_Xcode_8.dmg","fileSize":126181690,"sortOrder":0,"dateCreated":"11/09/19 00:42","dateModified":"11/09/19 00:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.7 Build 9J61","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.5.7 9J61 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"05/13/09 03:59","dateModified":"09/16/11 08:05","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-343.4.3-log","displayName":"IOUSBFamily-343.4.3-log","remotePath":"/Mac_OS_X/iousbfamily_log_release_for_mac_os_x_10.5.7_build_9j61/iousbfamily343.4.3log.dmg","fileSize":3445044,"sortOrder":1,"dateCreated":"05/13/09 10:59","dateModified":"09/16/11 15:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 11.2.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":1,"datePublished":"11/08/19 14:49","dateCreated":"11/12/19 16:45","dateModified":"11/12/19 16:45","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.2.1.xip","displayName":"Xcode 11.2.1","remotePath":"/Developer_Tools/Xcode_11.2.1/Xcode_11.2.1.xip","fileSize":7821856908,"sortOrder":0,"dateCreated":"11/13/19 00:45","dateModified":"11/13/19 00:45","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Xcode 11.3 beta","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and macOS apps.","isReleased":0,"datePublished":"11/11/19 11:28","dateCreated":"11/13/19 10:02","dateModified":"11/13/19 10:02","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 11.3 beta.xip","displayName":"Xcode 11.3 beta","remotePath":"/Developer_Tools/Xcode_11.3_beta/Xcode_11.3_beta.xip","fileSize":7831687317,"sortOrder":0,"dateCreated":"11/13/19 18:02","dateModified":"11/13/19 18:02","fileFormat":{"extension":".xip","description":"XIP"}}]},{"name":"Command Line Tools for Xcode 11.3 beta","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as macOS SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":0,"datePublished":"11/12/19 14:33","dateCreated":"11/13/19 10:08","dateModified":"11/13/19 10:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools for Xcode 11.3 beta 1.dmg","displayName":"Command Line Tools for Xcode 11.3 beta 1","remotePath":"/Developer_Tools/Command_Line_Tools_for_Xcode_11.3_beta/Command_Line_Tools_for_Xcode_11.3_beta_1.dmg","fileSize":230479838,"sortOrder":0,"dateCreated":"11/13/19 18:08","dateModified":"11/13/19 18:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.11) for Xcode 7.3.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"05/04/16 10:00","dateCreated":"11/13/19 14:57","dateModified":"11/13/19 16:12","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.11) for Xcode 7.3.1.dmg","displayName":"Command Line Tools (OS X 10.11) for Xcode 7.3.1","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3.1/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3.1.dmg","fileSize":182849018,"sortOrder":0,"dateCreated":"11/13/19 22:57","dateModified":"11/14/19 00:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, and OS X apps.","isReleased":1,"datePublished":"09/14/15 18:18","dateCreated":"11/13/19 14:58","dateModified":"11/13/19 16:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.dmg","displayName":"Xcode 7","remotePath":"/Developer_Tools/Xcode_7/Xcode_7.dmg","fileSize":3731744540,"sortOrder":0,"dateCreated":"11/13/19 22:58","dateModified":"11/14/19 00:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools OS X 10.10 for Xcode 7","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"09/14/15 18:15","dateCreated":"11/13/19 15:02","dateModified":"11/13/19 16:07","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 7.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 7","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_7/Command_Line_Tools_OS_X_10.10_for_Xcode_7.dmg","fileSize":162144130,"sortOrder":0,"dateCreated":"11/13/19 23:03","dateModified":"11/14/19 00:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.0.1","description":"This is the complete Xcode developer toolset for Apple Watch, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, and OS X apps.","isReleased":1,"datePublished":"09/24/15 09:44","dateCreated":"11/13/19 15:05","dateModified":"11/13/19 16:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.0.1.dmg","displayName":"Xcode 7.0.1","remotePath":"/Developer_Tools/Xcode_7.0.1/Xcode_7.0.1.dmg","fileSize":3733068903,"sortOrder":0,"dateCreated":"11/13/19 23:05","dateModified":"11/14/19 00:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.11) for Xcode 7.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/14/15 15:35","dateCreated":"11/13/19 15:10","dateModified":"11/13/19 16:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.11) for Xcode 7.1.dmg","displayName":"Command Line Tools (OS X 10.11) for Xcode 7.1","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.11_for_Xcode_7.1/Command_Line_Tools_OS_X_10.11_for_Xcode_7.1.dmg","fileSize":166744074,"sortOrder":0,"dateCreated":"11/13/19 23:10","dateModified":"11/14/19 00:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.10) for Xcode 7.1","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"10/14/15 15:35","dateCreated":"11/13/19 15:10","dateModified":"11/13/19 16:10","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 7.1.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 7.1","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_7.1/Command_Line_Tools_OS_X_10.10_for_Xcode_7.1.dmg","fileSize":164261050,"sortOrder":0,"dateCreated":"11/13/19 23:11","dateModified":"11/14/19 00:10","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"10/13/15 16:06","dateCreated":"11/13/19 15:12","dateModified":"11/13/19 16:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.1.dmg","displayName":"Xcode 7.1","remotePath":"/Developer_Tools/Xcode_7.1/Xcode_7.1.dmg","fileSize":4474328556,"sortOrder":0,"dateCreated":"11/13/19 23:12","dateModified":"11/14/19 00:12","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.10.3 build 14D131","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"04/13/15 18:50","dateCreated":"04/10/15 16:44","dateModified":"04/13/15 18:50","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.10.3 build 14D131.dmg","displayName":"Kernel Debug Kit 10.10.3 build 14D131","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.10.3_build_14D131/Kernel_Debug_Kit_10.10.3_build_14D131.dmg","fileSize":107869610,"sortOrder":0,"dateCreated":"04/13/15 17:29","dateModified":"04/14/15 01:50","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.1.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"11/03/15 09:27","dateCreated":"11/13/19 15:17","dateModified":"11/13/19 16:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.1.1.dmg","displayName":"Xcode 7.1.1","remotePath":"/Developer_Tools/Xcode_7.1.1/Xcode_7.1.1.dmg","fileSize":4474204264,"sortOrder":0,"dateCreated":"11/13/19 23:17","dateModified":"11/14/19 00:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Mac OS X Server Documentation Suite","description":"The Mac OS X Server documentation suite is your official guide to Snow Leopard Server. Read Getting Started to learn the basics of installing, configuring, and managing the server software. For information about advanced topics, see Advanced Server Administration and the other administration guides—each guide explains how to use a particular component of Snow Leopard Server, including: Address Book Server, iCal Server, iChat Server, Mail Services, Network Services, Open Directory, Podcast Composer and Producer, QuickTime Streaming, Wiki Server, and more.","isReleased":0,"datePublished":null,"dateCreated":"06/08/09 11:45","dateModified":"06/08/09 11:45","categories":[{"id":87,"name":"macOS Server","sortOrder":73}],"files":[{"filename":"Mac OS X Server Installation & Setup Worksheet v10.6 Beta","displayName":"Mac OS X Server Installation & Setup Worksheet v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/worksheet_v10.6_beta.pdf","fileSize":204033,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Podcast Producer Administration v10.6 Beta","displayName":"Mac OS X Server Podcast Producer Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/podcast_producer_admin_v10.6_beta.pdf","fileSize":2347132,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Print Server Administration v10.6 Beta","displayName":"Mac OS X Server Print Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/print_server_admin_v10.6_beta.pdf","fileSize":843245,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server File Server Administration v10.6 Beta","displayName":"Mac OS X Server File Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/file_server_admin_v10.6_beta.pdf","fileSize":1438725,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Mail Service Administration v10.6 Beta","displayName":"Mac OS X Server Mail Service Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/mail_service_admin_v10.6_beta.pdf","fileSize":1017090,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server QuickTime Streaming & Broadcasting Administration v10.6 Beta","displayName":"Mac OS X Server QuickTime Streaming & Broadcasting Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/qtss_and_broadcasting_admin_v10.6_beta.pdf","fileSize":1144639,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server System Image and Software Update Administration v10.6 Beta","displayName":"Mac OS X Server System Image and Software Update Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/sys_imag_and_sw_update_v10.6_beta.pdf","fileSize":836874,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Upgrading and Migrating v10.6 Beta","displayName":"Mac OS X Server Upgrading and Migrating v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/upgrading_and_migrating_v10.6_beta.pdf","fileSize":1206159,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Advanced Server Administration v10.6 Beta","displayName":"Mac OS X Server Advanced Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/adv_server_admin_v10.6_beta2.pdf","fileSize":4910446,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Network Services Administration v10.6 Beta","displayName":"Mac OS X Server Network Services Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/network_services_admin_v10.6_beta.pdf","fileSize":1550120,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server User Management v10.6 Beta","displayName":"Mac OS X Server User Management v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/user_management_v10.6_beta.pdf","fileSize":2538055,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Address Book Server Administration v10.6 Beta","displayName":"Mac OS X Server Address Book Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/address_bk_server_admin_v10.6_beta.pdf","fileSize":407254,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Web Technologies Administration v10.6 Beta","displayName":"Mac OS X Server Web Technologies Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/web_technologies_admin_v10.6_beta.pdf","fileSize":809920,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Introduction to Command-Line Administration v10.6 Beta","displayName":"Introduction to Command-Line Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/intro_to_cmd_line_admin_v10.6_beta.pdf","fileSize":346449,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Wiki Tools Deployment Guide v10.6 Beta","displayName":"Mac OS X Server Wiki Tools Deployment Guide v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/wiki_tools_deployment_guide_v10.6_beta.pdf","fileSize":1797459,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Open Directory Administration v10.6 Beta","displayName":"Mac OS X Server Open Directory Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/open_directory_admin_v10.6_beta.pdf","fileSize":3369993,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Wiki Server Administration v10.6 Beta","displayName":"Mac OS X Server Wiki Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/wiki_server_admin_v10.6_beta.pdf","fileSize":1292115,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server iCal Server Administration v10.6 Beta","displayName":"Mac OS X Server iCal Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/ical_server_admin_v10.6_beta.pdf","fileSize":783554,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Xgrid Administration and High Performance Computing v10.6 Beta","displayName":"Mac OS X Server Xgrid Administration and High Performance Computing v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/xgrid_admin_and_hpc_v10.6_beta.pdf","fileSize":1508124,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server iChat Server Administration v10.6 Beta","displayName":"Mac OS X Server iChat Server Administration v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/ichat_server_admin_v10.6_beta.pdf","fileSize":456179,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Podcast Composer v10.6 Beta","displayName":"Mac OS X Server Podcast Composer v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/podcast_composer_ug_v10.6_beta.pdf","fileSize":331015,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Mac OS X Server Getting Started v10.6 Beta","displayName":"Mac OS X Server Getting Started v10.6 Beta","remotePath":"/Mac_OS_X_Server/mac_os_x_server_documentation_suite/getting_started_v10.6_beta.pdf","fileSize":6693155,"sortOrder":1,"dateCreated":"06/08/09 18:45","dateModified":"06/08/09 18:45","fileFormat":{"extension":".pdf","description":"PDF"}}]},{"name":"Command Line Tools OS X 10.11 for Xcode 7.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"11/20/15 16:17","dateCreated":"11/13/19 15:24","dateModified":"11/13/19 16:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.11) for Xcode 7.2.dmg","displayName":"Command Line Tools (OS X 10.11) for Xcode 7.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.11_for_Xcode_7.2/Command_Line_Tools_OS_X_10.11_for_Xcode_7.2.dmg","fileSize":167339762,"sortOrder":0,"dateCreated":"11/13/19 23:24","dateModified":"11/14/19 00:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools OS X 10.10 for Xcode 7.2","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"11/20/15 16:17","dateCreated":"11/13/19 15:25","dateModified":"11/13/19 16:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.10) for Xcode 7.2.dmg","displayName":"Command Line Tools (OS X 10.10) for Xcode 7.2","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.10_for_Xcode_7.2/Command_Line_Tools_OS_X_10.10_for_Xcode_7.2.dmg","fileSize":164786427,"sortOrder":0,"dateCreated":"11/13/19 23:25","dateModified":"11/14/19 00:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.2","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"11/20/15 16:18","dateCreated":"11/13/19 15:25","dateModified":"11/13/19 16:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.2.dmg","displayName":"Xcode 7.2","remotePath":"/Developer_Tools/Xcode_7.2/Xcode_7.2.dmg","fileSize":4591512140,"sortOrder":0,"dateCreated":"11/13/19 23:25","dateModified":"11/14/19 00:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.2.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"01/28/16 12:51","dateCreated":"11/13/19 15:40","dateModified":"11/13/19 16:13","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.2.1.dmg","displayName":"Xcode 7.2.1","remotePath":"/Developer_Tools/Xcode_7.2.1/Xcode_7.2.1.dmg","fileSize":4591829253,"sortOrder":0,"dateCreated":"11/13/19 23:40","dateModified":"11/14/19 00:13","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Command Line Tools (OS X 10.11) for Xcode 7.3","description":"This package enables UNIX-style development via Terminal by installing command line developer tools, as well as OS X SDK frameworks and headers. Many useful tools are included, such as the Apple LLVM compiler, linker, and Make. If you use Xcode, these tools are also embedded within the Xcode IDE.","isReleased":1,"datePublished":"03/21/16 12:28","dateCreated":"11/13/19 15:46","dateModified":"11/13/19 16:11","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Command Line Tools (OS X 10.11) for Xcode 7.3.dmg","displayName":"Command Line Tools (OS X 10.11) for Xcode 7.3","remotePath":"/Developer_Tools/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3/Command_Line_Tools_OS_X_10.11_for_Xcode_7.3.dmg","fileSize":180450297,"sortOrder":0,"dateCreated":"11/13/19 23:46","dateModified":"11/14/19 00:11","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.3","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"03/21/16 16:12","dateCreated":"11/13/19 15:47","dateModified":"11/13/19 16:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.3.dmg","displayName":"Xcode 7.3","remotePath":"/Developer_Tools/Xcode_7.3/Xcode_7.3.dmg","fileSize":5047652942,"sortOrder":0,"dateCreated":"11/13/19 23:47","dateModified":"11/14/19 00:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 7.3.1","description":"This is the complete Xcode developer toolset for Apple Watch, Apple TV, iPhone, iPad, and Mac. It includes the Xcode IDE, iOS Simulator, and all required tools and frameworks for building iOS, watchOS, tvOS and OS X apps.","isReleased":1,"datePublished":"05/03/16 10:00","dateCreated":"11/13/19 15:58","dateModified":"11/13/19 16:14","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 7.3.1.dmg","displayName":"Xcode 7.3.1","remotePath":"/Developer_Tools/Xcode_7.3.1/Xcode_7.3.1.dmg","fileSize":5050193754,"sortOrder":0,"dateCreated":"11/13/19 23:58","dateModified":"11/14/19 00:14","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.1.3 Developer Tools","description":"Xcode 3.1.3 is an update release of the developer tools for Mac OS X. This release provides additional GCC and LLVM compiler options, general bug fixes, and must be installed on Leopard, Mac OS X 10.5.0 and higher. Xcode defaults to upgrading an existing Xcode installation, but may optionally be installed along side existing Xcode installations. See the accompanying release notes for detailed installation instructions, known issues, and security advisories.","isReleased":0,"datePublished":null,"dateCreated":"06/17/09 05:04","dateModified":"06/17/09 06:05","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"About Xcode 3.1.3","displayName":"About Xcode 3.1.3","remotePath":"/Developer_Tools/xcode_3.1.3_developer_tools/about_xcode_tools_3.1.3.pdf","fileSize":78098,"sortOrder":1,"dateCreated":"06/17/09 12:04","dateModified":"06/17/09 13:05","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"Xcode 3.1.3 Developer DVD","displayName":"Xcode 3.1.3 Developer DVD","remotePath":"/Developer_Tools/xcode_3.1.3_developer_tools/xcode313_2736_developerdvd.dmg","fileSize":1042994110,"sortOrder":1,"dateCreated":"06/17/09 12:04","dateModified":"06/17/09 13:05","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.11.4 build 15E65","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"03/29/16 16:06","dateCreated":"03/29/16 15:48","dateModified":"03/29/16 16:06","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.11.4 build 15E65.dmg","displayName":"Kernel Debug Kit 10.11.4 build 15E65","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.11.4_build_15E65/Kernel_Debug_Kit_10.11.4_build_15E65.dmg","fileSize":57456225,"sortOrder":0,"dateCreated":"03/29/16 22:55","dateModified":"03/29/16 23:06","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernal Debug Kit 10.15.2 build 19C39d","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/13/19 13:00","dateCreated":"11/13/19 18:04","dateModified":"11/13/19 19:41","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernal Debug Kit 10.15.2 build 19C39d.dmg","displayName":"Kernal Debug Kit 10.15.2 build 19C39d","remotePath":"/Developer_Tools/Kernal_Debug_Kit_10.15.2_build_19C39d/Kernal_Debug_Kit_10.15.2_build_19C39d.dmg","fileSize":91063765,"sortOrder":0,"dateCreated":"11/14/19 02:05","dateModified":"11/14/19 03:41","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.2 build 17C88","description":"This package contains development & debug versions of the OS X kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal OS X installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":1,"datePublished":"12/06/17 14:07","dateCreated":"12/06/17 13:44","dateModified":"12/06/17 14:07","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Kernel Debug Kit 10.13.2 build 17C88.dmg","displayName":"Kernel Debug Kit 10.13.2 build 17C88","remotePath":"/macOS/Kernel_Debug_Kit_10.13.2_build_17C88/Kernel_Debug_Kit_10.13.2_build_17C88.dmg","fileSize":63846684,"sortOrder":0,"dateCreated":"12/06/17 22:01","dateModified":"12/06/17 22:07","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G10012","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/13/19 13:00","dateCreated":"11/14/19 14:06","dateModified":"11/14/19 14:49","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G10012.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G10012","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G10012/Kernel_Debug_Kit_10.13.6_build_17G10012.dmg","fileSize":73100912,"sortOrder":0,"dateCreated":"11/14/19 22:22","dateModified":"11/14/19 22:49","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"ODBC Administrator Tool for Mac OS X","description":"Enables database administration of ODBC-compliant data sources. Features include connection pooling, trace log creation, and ODBC driver management, among other administration features.","isReleased":0,"datePublished":null,"dateCreated":"07/15/09 08:58","dateModified":"07/15/09 08:58","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":247,"name":"Applications","sortOrder":5}],"files":[{"filename":"ODBC Administrator Tool for Mac OS X","displayName":"ODBC Administrator Tool for Mac OS X","remotePath":"/Developer_Tools/odbc_administrator_tool_for_mac_os_x/odbc_administrator_tool_for_mac_os_x.dmg","fileSize":5378888,"sortOrder":1,"dateCreated":"07/15/09 15:58","dateModified":"07/15/09 15:58","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"IOUSBFamily Log release for Mac OS X 10.5.8 Build 9L30","description":"This package provides an IOUSBFamily with logging enabled for Mac OS X 10.5.8 9L30 release. If problems are found with USB device drivers or applications, install this logging version to enable IOUSBFamily log messages using the USB Prober application. The USB Prober application can be found on the local hard drive at /Developer/Applications/Utilities/USB Prober.","isReleased":1,"datePublished":null,"dateCreated":"08/05/09 09:21","dateModified":"08/05/09 17:37","categories":[{"id":14,"name":"macOS","sortOrder":70},{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"IOUSBFamily-349.4.3-log","displayName":"IOUSBFamily-349.4.3-log","remotePath":"/Developer_Tools/iousbfamily_log_release_for_mac_os_x_10.5.8_build_9l30/iousbfamily349.4.3_log.dmg","fileSize":3445174,"sortOrder":1,"dateCreated":"08/06/09 00:37","dateModified":"08/06/09 00:37","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Xcode 3.0","description":"Xcode 3.0 is the Mac OS X 10.5 (Leopard) developer tool set, including the Xcode IDE, Instruments, Interface Builder 3, and the rest of the developer tools. Xcode 3 defaults to install in /Developer, but on Leopard you may now install the tools in a location of your choice; see the release notes for details.","isReleased":1,"datePublished":null,"dateCreated":"10/26/07 06:23","dateModified":"10/26/07 06:23","categories":[{"id":187,"name":"Developer Tools","sortOrder":28}],"files":[{"filename":"Xcode 3.0 Release Notes","displayName":"Xcode 3.0 Release Notes","remotePath":"/Developer_Tools/xcode_3.0/xcode_3.0_release_notes.pdf","fileSize":277236,"sortOrder":1,"dateCreated":"10/06/15 22:23","dateModified":"10/06/15 22:25","fileFormat":{"extension":".pdf","description":"PDF"}},{"filename":"xcode_3.0.dmg","displayName":"xcode_3.0","remotePath":"/Developer_Tools/xcode_3.0/xcode_3.0.dmg","fileSize":1249928008,"sortOrder":0,"dateCreated":"10/06/15 22:23","dateModified":"10/06/15 22:25","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.15.2 build 19C46a","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/20/19 10:00","dateCreated":"11/20/19 15:58","dateModified":"03/11/20 08:27","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.15.2 build 19C46a.dmg","displayName":"Kernel Debug Kit 10.15.2 build 19C46a","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.15.2_build_19C46a/Kernel_Debug_Kit_10.15.2_build_19C46a.dmg","fileSize":91067694,"sortOrder":0,"dateCreated":"11/20/19 23:59","dateModified":"03/11/20 15:27","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.14.6 build 18G2016","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/20/19 10:00","dateCreated":"11/20/19 16:01","dateModified":"11/20/19 16:09","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.14.6 build 18G2016.dmg","displayName":"Kernel Debug Kit 10.14.6 build 18G2016","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.14.6_build_18G2016/Kernel_Debug_Kit_10.14.6_build_18G2016.dmg","fileSize":83124146,"sortOrder":0,"dateCreated":"11/21/19 00:02","dateModified":"11/21/19 00:09","fileFormat":{"extension":".dmg","description":"Disk Image"}}]},{"name":"Kernel Debug Kit 10.13.6 build 17G10017","description":"This package contains development & debug versions of the macOS kernel and many I/O Kit families for use with LLDB remote (two-machine) kernel debugging. These files contain full symbolic information, unlike the equivalent files in a normal macOS installation. Also included are LLDB macros useful for kernel debugging and DEVELOPMENT (for every day use) and DEBUG (for much more error checking) kernels built with more assertions and fewer compiler optimizations.","isReleased":0,"datePublished":"11/20/19 10:00","dateCreated":"11/20/19 16:03","dateModified":"11/20/19 16:08","categories":[{"id":187,"name":"Developer Tools","sortOrder":28},{"id":14,"name":"macOS","sortOrder":70}],"files":[{"filename":"Kernel Debug Kit 10.13.6 build 17G10017.dmg","displayName":"Kernel Debug Kit 10.13.6 build 17G10017","remotePath":"/Developer_Tools/Kernel_Debug_Kit_10.13.6_build_17G10017/Kernel_Debug_Kit_10.13.6_build_17G10017.dmg","fileSize":73095006,"sortOrder":0,"dateCreated":"11/21/19 00:04","dateModified":"11/21/19 00:08","fileFormat":{"extension":".dmg","description":"Disk Image"}}]}]}
@@ -1,103 +1,106 @@
1
1
  require File.expand_path('../spec_helper', __FILE__)
2
2
 
3
3
  module XcodeInstall
4
- describe '#fetch' do
5
- before do
6
- client = mock
7
- client.stubs(:cookie).returns('customCookie')
8
- Spaceship::PortalClient.stubs(:login).returns(client)
9
- end
10
-
11
- it 'downloads the file and calls the `progress_block` with the percentage' do
12
- installer = Installer.new
13
-
14
- xcode = XcodeInstall::Xcode.new('name' => 'Xcode 9.3',
15
- 'files' => [{
16
- 'remotePath' => '/Developer_Tools/Xcode_9.3/Xcode_9.3.xip'
17
- }])
18
-
19
- installer.stubs(:fetch_seedlist).returns([xcode])
20
-
21
- stdin = 'stdin'
22
- stdout = 'stdout'
23
- stderr = 'stderr'
24
- wait_thr = 'wait_thr'
25
-
26
- stdin.stubs(:close)
27
- stdout.stubs(:close)
28
- stderr.stubs(:close)
29
-
30
- current_time = '123123'
31
- Time.stubs(:now).returns(current_time)
32
-
33
- xip_path = File.join(File.expand_path('~'), '/Library/Caches/XcodeInstall/Xcode_9.3.xip')
34
- progress_log_file = File.join(File.expand_path('~'), "/Library/Caches/XcodeInstall/progress.#{current_time}.progress")
35
-
36
- command = [
37
- 'curl',
38
- '--disable',
39
- '--cookie customCookie',
40
- '--cookie-jar /tmp/curl-cookies.txt',
41
- '--retry 3',
42
- '--location',
43
- '--continue-at -',
44
- "--output #{xip_path}",
45
- 'https://developer.apple.com/devcenter/download.action\\?path\\=/Developer_Tools/Xcode_9.3/Xcode_9.3.xip',
46
- "2> #{progress_log_file}"
47
- ]
48
- Open3.stubs(:popen3).with(command.join(' ')).returns([stdin, stdout, stderr, wait_thr])
49
-
50
- wait_thr.stubs(:alive?).returns(true)
51
-
52
- thr_value = 'thr_value'
53
- wait_thr.stubs(:value).returns(thr_value)
54
- thr_value.stubs(:success?).returns(true)
55
-
56
- installer.stubs(:install_dmg).with(Pathname.new(xip_path), '-9.3', false, false)
57
-
58
- Thread.new do
59
- sleep(1)
60
- File.write(progress_log_file, ' 0 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
61
- sleep(1)
62
- File.write(progress_log_file, ' 5 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
63
- sleep(1)
64
- File.write(progress_log_file, '50 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
65
- sleep(1)
66
- File.write(progress_log_file, '100 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
67
- sleep(0.5)
68
- wait_thr.stubs(:alive?).returns(false)
69
- end
70
-
71
- percentages = []
72
- installer.install_version(
73
- # version: the version to install
74
- '9.3',
75
- # `should_switch
76
- false,
77
- # `should_clean`
78
- false, # false for now for faster debugging
79
- # `should_install`
80
- true,
81
- # `progress`
82
- false,
83
- # `url` is nil, as we don't have a custom source
84
- nil,
85
- # `show_release_notes` is `false`, as this is a non-interactive machine
86
- false,
87
- # `progress_block` be updated on the download progress
88
- proc do |percent|
89
- percentages << percent
90
- end
91
- )
92
-
93
- percentages.each do |current_percent|
94
- # Verify all reported percentages are between 0 and 100
95
- current_percent.should.be.close(50, 50)
96
- end
97
- # Verify we got a good amount of percentages reported
98
- percentages.count.should.be.close(8, 4)
99
- end
100
- end
4
+ #
5
+ # FIXME: This test randomely fail on GitHub Actions.
6
+ #
7
+ # describe '#fetch' do
8
+ # before do
9
+ # client = mock
10
+ # client.stubs(:cookie).returns('customCookie')
11
+ # Spaceship::PortalClient.stubs(:login).returns(client)
12
+ # end
13
+
14
+ # it 'downloads the file and calls the `progress_block` with the percentage' do
15
+ # installer = Installer.new
16
+
17
+ # xcode = XcodeInstall::Xcode.new('name' => 'Xcode 9.3',
18
+ # 'files' => [{
19
+ # 'remotePath' => '/Developer_Tools/Xcode_9.3/Xcode_9.3.xip'
20
+ # }])
21
+
22
+ # installer.stubs(:fetch_seedlist).returns([xcode])
23
+
24
+ # stdin = 'stdin'
25
+ # stdout = 'stdout'
26
+ # stderr = 'stderr'
27
+ # wait_thr = 'wait_thr'
28
+
29
+ # stdin.stubs(:close)
30
+ # stdout.stubs(:close)
31
+ # stderr.stubs(:close)
32
+
33
+ # current_time = '123123'
34
+ # Time.stubs(:now).returns(current_time)
35
+
36
+ # xip_path = File.join(File.expand_path('~'), '/Library/Caches/XcodeInstall/Xcode_9.3.xip')
37
+ # progress_log_file = File.join(File.expand_path('~'), "/Library/Caches/XcodeInstall/progress.#{current_time}.progress")
38
+
39
+ # command = [
40
+ # 'curl',
41
+ # '--disable',
42
+ # '--cookie customCookie',
43
+ # '--cookie-jar /tmp/curl-cookies.txt',
44
+ # '--retry 3',
45
+ # '--location',
46
+ # '--continue-at -',
47
+ # "--output #{xip_path}",
48
+ # 'https://developer.apple.com/devcenter/download.action\\?path\\=/Developer_Tools/Xcode_9.3/Xcode_9.3.xip',
49
+ # "2> #{progress_log_file}"
50
+ # ]
51
+ # Open3.stubs(:popen3).with(command.join(' ')).returns([stdin, stdout, stderr, wait_thr])
52
+
53
+ # wait_thr.stubs(:alive?).returns(true)
54
+
55
+ # thr_value = 'thr_value'
56
+ # wait_thr.stubs(:value).returns(thr_value)
57
+ # thr_value.stubs(:success?).returns(true)
58
+
59
+ # installer.stubs(:install_dmg).with(Pathname.new(xip_path), '-9.3', false, false)
60
+
61
+ # Thread.new do
62
+ # sleep(1)
63
+ # File.write(progress_log_file, ' 0 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
64
+ # sleep(1)
65
+ # File.write(progress_log_file, ' 5 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
66
+ # sleep(1)
67
+ # File.write(progress_log_file, '50 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
68
+ # sleep(1)
69
+ # File.write(progress_log_file, '100 4766M 0 6835k 0 0 573k 0 2:21:58 0:00:11 2:21:47 902k')
70
+ # sleep(0.5)
71
+ # wait_thr.stubs(:alive?).returns(false)
72
+ # end
73
+
74
+ # percentages = []
75
+ # installer.install_version(
76
+ # # version: the version to install
77
+ # '9.3',
78
+ # # `should_switch
79
+ # false,
80
+ # # `should_clean`
81
+ # false, # false for now for faster debugging
82
+ # # `should_install`
83
+ # true,
84
+ # # `progress`
85
+ # false,
86
+ # # `url` is nil, as we don't have a custom source
87
+ # nil,
88
+ # # `show_release_notes` is `false`, as this is a non-interactive machine
89
+ # false,
90
+ # # `progress_block` be updated on the download progress
91
+ # proc do |percent|
92
+ # percentages << percent
93
+ # end
94
+ # )
95
+
96
+ # percentages.each do |current_percent|
97
+ # # Verify all reported percentages are between 0 and 100
98
+ # current_percent.should.be.close(50, 50)
99
+ # end
100
+ # # Verify we got a good amount of percentages reported
101
+ # percentages.count.should.be.close(8, 4)
102
+ # end
103
+ # end
101
104
 
102
105
  describe '#find_xcode_version' do
103
106
  it 'should find the one with the matching name' do
@@ -105,17 +108,19 @@ module XcodeInstall
105
108
 
106
109
  xcodes = [
107
110
  XcodeInstall::Xcode.new('name' => '11.4 beta 2',
108
- 'files' => [{
109
- 'remotePath' => '/Developer_Tools/Xcode_11.4_beta_2/Xcode_11.4_beta_2.xip'
110
- }]),
111
+ 'dateModified' => '12/11/19 14:28',
112
+ 'files' => [{
113
+ 'remotePath' => '/Developer_Tools/Xcode_11.4_beta_2/Xcode_11.4_beta_2.xip'
114
+ }]),
111
115
  XcodeInstall::Xcode.new('name' => '11.4',
112
- 'files' => [{
113
- 'remotePath' => '/Developer_Tools/Xcode_11.4/Xcode_11.4.xip'
114
- }])
116
+ 'dateModified' => '12/15/19 11:28',
117
+ 'files' => [{
118
+ 'remotePath' => '/Developer_Tools/Xcode_11.4/Xcode_11.4.xip'
119
+ }])
115
120
  ]
116
121
 
117
122
  installer.stubs(:fetch_seedlist).returns(xcodes)
118
- installer.find_xcode_version("11.4").name.should.be.equal("11.4")
123
+ installer.find_xcode_version('11.4').name.should.be.equal('11.4')
119
124
  end
120
125
  end
121
126
  end