FrancescoK Posted June 10, 2014 Share Posted June 10, 2014 Hello, I am currently running the Developer Preview 1 of OS X 10.10 Yosemite on one of my machines and POD Farm 2.57 flatly refuses to install on it. I managed to install it anyway using Pacifist, but I thought I'd report the bug (yes, I know, pre-release software etc.). :) 2 1 Quote Link to comment Share on other sites More sharing options...
skarasu Posted July 10, 2014 Share Posted July 10, 2014 Yes, I have the same problem with Monkey. I think the installation software thinks 10.10 is earlier than 10.9. So it appears they are checking the first digit after the period. Quote Link to comment Share on other sites More sharing options...
Jazz-2014 Posted July 16, 2014 Share Posted July 16, 2014 I can't downloads line6 edit for my mac yosemite please help me! Quote Link to comment Share on other sites More sharing options...
phil_m Posted July 16, 2014 Share Posted July 16, 2014 Yosemite's official release date isn't until Fall 2014... I guess I can't see Line 6 releasing anything for an OS that's not out of beta stage. Quote Link to comment Share on other sites More sharing options...
tylertetzloff Posted July 23, 2014 Share Posted July 23, 2014 Yosemite's official release date isn't until Fall 2014... I guess I can't see Line 6 releasing anything for an OS that's not out of beta stage. Actually while this is true, the public beta (meaning everyone will have this that can) will be release in just a couple of days. I would think that Line 6 would rather quickly add support for the OS than to have an influx of calls and tickets. The product runs fine on 10.10 but the installers and updaters are doing a system version check that is seemingly unnecessary for the 10.10 beta 4 that is currently out. Quote Link to comment Share on other sites More sharing options...
bcoffing Posted August 2, 2014 Share Posted August 2, 2014 I agree with: skarasu This isn't a matter of needing an entirely new driver. POD just understands 10.10 as 10.1 (because it's true...) This is an extremely simple fix for Line6 to handle... Please bump! 1 Quote Link to comment Share on other sites More sharing options...
TheRealZap Posted August 2, 2014 Share Posted August 2, 2014 why couldn't it be a matter of apple identifying it's software with 2 digits beyond the decimal point... the apple OS is in beta... why cant they fix their sh*t... why you got to put it all on software that totally works and has not been altered in the least.... i'm sure sooner or later it would be fixed... but apple is running an open beta... so why not get them to address it.... probably fix 100's of other software packages as well.... I agree with: skarasu This isn't a matter of needing an entirely new driver. POD just understands 10.10 as 10.1 (because it's true...) This is an extremely simple fix for Line6 to handle... Please bump! 1 Quote Link to comment Share on other sites More sharing options...
chiefs29b Posted August 9, 2014 Share Posted August 9, 2014 Hopefully this issue can be resolved - regardless of whom which fixes it - and in the most timely manner as possible. Naturally, everything I've been writing and recording has been done on my Mac, as well as where all of my samples are, and have had to suffice with creating tones on Windows, for now. For anyone considering the upgrade to 10.10, do not do it, unless you have a backup ready, and you're aware of the risk you run - this being an example. It was my own fault for upgrading and not considering 10.10 = 10.1 (especially since I write code), and that software may not run because of it. I've learned my lesson, that's for sure. Quote Link to comment Share on other sites More sharing options...
TheRealZap Posted September 2, 2014 Share Posted September 2, 2014 Just received confirmation, that Line6 is aware of this intends to have their software installers updated before the official release of Yosemite. Quote Link to comment Share on other sites More sharing options...
Andiferum Posted September 10, 2014 Share Posted September 10, 2014 That's good news - glad I'm not the only one experiencing difficulties with the software. Monkey & License Manager can't detect my new UX1 and I can't update any of them or the drivers due to the aforementioned issues! Quote Link to comment Share on other sites More sharing options...
FrancescoK Posted October 4, 2014 Author Share Posted October 4, 2014 Friends at Line6, I hope you realise that Apple seeded the Yosemite Golden Master early this week. Which means the release is not “soonâ€, it's imminent – within a week or two. I know you must be busy with more interesting and pressing work, but seriously. Fixing the one line of JavaScript in your package's distribution file's volume check function is not that hard. Why isn't it using the native system.compareVersions in the first place instead of faultily comparing strings like that (result = my.target.systemVersion.ProductVersion >= '10.5.0')? Love, a dedicated Mac user of yours. Quote Link to comment Share on other sites More sharing options...
FrancescoK Posted October 4, 2014 Author Share Posted October 4, 2014 For anybody who is wondering how to install any Line6 software until Line6 fixes this sadly super-trivial bug, here's what you can do: 1) Download all the Line6 software DMGs you need and keep them handy. 2) Download “Pacifist†(shareware) as zip from its homepage: https://www.charlessoft.com 3) Install Pacifist (though you don't even need to install Pacifist to /Applications as it works from any folder, including your Downloads folder). 4) Open Pacifist and click through the shareware information dialogs. 5) Once you have reached the main menu of Pacifist, click the first entry (Open Package). 6) Select the .DMG of the Line6 software you want to install that you downloaded previously. 7) Disclose the first level and select the .pkg you want to install, such as “Contents of POD Farm 2.pkg". Rather do this with the highest-level .pkg item you find rather than lower-level ones. 8) Right-click and select “Install to Default Locationâ€. Done. 2 Quote Link to comment Share on other sites More sharing options...
FrancescoK Posted October 4, 2014 Author Share Posted October 4, 2014 why couldn't it be a matter of apple identifying it's software with 2 digits beyond the decimal point... the apple OS is in beta... why cant they fix their sh*t... why you got to put it all on software that totally works and has not been altered in the least.... i'm sure sooner or later it would be fixed... but apple is running an open beta... so why not get them to address it.... probably fix 100's of other software packages as well.... To make this absolutely clear, this is a bug on Line6's part caused by how they check for the version number: function volumeCheck() { var result = false; try { result = my.target.systemVersion.ProductVersion >= '10.5.0'; } catch (e) {} if(!result) { my.result.type = 'Fatal'; my.result.title = 'System requirements not met.'; my.result.message = 'This software requires Mac OS X 10.5 or above'; } return result; } To compare versions, you shouldn't use a comparison operator with a string as they do but use the System method compareVersions, which returns “-1 when versionA is lower than versionB, 0 when versionA is equal to versionB, and 1 when versionA is higher than versionBâ€. I am not a Mac or JavaScript developer, just a designer, but it should probably be something along if(system.compareVersions(my.target.systemVersion.ProductVersion, '10.5') >= 0) { result = true; } Quote Link to comment Share on other sites More sharing options...
TheRealZap Posted October 4, 2014 Share Posted October 4, 2014 You didn't read the post where I confirmed with line6 that they've acknowledge and intend to fix this before release ... Quote Link to comment Share on other sites More sharing options...
TheRealZap Posted October 15, 2014 Share Posted October 15, 2014 Some Yosemite updates have been released, and others should be along shortly... but the updating has began. Quote Link to comment Share on other sites More sharing options...
danielmckee Posted October 31, 2014 Share Posted October 31, 2014 so are they out does anyone have a link? Quote Link to comment Share on other sites More sharing options...
knto_13 Posted November 16, 2014 Share Posted November 16, 2014 I'm also in the case I can't install line6edit on yosemite. when should the update be released ? Quote Link to comment Share on other sites More sharing options...
jdwilson1982 Posted November 21, 2014 Share Posted November 21, 2014 same problem. Quote Link to comment Share on other sites More sharing options...
roman_styx Posted March 10, 2015 Share Posted March 10, 2015 POD Farm 2.58.dmg gives an install error on Yosemite Fix it please!!! Quote Link to comment Share on other sites More sharing options...
anibalin Posted March 26, 2015 Share Posted March 26, 2015 Guys go to /System/Library/CoreServices Copy SystemVersion.plist to desktop. Open and edit: <key>ProductUserVisibleVersion</key> <string>10.10</string> <key>ProductVersion</key> <string>10.10</string> to 10.9 Save and put the file back to /CoreServices. Install Pod and when its done edit again to defaults value. 1 Quote Link to comment Share on other sites More sharing options...
freddymorales Posted August 23, 2015 Share Posted August 23, 2015 Guys go to /System/Library/CoreServices Copy SystemVersion.plist to desktop. Open and edit: <key>ProductUserVisibleVersion</key> <string>10.10</string> <key>ProductVersion</key> <string>10.10</string> to 10.9 Save and put the file back to /CoreServices. Install Pod and when its done edit again to defaults value. This works thanks. The thinks is you will have to save a copy system version.plist with the version( Example 10.10.4) when you restart the computer all the programs do not work. you have to use the copy and put it back on the /system/library/coreservices then open pod farm. don't forget to authorize then replace. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.