| Commit | Date | |
|---|---|---|
|
[r4227]
by
david_costanzo
Use wxCursor for all cursor management, instead of the windows-specific ::SetCursor() function. This makes the cursor management logic platform-independent. |
2016-10-31 00:58:13 | Tree |
| 2016-10-26 00:35:33 | Tree | |
| 2016-10-26 00:22:40 | Tree | |
|
[r4224]
by
david_costanzo
Update the Croatian translation with the latest revision from |
2016-10-26 00:13:07 | Tree |
|
[r4223]
by
david_costanzo
Remove some code that checked when new returned null. The new operator doesn't ever return null, so this was dead code and only made it look like it handled out-of-memory conditions. This also removes a Windows-dependent ::MessageBox() call, which is the real reason I removed the dead code. |
2016-10-15 20:14:55 | Tree |
|
[r4222]
by
david_costanzo
Port the POLYVIEW internals to use platform-independent wxWidgets classes instead of win32 GDI objects. This was done to make POLYVIEW work on GNU/Linux. |
2016-10-15 20:07:15 | Tree |
| 2016-10-14 23:33:34 | Tree | |
|
[r4220]
by
david_costanzo
Enable the translation scripts to run in GNU/Linux environments. |
2016-10-09 14:54:57 | Tree |
|
[r4219]
by
david_costanzo
Remove the conditional compilation for making the network API use UDP. For backward compatability reasons, this will never be enabled. If FMSLogo someday supports UDP, it will be done with a new set of commands that are explicitly connectionless, not something that's shoehorned into the existing API. This was done to improve code readability. |
2016-10-09 03:01:28 | Tree |
|
[r4218]
by
david_costanzo
Implement feature #105; NETACCEPTON now listens on all network adapters, including the loopback adapter. This makes it possible to connect to a server using "localhost", which simplifies writing tests, examples, and testing the servers. The fix was to not bind() the listen() socket using a socket address that came from doing a DNS Lookup on the local machine, but to instead use INADDR_ANY. This simplifies the code flow for servers, as the host name lookup was asynchronous. |
2016-10-09 02:39:15 | Tree |