Urban Terror launcher.
This repository has been archived on 2022-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Stanislav Nikitin 6944b51d13 This commit designates two changes: MIT and deprecation of Qt5 interface.
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.
2018-11-10 21:13:06 +05:00
artwork Added artwork. 2016-10-09 00:40:36 +05:00
cache This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
cachemodels This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
clipboardwatcher This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
colorizer This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
common This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
configuration This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
context This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
database This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
datamodels This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
doc Fixes in mac build script, some gofmt works. 2018-11-10 20:57:28 +05:00
eventer This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
ioq3dataparser This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
launcher This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
requester This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
timer This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
translations URTrator now can be translated. 2017-02-09 01:16:51 +05:00
translator This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
ui/gtk2 This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
.gitignore macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
LICENSE This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
README.md Note for macOS users about Retina and blurry font. 2018-11-10 21:01:23 +05:00
translations_update.py This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00
urtrator.go This commit designates two changes: MIT and deprecation of Qt5 interface. 2018-11-10 21:13:06 +05:00

README.md

URTrator

Main Window

URTrator is a desktop application that should (eventually) replace Urban Terror's and IRC client interfaces for you, because they're pretty shitty :).

Disclaimer: This software isn't written nor supported (for now) by FrozenSand. All code is a community effort.

Right now it can:

  • Obtaining list of Urban Terror servers from master server and updating information about them.
  • Local caching of whole data (in SQLite3 database).
  • Extended Urban Terror launching capabilities (e.g. launching game in another X session).
  • Supporting of multiple profiles with multiple game versions. When you're launching Urban Terror URTrator will check profile you're trying to use and, if version incompatability found, will not launch the game.
  • Favorites servers.
  • Updating single server.
  • Automatically update servers information.
  • Showing information about servers (like in UrT Connector).
  • Clipboard monitoring.

Planning:

  • Friends searching.
  • RCON console.
  • Game updating (not from official servers yet, sorry).
  • Pickup/matchmaking interfaces.
  • All kinds of notifications.
  • Extended profile editor, so every profile could have own configuration files, etc.
  • ...maybe more :)

Installation

Precautions

There is no precautions for latest source with Golang 1.11.2 and GTK+2 2.24.32.

Release

You don't need to install anything, thanks to Go's. URTrator executable contains everything we need. Just download approriate binary and launch it! :) The only thing is to make sure you have GTK2 and sqlite3 installed.

Windows and macOS users will receive full distribution that is ready to be launched OOB, no need to additionally install anything.

Distro-and-OS specific instructions

  • MacOS
  • Windows (to be written)
  • Nixes: read below.

Development version

URTrator written in Go and GTK2, so you should have them installed. Make sure your GOPATH variable is defined.

Then execute:

go get -d gitlab.com/pztrn/urtrator
go install gitlab.com/pztrn/urtrator

First command will get sources of URTrator and dependencies, second command will build executable for you and place it in $GOROOT/bin.

Updating

go get will do initial repo clone for you, but flag -u is required to get updated URTrator source. So, for updating sources just issue:

go get -d -u gitlab.com/pztrn/urtrator

Again, this will only update sources. To build executable you have to issue:

go install gitlab.com/pztrn/urtrator

Important information

macOS users - problems with Retina displays and blurry font

If you're on macOS and experiencing blurry font - apply Retinizer on .app. This will patch everything to use current screen DPI.

This isn't applied by default because it might create problems on displays with standart DPI.

Translation

Feel free to ping me everywhere you can and ask for adding a language for translation, if not already added here.

Also, if you're testing (or using) URTrator from source tree with go run you should also specify URTRATOR_BINDIR variable. This variable tells URTrator where it sources is and from where translations should be taken.

GTK warnings in console

Many GTK warnings in console may appear while using URTrator. Unfortunately, they are out of control, because they are related to Go GTK+2 bindings and nothing can be done on URTrator side.

Why GTK+2?

Because GTK+3 going on "stable api nonsense" way. And also it have some troubles with integrating with current popular WM/DE (like XFCE4, Openbox, etc.). And also I already tired of that shitty Adwaita and Cantarella.

If you want to use GTK+3, well, you can write UI for yourself, Go bindings exist.