My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 22, 2009
    issue 26 (Itunes 9 codefix) commented on by mammothman42   -   I'm not sure how to reply to mark.reddick, but the underlying representation of an array is just a pointer to the beginning of the array, with the offset of the size of the data added in order to access a specific index in the array, so if you pass the same array as an IntPtr, it will accomplish exactly the same thing.
    I'm not sure how to reply to mark.reddick, but the underlying representation of an array is just a pointer to the beginning of the array, with the offset of the size of the data added in order to access a specific index in the array, so if you pass the same array as an IntPtr, it will accomplish exactly the same thing.

Older

  • Sep 18, 2009
    issue 26 (Itunes 9 codefix) commented on by lavarsicious   -   It absolutely did, in fact I was just writing a quick thank you for pointing me in the right direction.
    It absolutely did, in fact I was just writing a quick thank you for pointing me in the right direction.
  • Sep 18, 2009
    issue 26 (Itunes 9 codefix) commented on by Deisama   -   Cool! I hope my solution helped you out :)
    Cool! I hope my solution helped you out :)
  • Sep 18, 2009
    issue 26 (Itunes 9 codefix) commented on by lavarsicious   -   FIX: iTunes 9 Support! Attached over at iPhoneBrowser project: http://code.google.com/p/iphonebrowser/issues/detail?id=144
    FIX: iTunes 9 Support! Attached over at iPhoneBrowser project: http://code.google.com/p/iphonebrowser/issues/detail?id=144
  • Sep 18, 2009
    issue 26 (Itunes 9 codefix) commented on by lavarsicious   -   I've got a full working fix, will be cleaning it up and attaching shortly.
    I've got a full working fix, will be cleaning it up and attaching shortly.
  • Sep 14, 2009
    issue 26 (Itunes 9 codefix) commented on by mark.reddick   -   I tried implementing this fix but I don't understand how we can call the __CFStringMakeConstantString for the second param of AMDeviceStartService as that requires a byte array (or a string), not an IntPtr which is what __CFStringMakeConstantString returns.
    I tried implementing this fix but I don't understand how we can call the __CFStringMakeConstantString for the second param of AMDeviceStartService as that requires a byte array (or a string), not an IntPtr which is what __CFStringMakeConstantString returns.
  • Sep 13, 2009
    issue 26 (Itunes 9 codefix) commented on by Dsilva2420   -   could somebody pst the files. for those of use that dont know how to fix please!!!!
    could somebody pst the files. for those of use that dont know how to fix please!!!!
  • Sep 13, 2009
    issue 26 (Itunes 9 codefix) commented on by sturm.net   -   Nice fix, thanks
    Nice fix, thanks
  • Sep 12, 2009
    issue 26 (Itunes 9 codefix) commented on by Dsilva2420   -   love thi program but i dont know how to fix could you let use know how to do this please!!!!
    love thi program but i dont know how to fix could you let use know how to do this please!!!!
  • Sep 12, 2009
    issue 26 (Itunes 9 codefix) reported by Deisama   -   I don't have time to learn how to submit a code change, but in the spirit of open source, I thought I should at least report how to fix the problem. change StringToCFString to: public static byte[] StringToCFString(string value) { byte[] bytes = new byte[value.Length + 1]; Encoding.ASCII.GetBytes(value, 0, value.Length, bytes, 0); return bytes; } Add "CoreFoundation.dll import to top: [DllImport("CoreFoundation.dll", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr __CFStringMakeConstantString(byte[] s); Whenever you call StringToCFString, call __CFStringMakeConstantString on the result so: MobileDevice.AMDeviceStartService(ref iPhoneHandle, MobileDevice.__CFStringMakeConstantString(MobileDevice.StringToCFString("com.apple.afc")), ref hAFC, IntPtr.Zero) Hope that helps! And thank you so much for writing this wonderful API for everyone to use!
    I don't have time to learn how to submit a code change, but in the spirit of open source, I thought I should at least report how to fix the problem. change StringToCFString to: public static byte[] StringToCFString(string value) { byte[] bytes = new byte[value.Length + 1]; Encoding.ASCII.GetBytes(value, 0, value.Length, bytes, 0); return bytes; } Add "CoreFoundation.dll import to top: [DllImport("CoreFoundation.dll", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr __CFStringMakeConstantString(byte[] s); Whenever you call StringToCFString, call __CFStringMakeConstantString on the result so: MobileDevice.AMDeviceStartService(ref iPhoneHandle, MobileDevice.__CFStringMakeConstantString(MobileDevice.StringToCFString("com.apple.afc")), ref hAFC, IntPtr.Zero) Hope that helps! And thank you so much for writing this wonderful API for everyone to use!
  • Sep 10, 2009
    issue 25 (Not work in Windows 7 Ultimate!) reported by bridda   -   To do for work?
    To do for work?
  • Sep 10, 2009
    issue 24 (Fails to run following iTunes 9 install.) reported by benson.n...@yahoo.co.uk   -   What steps will reproduce the problem? 1. Install iTunes 9 2. build / run manzana 3. v10 - Win Vista and Win 7 What is the expected output? What do you see instead? Nothing happens, manzana crashes. What version of the product are you using? On what operating system? V10, Win 7 & Win Vista Please provide any additional information below. Fails on MobileDevice.AMDeviceConnect(ref iPhoneHandle)
    What steps will reproduce the problem? 1. Install iTunes 9 2. build / run manzana 3. v10 - Win Vista and Win 7 What is the expected output? What do you see instead? Nothing happens, manzana crashes. What version of the product are you using? On what operating system? V10, Win 7 & Win Vista Please provide any additional information below. Fails on MobileDevice.AMDeviceConnect(ref iPhoneHandle)
  • Aug 23, 2009
    issue 18 (Unable to install manzana on windows XP) commented on by ethancall   -   You need to copy iTunesMobileDevice.dll to the same directory first. This dll should be somewhere on your pc (comes with itunes).
    You need to copy iTunesMobileDevice.dll to the same directory first. This dll should be somewhere on your pc (comes with itunes).
  • Aug 23, 2009
    issue 14 (Manzana does not startup.) commented on by ethancall   -   You need to copy iTunesMobileDevice.dll to the same directory first. This dll should be somewhere on your pc (comes with itunes).
    You need to copy iTunesMobileDevice.dll to the same directory first. This dll should be somewhere on your pc (comes with itunes).
  • Aug 10, 2009
    issue 23 (Incorrect support non-ASCII names) reported by Andrey.V.Ivanov   -   I just did a quick patch for iphonebrowser for this issue. Please see http://code.google.com/p/iphonebrowser/issues/detail?id=123. All changes affect MobileDevice.cs so you may want to port them to current version of code
    I just did a quick patch for iphonebrowser for this issue. Please see http://code.google.com/p/iphonebrowser/issues/detail?id=123. All changes affect MobileDevice.cs so you may want to port them to current version of code
  • Jul 10, 2009
    issue 22 (iPhone.isConnected goes to false, after iPhoneFile members w...) reported by Zorg_...@mail.ru   -   What steps will reproduce the problem? 1. New Instance of iPhone class (phone) 2. phone.isConnected is true 3. iPhoneFile file = iPhoneFile.OpenRead(phone, here goes some path); 4. phone.isConnected is false What is the expected output? What do you see instead? phone.isConnected is true all time while iPhone is connected to computer What version of the product are you using? On what operating system? XP/MS Server 2003, .Net Framework 2.0, iTunes 8.1/8.2 but iTunesMobileDevice from 7.6 ver. manzana Heade Please provide any additional information below. It's a bug or a....?
    What steps will reproduce the problem? 1. New Instance of iPhone class (phone) 2. phone.isConnected is true 3. iPhoneFile file = iPhoneFile.OpenRead(phone, here goes some path); 4. phone.isConnected is false What is the expected output? What do you see instead? phone.isConnected is true all time while iPhone is connected to computer What version of the product are you using? On what operating system? XP/MS Server 2003, .Net Framework 2.0, iTunes 8.1/8.2 but iTunesMobileDevice from 7.6 ver. manzana Heade Please provide any additional information below. It's a bug or a....?
  • Jun 25, 2009
    issue 21 (How to copy file to PC?) commented on by nickfrey123   -   Look in the source of iphonebrowser (http://code.google.com/p/iphonebrowser) for some example code.
    Look in the source of iphonebrowser (http://code.google.com/p/iphonebrowser) for some example code.
  • Jun 16, 2009
    issue 18 (Unable to install manzana on windows XP) commented on by adanxeo   -   Hi there: I'm having the same problem. I'm running Windows XP Professional 2002 Service Pack 2 but when I try to initialize the DLL it says what I have attached in the images. Would you help me as I really need to download the files in my iphone because is full and I don't want to delete the videos since I need them. Thanks in advance.
    Hi there: I'm having the same problem. I'm running Windows XP Professional 2002 Service Pack 2 but when I try to initialize the DLL it says what I have attached in the images. Would you help me as I really need to download the files in my iphone because is full and I don't want to delete the videos since I need them. Thanks in advance.
  • May 31, 2009
    issue 21 (How to copy file to PC?) reported by duyphamsg   -   Hi all I want to copy file from iPhone to PC. Please help me. Tnanks
    Hi all I want to copy file from iPhone to PC. Please help me. Tnanks
  • May 31, 2009
    issue 18 (Unable to install manzana on windows XP) commented on by pxuanba   -   I am having the same problem. I am using Windows XP, Service Pack 2. I have .NET 3.5 installed.
    I am having the same problem. I am using Windows XP, Service Pack 2. I have .NET 3.5 installed.
  • Apr 11, 2009
    issue 18 (Unable to install manzana on windows XP) commented on by Zsinix   -   I am also having this issue. I have Windows XP Home with all current service packs including Service Pack 3.
    I am also having this issue. I have Windows XP Home with all current service packs including Service Pack 3.
  • Mar 30, 2009
    issue 20 (Manza not working on Windows Vista) reported by sabessg   -   Problem: Manzana don't work on Windows Vista Home Basic 32-bit, an error comes up: After i press ManzanaUI.exe, it says "Manzana has stopped working on" What steps will reproduce the problem? 1. Repeatedly opening the program 2. 3. What is the expected output? What do you see instead? iPhone, nothing. What version of the product are you using? On what operating system? r.10 Please provide any additional information below. See at the start of the issue.
    Problem: Manzana don't work on Windows Vista Home Basic 32-bit, an error comes up: After i press ManzanaUI.exe, it says "Manzana has stopped working on" What steps will reproduce the problem? 1. Repeatedly opening the program 2. 3. What is the expected output? What do you see instead? iPhone, nothing. What version of the product are you using? On what operating system? r.10 Please provide any additional information below. See at the start of the issue.
  • Mar 17, 2009
    issue 15 (Does not work with iTunes 8.) commented on by raok62   -   Problem is a newer/changed iTunesMobileDevice.dll. I have itunes 8.0.2.20, iTunesMobilDevice.dll 11/07/2008, v185.11.0.10. Pad the AMDevice struct and rebuild; works for me.
    Problem is a newer/changed iTunesMobileDevice.dll. I have itunes 8.0.2.20, iTunesMobilDevice.dll 11/07/2008, v185.11.0.10. Pad the AMDevice struct and rebuild; works for me.
  • Mar 12, 2009
    issue 19 (This software is terrible, it doesn't work, DO NOT USE IT!) commented on by joshrose54   -   You are obviously no good at coding becuase i based an extremely successful iPod to PC backup program based on this library. Neek
    You are obviously no good at coding becuase i based an extremely successful iPod to PC backup program based on this library. Neek
  • Feb 26, 2009
    issue 14 (Manzana does not startup.) commented on by duane.friedlander   -   same issue What steps will reproduce the problem? 1. Double click EXE 2. 3. What is the expected output? What do you see instead? GUI. Nothing What version of the product are you using? On what operating system? Latest version svn-r10 Please provide any additional information below. Using windows XP HE on sp 3. legacy iPhone on edge-network.
    same issue What steps will reproduce the problem? 1. Double click EXE 2. 3. What is the expected output? What do you see instead? GUI. Nothing What version of the product are you using? On what operating system? Latest version svn-r10 Please provide any additional information below. Using windows XP HE on sp 3. legacy iPhone on edge-network.
  • Feb 26, 2009
    issue 14 (Manzana does not startup.) commented on by j.roger.holstad   -   I have the same setup as the thread starter and i have the same problem to "/
    I have the same setup as the thread starter and i have the same problem to "/
  • Feb 26, 2009
    issue 14 (Manzana does not startup.) commented on by j.roger.holstad   -   I also have this problem
    I also have this problem
  • Feb 19, 2009
    issue 19 (This software is terrible, it doesn't work, DO NOT USE IT!) reported by iphoneman4   -   Just a warning to all. Don't waste your time with this, it's crap. Whoever wrote it doesn't know what they are doing, probably a couple of middle school kids for a school project.
    Just a warning to all. Don't waste your time with this, it's crap. Whoever wrote it doesn't know what they are doing, probably a couple of middle school kids for a school project.
  • Feb 13, 2009
    issue 18 (Unable to install manzana on windows XP) reported by raviuday   -   What steps will reproduce the problem? 1. On windows XP, i extracted latest manzana s/w using winzip 2. When I execute ManzanaUI.exe, I get error from windows 3. What is the expected output? What do you see instead? ManzanaUI has encountered a problem and needs to close. We are sorry for the inconvenience. What version of the product are you using? On what operating system? windows xp Please provide any additional information below. ManzanaUI has encountered a problem and needs to close. We are sorry for the inconvenience.
    What steps will reproduce the problem? 1. On windows XP, i extracted latest manzana s/w using winzip 2. When I execute ManzanaUI.exe, I get error from windows 3. What is the expected output? What do you see instead? ManzanaUI has encountered a problem and needs to close. We are sorry for the inconvenience. What version of the product are you using? On what operating system? windows xp Please provide any additional information below. ManzanaUI has encountered a problem and needs to close. We are sorry for the inconvenience.
  • Dec 22, 2008
    issue 14 (Manzana does not startup.) commented on by aberosales   -   having the same problem here.
    having the same problem here.
  • Dec 12, 2008
    issue 14 (Manzana does not startup.) commented on by cichonw   -   Having the same problem. After clicking twice on file "ManzanaUI.exe" I receive the following Application Error message: "The application failed to initialize properly (0x0000135). Click OK to terminate the application.
    Having the same problem. After clicking twice on file "ManzanaUI.exe" I receive the following Application Error message: "The application failed to initialize properly (0x0000135). Click OK to terminate the application.
  • Dec 07, 2008
    issue 14 (Manzana does not startup.) commented on by computerwiz560   -   having the same problem
    having the same problem
  • Dec 05, 2008
    issue 15 (Does not work with iTunes 8.) commented on by mongomail   -   someone please post the ver 7 file. Thanks...
    someone please post the ver 7 file. Thanks...
  • Nov 24, 2008
    issue 6 (Crashes instantly for user) commented on by Abulail   -   after tracing the crash the exception was iTunesMobileDevice.dll not found?
    after tracing the crash the exception was iTunesMobileDevice.dll not found?
  • Oct 13, 2008
    issue 15 (Does not work with iTunes 8.) commented on by mark.reddick   -   Same here, using the old version of iTunesMobileDevice.dll. It seems to be working fine.
    Same here, using the old version of iTunesMobileDevice.dll. It seems to be working fine.
  • Oct 12, 2008
    issue 15 (Does not work with iTunes 8.) commented on by roc...@swbell.net   -   Just a follow-up. Grabbed an old version of the iTunesMobileDevice.dll file, put it in the directory with the program files, and it works. As far as I can tell, there are no problems, but I haven't used it extensively. I forgot to add in the previous post that I'm using a 3G iPhone.
    Just a follow-up. Grabbed an old version of the iTunesMobileDevice.dll file, put it in the directory with the program files, and it works. As far as I can tell, there are no problems, but I haven't used it extensively. I forgot to add in the previous post that I'm using a 3G iPhone.
  • Oct 12, 2008
    issue 15 (Does not work with iTunes 8.) commented on by roc...@swbell.net   -   Ditto for me. iTunes 8 and Windows Vista Home Premium.Crashes as soon as iPhone is connected. If phone's connected before starting program, program crashes immediately upon start.
    Ditto for me. iTunes 8 and Windows Vista Home Premium.Crashes as soon as iPhone is connected. If phone's connected before starting program, program crashes immediately upon start.
  • Sep 30, 2008
    issue 15 (Does not work with iTunes 8.) commented on by lu...@dolejsky.com   -   Hi, I've run into the same issue. iTunesMobileDevice.dll from iTunes 7.6.x was fine, but file from iTunes 8 makes application crash as soon as the device is connected.
    Hi, I've run into the same issue. iTunesMobileDevice.dll from iTunes 7.6.x was fine, but file from iTunes 8 makes application crash as soon as the device is connected.
  • Sep 27, 2008
    issue 16 (Can't connect to any device) reported by joshrose54   -   What steps will reproduce the problem? 1. dim iphone as new manzana.iphone 2. if iphone.isConnected=true then me.text="true" else me.text="false" What is the expected output? What do you see instead? When i have the ipod plugged in it should say true, but it alway says false, not matter hwta, What version of the product are you using? On what operating system? r10, vista and XP(tested on both), VB 2008 Please provide any additional information below. All i need to do is connect to the device
    What steps will reproduce the problem? 1. dim iphone as new manzana.iphone 2. if iphone.isConnected=true then me.text="true" else me.text="false" What is the expected output? What do you see instead? When i have the ipod plugged in it should say true, but it alway says false, not matter hwta, What version of the product are you using? On what operating system? r10, vista and XP(tested on both), VB 2008 Please provide any additional information below. All i need to do is connect to the device
  • Sep 16, 2008
    issue 15 (Does not work with iTunes 8.) commented on by mark.reddick   -   I've found the same issue.
    I've found the same issue.
  • Sep 14, 2008
    issue 15 (Does not work with iTunes 8.) reported by ch...@lifeafterpod.co.uk   -   What steps will reproduce the problem? 1. Install iTunes 8 2. Run this program 3. View crash What is the expected output? What do you see instead? It works What version of the product are you using? On what operating system? Vista/Latest version. Please provide any additional information below. Problem is with hooking in to iTunesMobileDevice
    What steps will reproduce the problem? 1. Install iTunes 8 2. Run this program 3. View crash What is the expected output? What do you see instead? It works What version of the product are you using? On what operating system? Vista/Latest version. Please provide any additional information below. Problem is with hooking in to iTunesMobileDevice
  • Sep 10, 2008
    issue 12 (manzana stops working) commented on by Stefan.forwardtoiphone   -   same problem with vista
    same problem with vista
  • Sep 06, 2008
    issue 8 (Can not instantiate a new manzana.iphone) commented on by nickgatzgates   -   just do it this way. it works for me. You need to reference manzana.dll then go... Imports manzana Dim phone As New iphone
    just do it this way. it works for me. You need to reference manzana.dll then go... Imports manzana Dim phone As New iphone
  • Sep 05, 2008
    issue 14 (Manzana does not startup.) reported by and1mast...@hotmail.com   -   What steps will reproduce the problem? 1. Double click EXE 2. 3. What is the expected output? What do you see instead? GUI. Nothing What version of the product are you using? On what operating system? Latest version svn-r10 Please provide any additional information below. Using windows XP HE on sp 3. iPhone 3G.
    What steps will reproduce the problem? 1. Double click EXE 2. 3. What is the expected output? What do you see instead? GUI. Nothing What version of the product are you using? On what operating system? Latest version svn-r10 Please provide any additional information below. Using windows XP HE on sp 3. iPhone 3G.
 
Hosted by Google Code