VelorumS
VelorumS
#673 #728 #732 #751 - [x] SettingsMode and its TabView with global font size setting in "Graphics" tab - [x] Global font size cvar - [x] Write back cvars to...
The current game logic will be mostly used in the server. Same code will probably be used on the client to predict the outcome of the commands issued by the...
There is no established world-history protocol, so it's too early for the game replays. The goal is to be able to replay the player's perspective by replaying the input. It's...
Minimap
Made some action buttons (hooked up 'kill' and 'garrison', haven't found the game logic for other ones). Borrowed https://github.com/SFTtech/openage/pull/344 for the minimap. But can't understand why the player colours aren't...
Was fine with 1.0.5, does duplicates in 1.1.0. The change: https://github.com/gabrielfalcao/HTTPretty/commit/b6161cebfdaf5f68ef49526e51b460b8e0c0c6c2#r50812634 ``` - cls.latest_requests[-1] = request + pos = cls.latest_requests.index(request) + cls.latest_requests[pos] = request ``` `httpretty.historify_request()` is called multiple times...
ImageViewer is a dialog window with no maximizing ability (double-click on the header of the window doesn't maximize, there is no maximize button). So making it a proper window. Side...
Don't close the SSH connection for the subsequent requests. For the paramiko client option (`use_ssh_client=False`) there was some kind of reuse but it reuses on per-URL basis for some reason....
`cmds.sh` connects through SSH and executes several commands: ``` #!/usr/bin/env python3 import docker if __name__ == "__main__": client = docker.DockerClient("ssh://localhost", use_ssh_client=True) client.ping() client.images.list() client.containers.list() ``` Running this script spawns a...
#### Your system information * System information from steam (`Steam` -> `Help` -> `System Information`) in a [gist](https://gist.github.com/ChipmunkV/b562cb60b7bb65b7f9c28acfdbf608c0): * Have you checked for system updates?: Yes * Are you using...
The snap packages are big, but there is still no option to cache them like in an apt-cacher for debs. It makes any interaction with snaps very painful. Is there...