Deantwo

Results 22 issues of Deantwo

The overhunting extinction level event is the only event that does does not mention the stardate. This mostly just seems a little odd and inconsistent.

Added stardate to the overhunting extinction level event. Fixes #8

Prevent grey goo from destroying multiworld civilizations. Fixes #3 A separate event for Von Neumann probes (unmanned interstellar probes) becoming grey goo would be interesting though. Even more so if...

I have been dealing with an AMI connection that timeout a lot and can therefore happen to be in a reconnecting state when it is contacted. This is giving me...

bug
help wanted

Looks like the `HangupAction` got some improvements in Asterisk 12. We need to implement the "cause" property and update the documentation for the channel property. See: https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+ManagerAction_Hangup

enhancement
help wanted (easy)

The use of `SystemException` should be chanced to a custom exception. Can be found in the following places: - [ ] ManagerConnection.cs#L1390 https://github.com/AsterNET/AsterNET/blob/2428cc1e8b4b01f1b58b58cd125f6865d3077ca1/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs#L1390 - [ ] ManagerReader.cs#L197 https://github.com/AsterNET/AsterNET/blob/27c014faa5266943b1d4b5cb8e2ea19ee56394b6/Asterisk.2013/Asterisk.NET/Manager/ManagerReader.cs#L197 - [...

enhancement

It would be very useful if the documentation linked to the official Asterisk documentation. See: https://stackoverflow.com/questions/6960426/c-sharp-xml-documentation-website-link AsterNET documatation: http://asternet.github.io/AsterNET Asterisk documatation: https://wiki.asterisk.org/wiki/display/AST/Home

help wanted (easy)
request

Better exception handling with custom exceptions. Current examples: - A `SystemException` is thrown when the AMI connection isn't up at the time of sending a command. - An `AuthenticationFailedException` is...

enhancement

A way to send raw text commands to the Asterisk, and read the raw text sent from the Asterisk might be useful. Might also want to set a specific version...

enhancement

I found the note in my code about the issue with reusing the same `ManagerConnection` instance over and over again. ``` _ami = new ManagerConnection(); // Timeout exception is thrown...

bug