Skip to content
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

Still crashing #839

Closed
ulope opened this issue Jun 18, 2019 · 6 comments
Closed

Still crashing #839

ulope opened this issue Jun 18, 2019 · 6 comments
Labels

Comments

@ulope
Copy link

ulope commented Jun 18, 2019

System

  • Amethyst version: 0.14.0 (72)
  • macOS version: 10.14.4

What's the problem?

Amethyst still crashes pretty often in what feels to be the same way as described in #829.

Crashlog:

https://ds.ulo.pe/LvODIZIr5M.crash

@0xTomTom
Copy link

0xTomTom commented Jul 8, 2019

I love this app, so first of all - thank you for creating it.
I experience these crashes also, most often when the CPU is maxed out it seems Amethyst crashes due to memory issues or something

@ulope
Copy link
Author

ulope commented Jul 10, 2019

@ianyh Does it help to submit more crash logs or is the one above sufficient?

@mabunday
Copy link

mabunday commented Jul 15, 2019

As a workaround to this issue I created a LaunchAgent script that restarts Amethyst if it's killed.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Label</key>
    <string>com.mabunday.keepAmethystAlive</string>
    <key>RunAtLoad</key>
    <true />
    <key>KeepAlive</key>
    <true />
    <key>Program</key>
    <string>/Applications/Amethyst.app/Contents/MacOS/Amethyst</string>
  </dict>
</plist>

@ianyh ianyh added the bug label Jul 31, 2019
@ianyh
Copy link
Owner

ianyh commented Aug 18, 2019

I think this specific crash is now fixed by #847 and out in the 0.14.1 beta. Others should get opened as separate issues.

@ianyh ianyh closed this as completed Aug 18, 2019
@ianyh
Copy link
Owner

ianyh commented Aug 18, 2019

@ulope more crash logs are generally a good idea. The logs I've gotten are actually not all the same crash.

@srnnkls
Copy link

srnnkls commented Oct 27, 2019

As a workaround to this issue I created a LaunchAgent script that restarts Amethyst if it's killed.

Better this way:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
		<key>Label</key>
		<string>com.amethyst.keepalive.plist</string>
		<key>RunAtLoad</key>
		<true />
		<key>KeepAlive</key>
		<dict>
			<key>SuccessfulExit</key>
			<false/>
		</dict>
		<key>Program</key>
		<string>/Applications/Amethyst.app/Contents/MacOS/Amethyst</string>
	</dict>
</plist>

This allows the user to manually quit Amethyst e.g. for updates.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants