-
-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chatty not opening automatically #246
Comments
Hi. Setting a custom chat application in the settings with the whole parameter string should always work. See the link above for the used chatty command line... If you want, you could debug the chat launch methods: Then set a breakpoint in this line: The first one is responsible for the java fallback paths and what I'd like to know is the value of the |
Yeah, I was not thinking and assuming a non-minified build, sorry... 😜 It could also be enough to quickly check |
I feel very stupid as I am unable to do both things. I am able to open the console, but not seeing anything there resembling a process.env. I just get a white screen that will throw an "im not a subscriber" error if I open a stream. As for the steps, I really got stuck on the grunt piece. Probably because I am not that github savy. |
You need to write Well, I can't help you if you're having issues building the app. Just install Git and Node.js (with NPM) on your system, clone the repo and run the commands, it's pretty simple. git clone https://github.com/bastimeyer/livestreamer-twitch-gui
cd livestreamer-twitch-gui
sudo npm install -g grunt-cli bower
npm install
grunt metadata less:source run:src |
Thanks for bearing with me. I typed in process.env and I do not see $JAVA_HOME or $JRE_HOME under the Object heading. And thanks for those instructions, I was able to build the app using those steps. Not sure if it's worth doing anything else though if I'm not seeing what I'm supposed to be seeing with process.env. |
What's the value of these vars in your user's env? (type As I've said earlier, OSX replaces certain env vars in some applications. This was reported in #55 and the issue was Now that you are able to run the unminified build, could you please set the breakpoints I've mentioned above? Thanks. Also, could you please tell me the OSX version you are using? |
I typed in echo for both of them and they came up blank. I was able to set the both as the following and they are now showing up in the process.env:
I'm pretty sure JAVA_HOME is set correctly, but I couldn't find better information on where to set JRE_HOME to. Regardless, they are both appearing in process.env but chat is still not opening. I tried setting the breakpoints, but it doesn't appear to ever be hitting them. When opening up a stream or hitting the chat button, I never get paused at a breakpoint (as far as I can tell). |
Ignore the previous screenshot/breakpoint comment. I set them correctly this time and it halts at the second breakpoint.
I'm pretty sure that location does not exist. |
It's finding the java executable, which means that the next step is the validation of the chatty .jar file. At this point, you must have set the wrong path to the file or the file doesn't have the proper permissions set. I will implement error messages for these kind of errors in the future. This was not possible with the old modal-dialog system, but it's easy to implement with the new one I have added a few releases ago. Kind of forgot that. |
Thanks for your help, it is working now! I had JDK 1.6 installed. I had to install JDK 1.8 and point my JAVA_HOME to that path instead of the 1.6 path and then it worked. Apparently the Java versioning for the terminal was incorrect. |
👍 |
Hi, first of all, thanks for your product. It is wonderful!
I am having an issue getting Chatty to open automatically on my Mac. I have the settings pointed to the Chatty.jar file in the Chatty folder. Double clicking on the .jar file opens Chatty just fine, but for some reason Livestreamer does nothing when opening a stream or clicking on the chat button for a stream. I've tried putting the Chatty folder containing the jar everywhere including my Desktop so I don't think it's a permissions issue. I have the latest version of Chatty (.0.8.2) and Livestreamer (0.13.0). Any tips?
Thanks,
Dan
The text was updated successfully, but these errors were encountered: