As I'm the only code contributor, I'm announcing that URTrator code
is now licensed under MIT license.
Also I'm deprecating Qt5 interface as it is really hard to write Qt
code and create installers with it. Maybe one day I even figure out
how to work with QtQuick (which attracts me more and more ATM) and
URTrator will use it, but not now.
Added language selection combobox in options dialog. Selecting
language here will overwrite language code gathered from system.
Added AcceptedLanguages map to Translator, which holds readable
names and lang-country codes with avaailable languages. Filled
it with languages in which URTrator already translated. Francais
coming :)
Added Timer - great package which will make periodic tasks to work.
Timer exposes "taskDone" event, which can be triggered when
task ends it's execution.
Added first periodic task - servers information updating. By
default it will execute every 10 minutes. Configurable thru
options.
Added new options pane: Servers updating. It controls all aspects
of servers updating thing. Master server address, servers
autoupdating checkbox and autoupdate timeout values are exposed
for now.
We're now on on 0.2.0-devel :).
Fixes#29.
Fixed all messageboxes that can use struct object as self name
(e.g. m for messageboxes in mainwindow). Should help to avoid some
errors.
Added possibility to copy server's credentials into clipboard
for ease of sharing.
Refactored the way URTrator working with profiles - now everything
that could be taken from internal cache will be taken from cache.
The very same as with servers.
Moved all callbacks from callbacks to events, so we achieve full
asynchronity here and can launch anything in goroutines :).
Moved MainWindow-related game launching functions into another
file (mainwindow_launch.go).
Made quick connect widget working. Note, that even if you're on
Favorites and trying to connect to one of favorited servers but
with quick connect - you still have to choose right profile
near Launch button!
Maybe something else I forget.
Added checking if Urban Terror launched while trying to shut down
URTrator. If yes - we will show error message and won't quit,
until Urban Terror will be dead.
Now we have pooler which will pool connections (like pinging),
so there will be no timeouts due to "we have launched 100000 goroutines".
Reworked all code to use events (see Eventer). Still more work about
this to go.
Maybe more fixes I forgot.
Configuration is now properly saved for parameters in Options window.
Also they are restored fine.
Added tray icon with two default actions: show/hide and exit. More
to come.