heinrich5991
9d5ba770e9
teehistorian: Only record non-default config vars
2017-09-24 21:11:04 +02:00
def
b7f4ab4d80
Move comment
2017-09-23 22:49:01 +02:00
heinrich5991
3efa490cb7
teehistorian: Remove global buffer
...
This removes the possibility of the buffer filling up and discarding
data.
2017-09-20 02:23:28 +02:00
heinrich5991
9761e9606a
Make most user input teehistoric
...
Exclude private stuff like chat messages and votes.
2017-09-20 02:23:28 +02:00
heinrich5991
6ef9c8dbcd
First working version of teehistorian
...
teehistorian records all inputs from the players as well as the player
positions in each tick. It stores this info in a highly compressible
output format (I've achived 5x compression using xz or bz2).
2017-09-20 02:16:11 +02:00
def
03fa475b5e
Implement /pause [name] and /spec [name]
2017-09-18 19:12:01 +02:00
Redix
43f246f174
Made int packing functions safe
2017-09-17 02:36:50 +02:00
heinrich5991
42934fe102
Remove statically detectable float divisions by zero
...
This should fix the warning in MSVS.
2017-09-16 18:34:26 +02:00
heinrich5991
9911759314
Revert "Don't divide by 0"
...
This reverts commit 03faa51e28
.
Dividing floats by zero isn't undefined behavior and results in +inf or
-inf depending on the sign of the first operand.
#include <math.h>
#include <stdio.h>
#define PRINT(x) printf("%s = %f\n", #x, x)
int main()
{
PRINT(1.0 / 0.0);
PRINT(-1.0 / 0.0);
PRINT(atanf(1.0 / 0.0));
PRINT(atanf(-1.0 / 0.0));
return 0;
}
prints
1.0 / 0.0 = inf
-1.0 / 0.0 = -inf
atanf(1.0 / 0.0) = 1.570796
atanf(-1.0 / 0.0) = -1.570796
The changed function was problematic for values like (0,1), (-1,0),
(0,-1) where it always returned an angle of 0°.
2017-09-16 18:33:10 +02:00
def
03faa51e28
Don't divide by 0
2017-09-16 12:06:07 +02:00
Dennis Felsing
43d0299a45
Merge branch 'master' into pr_ddnet_fix_msvs_warnings
2017-09-16 11:17:39 +02:00
Jupeyy
fc706a820c
only check gametiles for DDNet server type
2017-09-16 03:45:24 +02:00
Jupeyy
31844d3353
set max width for custom text texture upload and fixing alignments for
...
texture updates
2017-09-15 03:01:26 +02:00
Jupeyy
5c7c09d380
fixing most wrong code pattern
2017-09-13 20:33:58 +02:00
Jupeyy
fd83d2834d
dont draw layer if our view is out of the layers range
2017-09-12 23:16:01 +02:00
Jupeyy
c437b5bb89
use 64 bit variable
2017-09-12 21:06:12 +02:00
Jupeyy
629bf2c5f9
Merge branch 'master' of https://github.com/ddnet/ddnet
2017-09-12 20:24:58 +02:00
Jupeyy
0caa70f0a1
support buffering of tile layers, draw them with the buffer objects and
...
some optimazations to border drawing
2017-09-12 20:22:18 +02:00
Jupeyy
9d2a625363
create overlay textures for entity overlays, instead of rendering glyphs
2017-09-12 20:15:37 +02:00
Jupeyy
6dc4d1e578
only allow a maximal zoom factor to make sure no bufferoverflow happens
2017-09-12 20:14:34 +02:00
Jupeyy
93138c1fba
make background class inherited from maplayers and change some things in
...
maplayers instead, so the background class can profit from buffering
2017-09-12 20:13:53 +02:00
def
73d9ad7615
Really only download ddnet-info.json at correct time
2017-09-08 22:16:00 +02:00
def
715ac673ec
Version 10.8.6
2017-09-08 22:01:51 +02:00
def
c2c453bd45
Make sending name to info.ddnet.tw optional, show dialog at start and some minor fixes
2017-09-07 20:51:46 +02:00
heinrich5991
4d96090770
Fix MSVS warnings
...
```
warning C4291: no matching operator delete found; memory will not be freed if initialization throws an exception
warning C4305: truncation from 'double' to 'float'
warning C4805: unsafe mix of type 'bool' and type 'int' in operation
```
2017-09-06 10:54:29 +02:00
def
58d1294b3c
oops
2017-09-03 23:50:27 +02:00
def
d5fc3210fd
Version 10.8.5
2017-09-03 23:46:58 +02:00
def
8b1470c31f
Revert "Merge GAME_VERSION and GAME_RELEASE_VERSION"
...
This reverts commit 5cfd779c68
.
2017-09-03 23:46:15 +02:00
def
4b39a39e10
Version 10.8.4
2017-09-03 19:30:29 +02:00
def
278c1ee198
Add Toggle ghost control ( fixes #823 )
2017-09-03 19:23:59 +02:00
def
5cfd779c68
Merge GAME_VERSION and GAME_RELEASE_VERSION
2017-09-03 18:54:43 +02:00
def
caec69abc1
RequestDDNetInfo in ingame menu too
2017-09-03 18:17:21 +02:00
def
89ed22e8d8
Introduce ddnet-info.json
...
- Single json file containing all information for the client
- Fetched from https://info.ddnet.tw/info?name=deen
- Replaces versionsrv, news, ddnet-maps.json and ddnet-ranks.json
- Servers are sorted by most popular ones for respective player
- Always stays < 100 ms response time, compared to occasional 50 s for
old ddnet-ranks.json
2017-09-03 17:42:04 +02:00
def
f2a7f5f8dd
User agent in http fetcher
2017-09-03 09:18:00 +02:00
def
0a09af4b33
str_format instead of sprintf
2017-09-03 09:01:25 +02:00
def
7b6317a5d6
buffer sizes
2017-09-03 08:53:54 +02:00
def
862e26dd08
Clean up time handling a bit
2017-09-03 08:48:21 +02:00
def
e64e59a839
semaphore instead of busy waiting in CJobPool
2017-09-02 12:30:55 +02:00
Dennis Felsing
f8b98c6366
Version 10.8.3
2017-09-01 08:01:45 +02:00
def
f5edf53fd7
Version 10.8.2
2017-08-31 23:43:00 +02:00
def
9b214db85f
Force version.ddnet.tw and update4.ddnet.tw
2017-08-31 23:28:10 +02:00
def
e36d7ce9a1
Version 10.8.1
2017-08-31 22:07:43 +02:00
def
583421b42d
Revert "fixed sprite rendering. Closes #834 "
...
This reverts commit 43af1fdb5f
.
2017-08-31 22:03:33 +02:00
def
97380494e6
Version 10.8
2017-08-31 19:24:17 +02:00
heinrich5991
659e1ff527
Merge pull request #853 from Redix/pr_ghost_time
...
Ghost and Race demo time extraction fix
2017-08-31 12:31:20 +02:00
Redix
affa3faeec
Only use integers for ghost and race demo handling
...
Ghosts still use floats internally
2017-08-31 03:22:08 +02:00
Redix
cf09b6b08b
Use -1 as invalid for time parsing functions
2017-08-31 01:13:26 +02:00
Redix
a396e40c5e
Move race helper functions to own cpp file
...
Fix some style issues
2017-08-31 00:17:16 +02:00
def
040fc9ca32
Implement right click and middle click on country and type filters
...
Right click: exclusively activate one
Middle click: reset (reenable all)
2017-08-30 22:36:39 +02:00
Redix
b6a3a42aa6
Use the time parsing functions for race demo name parsing
2017-08-30 22:10:43 +02:00
Dennis Felsing
eb2634ab0a
Merge pull request #852 from heinrich5991/pr_ddnet_fix_extractname
...
Add testing; fix, rename and test the `CEditor::ExtractName` function
2017-08-30 22:09:17 +02:00
def
a1d2ecb6de
Empty when no rank
2017-08-30 21:50:09 +02:00
Redix
f1f7e4e30b
Fix ghost and race recorder time parsing
2017-08-30 21:44:27 +02:00
def
16f3ddc5a7
Show if user has rank on map in browser (+filter)
...
UI implementation by timakro
2017-08-30 21:34:04 +02:00
Dennis Felsing
25a5eff1f8
Merge pull request #847 from heinrich5991/pr_ddnet_uncompressed_datasize
...
Rename `GetUncompressedDataSize` to `GetDataSize`
2017-08-30 16:34:02 +02:00
oy
43af1fdb5f
fixed sprite rendering. Closes #834
2017-08-30 16:32:39 +02:00
heinrich5991
22be1be389
Fix and rename the CEditor::ExtractName
function
...
Fixes #846 .
2017-08-30 13:59:42 +02:00
heinrich5991
2682480f8a
Rename GetUncompressedDataSize
to GetDataSize
...
Also rename the old `GetDataSize` to `GetFileDataSize`. `GetDataSize`
now returns the actual data size, not the data size before
decompression.
2017-08-30 08:36:17 +02:00
sctt
0849fa6024
fixing map_resave and adding map_replace_image
...
Update datafile.h
Update datafile.cpp
Update datafile.cpp
Update map_resave.cpp
Update datafile.h
Update map_resave.cpp
Update datafile.h
Update datafile.cpp
Update config_store.cpp
Update config_retrieve.cpp
Update io.cpp
Update gamecontext.cpp
Update config_store.cpp
Update CMakeLists.txt
Create map_replace_image.cpp
Update map_replace_image.cpp
fixing bug with height and witdth
2017-08-29 16:21:16 +02:00
def
ac2943a49b
utf8mb4 in database for real utf8
2017-08-26 09:00:33 +02:00
def
fb252c4940
Fix compilation
2017-08-25 13:27:37 +02:00
heinrich5991
1ae004ba46
Make a copy of the input only after sanitizing it
...
This fixes a physics bug that allowed players to set their mouse
direction to (NaN, NaN), resulting in funny effects.
2017-08-25 13:20:10 +02:00
def
0e1cc205ef
Fix formatting for server chat messages with time in already
2017-08-21 20:48:11 +02:00
def
98520bb407
other kind of fix
2017-08-19 09:36:13 +02:00
def
d40dd4f362
Don't try next SQL server when /times returns empty
2017-08-19 09:32:14 +02:00
def
0b5dcdc478
Disable vsync by default and warn about possible delay
2017-08-08 19:53:16 +02:00
def
5d8a0ddc1e
Add time in console
2017-08-04 22:38:22 +02:00
heinrich5991
33315452c3
Merge branch 'master' into leak_fix
2017-07-31 20:42:32 +02:00
def
0a28556481
A bit nicer birthday message
2017-07-31 18:24:16 +02:00
def
d9aeeae3fc
Fix sql_score.cpp formatters
2017-07-30 14:23:25 +02:00
def
c12082c2ef
Not too many messages
2017-07-30 14:15:45 +02:00
Learath2
4622ab4cb6
Merge pull request #814 from heinrich5991/pr_ddnet_fix_cmake_mac
...
Fix the CMake Mac build
2017-07-30 11:38:12 +02:00
def
7a3b7c6228
oops
2017-07-29 23:13:04 +02:00
def
f3d4fcf012
Print message when team starts playing to team members
2017-07-29 23:11:33 +02:00
HMH
d03e91153c
removed unused Dest function for layers
2017-07-28 14:43:03 +02:00
heinrich5991
6247aa0c7f
Enable -Wextra
and -Wformat=2
...
Also annotate `dbg_msg`, `str_format` and `str_timestamp_ex` so that the
compiler can determine whether the format strings are correct.
Fix the compiler warnings generated by these extra warnings -- some of
them were security issues.
2017-07-27 20:38:17 +02:00
Marcel Herd
d513af6a42
Removed default bind for home key (kill)
...
Kill is already bound to K by default, binding it on home as well doesn't really have any purpose. (?)
Furthermore, the home key is right next to page up which is bound to toggling entities.
It is very easy to accidentally hit home instead of page up, which is highly frustrating.. therefore I suggest removing this duplicate binding.
2017-07-26 20:43:26 +02:00
def
adef38a574
Revert "We want the Timestamp of a team to stay min(Timestamp) to indicate the first time this team finished the map"
...
This reverts commit bf0e67a34a
.
2017-07-26 18:12:41 +02:00
heinrich5991
fd8bccb0f4
Fix the CMake Mac build
...
Fixes #805 .
2017-07-26 04:30:56 +02:00
def
379f060126
Version 10.7.1
2017-07-25 19:09:05 +02:00
def
a9d3f45b25
Add ui_close_window_after_changing_setting
2017-07-25 19:08:16 +02:00
def
8d621dfc00
Add kitty skins (by Ravie + fuzzy ninja by patwo.*)
2017-07-25 00:11:37 +02:00
def
a9498b15cb
Fat skins
2017-07-25 00:11:37 +02:00
heinrich5991
1ebb4f89a6
Reopen: Add a flag for rcon login via username ( #800 )
...
This uses an extended protocol message to signal that rcon
authentication might require a username, allowing the client to enable
the username prompt.
Add a forgotten logout on key update
2017-07-24 21:43:55 +02:00
def
cf08239e58
no plenk
2017-07-24 20:58:51 +02:00
def
147005ea42
ask before overwriting demo file when slicing ( fixes #806 )
2017-07-24 18:33:11 +02:00
def
bcec0f1bb1
ctrl-f to search, ctrl-x to exclude, ctrl-r to reason
2017-07-24 18:05:19 +02:00
Dennis Felsing
402a71527a
Merge pull request #810 from H-M-H/stat_csv
...
use str_append for appending strings
2017-07-24 16:01:06 +02:00
HMH
f2ac4a02ce
use str_append for appending strings
...
this fixes corrupted stat csvs as str_format does not work with same
source and destination
2017-07-24 15:27:30 +02:00
def
4c98c4bdd6
typo
2017-07-23 21:34:36 +02:00
def
79d29b1e31
Fix: Finish score should always show the fastest time
2017-07-23 21:33:55 +02:00
def
bf0e67a34a
We want the Timestamp of a team to stay min(Timestamp) to indicate the first time this team finished the map
2017-07-23 21:20:12 +02:00
def
ec885f3e25
Fix layout
2017-07-22 22:43:20 +02:00
def
af5b903944
Version 10.7
2017-07-22 22:32:35 +02:00
def
f09a0f640f
Fix mouse sensitivity setting dialog and introduce new one for ui mouse sens (#fixes 804)
2017-07-22 22:31:14 +02:00
def
e37d895399
Version 10.6.9
2017-07-22 17:35:45 +02:00
def
d50b39c530
Fix controls rectangle overlapping topbar and being clickable outside of scope
2017-07-22 17:35:30 +02:00
def
fd732e43bd
Version 10.6.8
2017-07-22 13:55:56 +02:00
def
2d68aed009
More settings in controls menu. use listbox ( fixes #802 )
2017-07-22 13:41:18 +02:00
def
7428dd0637
Editor: Don't show server settings when picker is active
2017-07-22 12:18:53 +02:00
HMH
476d57c5c5
Also cleanup CEditorMap on destruction
2017-07-21 20:02:46 +02:00
def
b57ffa429e
Use scancodes instead of keycodes for input ( fixes #796 , please test)
2017-07-21 19:53:49 +02:00
def
35befec54c
Clean up key binding a bit
2017-07-21 19:32:32 +02:00
def
f352daf00d
Allow moving mouse while spectating and typing ( fixes #798 )
2017-07-21 19:24:18 +02:00
HMH
7b3aba8fdc
fixed memoryleak in CCollision
2017-07-21 16:02:24 +02:00
def
5785267a39
Version 10.6.7
2017-07-16 23:54:22 +02:00
def
4a13d47637
Use update4.ddnet.tw...
2017-07-16 23:54:07 +02:00
def
b05693e9cd
Version 10.6.6
2017-07-16 12:00:37 +02:00
def
4a8f3b083d
Use new update server that runs on Let's Encrypt
2017-07-16 11:46:38 +02:00
def
e4364983ab
Use https for map downloads by default
2017-07-16 11:29:10 +02:00
def
f3a44995cf
Don't stop movement after opening player list
2017-07-15 19:53:29 +02:00
def
440ee9397f
Version 10.6.5
2017-07-15 19:01:17 +02:00
def
4b4f9992d4
Fix disappearing switches in editor
2017-07-15 18:11:01 +02:00
def
9a0706f8b1
Support ctrl-l to load map in editor
2017-07-15 18:08:34 +02:00
def
fba3815ddc
Only send password on connection when explicitly asked to ( fixes #788 )
2017-07-15 17:29:20 +02:00
def
9bf84fd4be
Don't keep enabling input in menu all the time ( fixes #706 )
2017-07-15 15:37:05 +02:00
def
a5bd671e55
Show X and Y coordinates in map editor
2017-07-12 20:25:48 +02:00
def
8b5ee98193
Handle input reset on chat correctly on DDNet servers and other servers
2017-07-10 22:24:40 +02:00
Dennis Felsing
bcb30c860e
Merge pull request #761 from Learath2/dd_pr_vanillapause
...
Can't spectate yourself when /pause'd
2017-07-09 23:15:57 +02:00
def
46cedf3a8c
Compiler warnings
2017-07-09 10:27:58 +02:00
def
66f6f16e81
Windows DPI fixes #2
2017-07-09 09:44:07 +02:00
def
42b07441a5
Try to make SQL connections a bit more hardy
2017-07-08 14:14:50 +02:00
def
f3e3d57a90
Always close files, cleaner demo recording, fix some other stuff
2017-07-08 13:39:20 +02:00
heinrich5991
409bc0e019
Ensure null-termination in str_escape
...
This also fixes a couple of potential buffer overflows. The affected
code is still buggy (doesn't do the right thing on potential buffer
overflow), but at least it won't result in crashes/out of bound writes
anymore.
2017-07-08 13:06:03 +02:00
def
33927f6397
Version 10.6.4
2017-07-08 11:06:59 +02:00
def
36d5c8d608
string toggling supports escaped strings; also some code cleanup
2017-07-08 11:03:51 +02:00
ChillerDragon
727b9f84b6
fixed scoreboard update for slow racers (less hacky) ( #765 )
...
* fixed scoreboard update for slow racers (less hacky)
* Fix some style issues
2017-07-05 23:01:57 +02:00
def
37a08e8ef0
Support pageup, pagedown, home, end buttons in menus
2017-07-04 22:07:02 +02:00
Dennis Felsing
fd73fdd942
Fix set_team_ddr doc
2017-06-26 16:00:03 +02:00
Tim Schumacher
2ef05c2def
Use sv_teleport_hold_hook also for checkpoint tele
2017-06-15 16:07:27 +02:00
Tim Schumacher
47fecc8659
Add sv_check_teleport_hold_hook map setting
2017-06-15 15:49:07 +02:00
def
c34482a9c4
Version 10.6.3
2017-06-12 21:12:57 +02:00
Learath2
49e4501cc7
Merge pull request #785 from Ryozuki/pr_ddnet_fix_dbgassert
...
Get rid of wrong dbg_assert that can crash server
2017-06-12 18:54:48 +03:00
Ryozuki
5f23a68caf
get rid of wrong dbg_assert
2017-06-12 17:49:01 +02:00
def
73c61e4169
Let's not save maps that are ok already
2017-06-11 20:18:28 +02:00
def
2bd6316ce7
Add code for fixing old maps by removing unused tiles
2017-06-11 19:53:55 +02:00
eeeee
0497cdd49d
stop casting auth state to bool
2017-06-08 13:03:44 -07:00
def
e4b3c17829
Add option to disable long pain sound (used when shooting in freeze)
2017-06-06 18:58:23 +02:00
Learath2
b04876361d
Fix indentation
2017-06-06 10:13:19 +02:00
eeeee
2797227063
also remove references to CGameContext from CServer
2017-06-05 22:31:56 -07:00
eeeee
9b6699d3b8
remove casts to CServer
...
improving encapsulation by going through the interface instead of including engine/server/server.h
2017-06-05 20:51:12 -07:00
def
ec5ede7633
Version 10.6.2
2017-06-04 21:00:42 +02:00
def
45acda1a66
Fix compiler warning
2017-06-02 21:49:53 +02:00
def
8553ed727b
Replace cl_cpu_throttle with cl_refresh_rate
2017-06-02 21:33:45 +02:00
def
4125941896
Disable dbg_stress in release builds (fewer confused kids that think they hacked the server, less useless code in cache)
2017-06-02 20:45:09 +02:00
def
a6e144ea72
Let's not crash the client and server on dbg_assert
2017-06-02 20:12:20 +02:00
def
27074e926a
Further cleanup
2017-06-02 19:44:14 +02:00
def
a117e3a6e7
Version 10.6.1
2017-06-01 21:28:49 +02:00
def
ac481a972c
Heuristic to speed up ghost loading on map change
2017-06-01 21:26:59 +02:00
def
c49aa0671f
Revert "A bit faster"
...
This reverts commit 1428c25083
.
2017-05-24 23:16:10 +02:00
Learath2
6a6666abc4
Keep pause state when killed
2017-05-24 22:30:28 +02:00
def
1428c25083
A bit faster
2017-05-24 21:39:04 +02:00
def
02995bf72f
Oops
2017-05-24 21:36:14 +02:00
def
1f86e6c8df
Save fixes
2017-05-24 21:32:26 +02:00
def
1b2a85af58
Fix m_Jumped loading
2017-05-24 20:23:54 +02:00
def
562dee6e38
Clean up server messages a bit
2017-05-21 01:20:25 +02:00
Valentin Lorentz
191f0e7f3d
Hide empty broadcast messages.
2017-05-20 13:59:39 +02:00
def
63c1d75458
When frozen and afk, show normal eyes to be able to tell non-afk from afk
2017-05-19 19:12:52 +02:00
Learath2
cf81ef8ce6
Can't spectate yourself when /pause'd
2017-05-19 00:21:01 +02:00
def
c1c2c1575f
Fix some vanilla pause issues
2017-05-18 23:52:54 +02:00
def
d7d0520f79
Another try
2017-05-18 20:04:29 +02:00
def
819187f376
Fix unweapons
2017-05-18 20:01:10 +02:00
def
0f14307e8f
oops
2017-05-17 22:37:54 +02:00
def
7e7d56048b
New try at loading in team only
2017-05-17 22:30:13 +02:00
def
569f17e3f3
No need to localize icons
2017-05-17 19:11:32 +02:00
def
bd75e6e1f6
Actual fix
2017-05-17 18:56:58 +02:00
def
a8966c680e
Revert "Prevent vote spam"
...
This reverts commit 526a23b191
.
2017-05-17 18:55:45 +02:00
def
b48005fe40
Revert "Fix last map vote"
...
This reverts commit 42f3b0d7a8
.
2017-05-17 18:50:01 +02:00
def
42f3b0d7a8
Fix last map vote
2017-05-17 18:45:45 +02:00
def
a7ee59804b
Reverse...
2017-05-16 17:52:29 +02:00
Dennis Felsing
666d1585b7
Fix crash on invalid pause state in save
2017-05-16 17:02:28 +02:00
def
74e19b26a7
Version 10.6
2017-05-15 22:32:31 +02:00
Learath2
b4b5d6cc9e
/pause'd players stay in player list
2017-05-15 13:56:54 +02:00
Dennis Felsing
87adba55ad
Allow voting again if no map could be found for random map vote
2017-05-15 11:15:04 +02:00
def
8c9995f166
oops
2017-05-14 22:44:52 +02:00
def
413f96b43d
Prevent some save/load cheating
2017-05-14 22:42:49 +02:00
def
f4112e3bcb
Revert "Tees must be teamed up before loading"
...
This reverts commit d29f2306ef
.
2017-05-14 22:36:44 +02:00
def
f57f1d0d17
You can't invite someone to team on solo server...
2017-05-14 22:16:58 +02:00
def
f2232b8026
Fix compilation
2017-05-14 22:14:02 +02:00
def
c2400c79cf
Rename cl_show_other_hook_coll to cl_show_hook_coll_other and add cl_show_hook_coll_own ( fixes #741 )
2017-05-14 12:03:09 +02:00
Dennis Felsing
278b17b460
Merge pull request #721 from Learath2/dd_pr_pause
...
Rework the pause system
2017-05-14 11:55:09 +02:00
Dennis Felsing
58207926ac
Merge pull request #726 from Learath2/dd_pr_load
...
Tees must be teamed up before loading
2017-05-14 11:54:39 +02:00
Dennis Felsing
a0a1276b6a
Merge pull request #751 from Learath2/dd_pr_ratelimitinvite
...
Add ratelimiting for /invite
2017-05-14 11:50:43 +02:00
Dennis Felsing
728e548f55
Merge pull request #754 from SheikhZayx/master
...
CSV file instead of statboard screenshot
2017-05-14 11:49:46 +02:00
Dennis Felsing
610195f21e
Merge pull request #753 from Learath2/dd_pr_voting
...
Fix vote spam
2017-05-14 11:49:12 +02:00
Dennis Felsing
45fa2a8586
Merge pull request #752 from d3fault/show-angle-in-debug
...
Add show angle in debug
2017-05-14 11:48:34 +02:00
SheikhZayx
451e5dfcf4
Sticking to naming convention. Freeing allocated memory.
2017-05-08 21:55:03 +02:00
SheikhZayx
80737e9c57
Fixed formatting & Removed function call for testing purposes
2017-05-02 18:55:05 +02:00
SheikhZayx
53e5150317
Altered string/memory function calls
2017-05-02 18:40:54 +02:00
SheikhZayx
6c0f889b95
Removed std::string
2017-05-02 18:27:04 +02:00
SheikhZayx
114eb81224
Changed loop variables
2017-04-28 11:28:18 +02:00
SheikhZayx
0d7a93326b
Fixed includes
2017-04-26 19:08:31 +02:00
SheikhZayx
ea0e4948b4
CSV file instead of statboard screenshot
...
En-/Disable statboard being saved as csv
2017-04-26 05:10:31 +02:00
Learath
58d3d5251a
Fix a mistake. Kill on kick
2017-04-25 20:27:23 +02:00
Learath
526a23b191
Prevent vote spam
...
Apply the timeout even after a successful vote
2017-04-25 19:53:18 +02:00
Learath
a1d2212696
Change behaviour for kick votes in teams
2017-04-25 19:10:22 +02:00
d3fault
592d2d7556
Add show angle in debug
2017-04-24 14:11:22 -07:00
Learath2
3878d6fb56
Reset invites when the team is empty
2017-04-24 21:28:02 +02:00
def
4b376d239c
rename
2017-04-24 17:36:13 +02:00
Learath2
1d84d0db07
Get rid of trailing spaces
2017-04-24 14:05:09 +02:00
Learath2
c1a4a95d61
Add ratelimiting and config options for invite
2017-04-24 14:04:50 +02:00
Dennis Felsing
716b61df23
Merge pull request #750 from d3fault/more-precise-coords-in-debug
...
Add show more precise coords in debug
2017-04-24 13:36:04 +02:00
Learath2
aa3690a632
Reset invites when the team is empty
2017-04-24 13:31:05 +02:00
d3fault
f5c4a6b578
Add show more precise coords in debug
2017-04-24 04:15:17 -07:00
Learath2
89199d04d0
Fix invite spam by abusing lock.
2017-04-24 11:03:16 +02:00
Learath2
309d47e933
Revert "Remove invite system entirely since no one wants to fix it"
...
This reverts commit 99cc9d2c0b
.
2017-04-23 22:50:07 +02:00
def
99cc9d2c0b
Remove invite system entirely since no one wants to fix it
2017-04-23 17:51:29 +02:00
def
8dcad29138
Also update timestamp in team rank (fixes discord bot to show team ranks when they exist)
2017-04-23 14:08:58 +02:00
Learath2
c091eb6cc9
Fix indentation
2017-04-22 19:04:16 +02:00
def
9da2655ea7
Add own time to /mapinfo
2017-04-21 20:13:51 +02:00
def
762ca52b59
Version 10.5
2017-04-16 09:30:53 +02:00
def
9e7eb9c142
Remove /uninvite
2017-04-13 10:34:19 +02:00
def
3c9b178e73
Fix /times ratelimit
2017-04-13 09:38:53 +02:00
def
d4ed1310d2
Configurable rate limit for SQL queries
2017-04-13 09:33:26 +02:00
def
407943a0a0
A bit more cautious SQL code
2017-04-13 09:26:12 +02:00
def
d450678bf3
Quit even if score-threads didn't complete
2017-04-13 08:38:27 +02:00
heinrich5991
921cfb29f8
Fix use-after-free on unbind
2017-04-13 02:09:42 +02:00
heinrich5991
1b88017fc5
Fix crashbug in bind system
...
Restore old behavior around the bind's Get() function, return "" if
there is no bind. Fixes #730 .
2017-04-13 02:09:42 +02:00
Learath2
38cd5e89a5
Revert "Missed a case. Fixes #730 "
2017-04-13 01:51:00 +02:00
Learath
c8acc2d286
Swap /pause and /spec around
2017-04-13 01:33:56 +02:00
Dennis Felsing
6f93be03cc
Merge pull request #733 from Learath2/dd_pr_chatoverlap
...
Fix chat overlapping
2017-04-13 01:30:54 +02:00
Learath
0b6c6f353d
Fix chat overlapping. One to go #723
2017-04-13 01:14:53 +02:00
Dennis Felsing
72e9571d57
Merge pull request #732 from Learath2/dd_pr_bindfix
...
Missed a case. Fixes #730
2017-04-13 01:13:24 +02:00
Learath2
30a9469df2
Missed a case. Fixes #730
2017-04-13 01:06:40 +02:00
Learath
0cafa8b813
Random tees can't load saves
2017-04-12 16:59:46 +02:00
Dennis Felsing
40d3b4071d
Merge pull request #729 from Learath2/dd_pr_friendcoll
...
Strict checking for friends
2017-04-12 11:16:20 +02:00
Learath
9d2fb7dfda
Missed one check
2017-04-12 11:13:54 +02:00
Learath
47f405e160
Remove tees that don't belong
2017-04-12 10:33:02 +02:00
Learath
6895b5a180
Check if the allocation succeeded.
2017-04-12 10:05:22 +02:00
Learath
ae23924e81
Add arbitrary length binds. Fixes #642
2017-04-12 10:05:22 +02:00
Learath
d29f2306ef
Tees must be teamed up before loading
2017-04-11 21:18:26 +02:00
Learath
611b66e503
Fix a case reported in #723
2017-04-10 03:06:16 +02:00
Learath
45bc79b94b
Fix alignmend... Fixes #687
2017-04-09 03:46:02 +02:00
Learath
95690a1cf7
Reimplement sv_pause_frequency
2017-04-09 01:16:48 +02:00
Learath
5626259b27
Rework pause. Fixes force_pause
2017-04-09 00:20:41 +02:00
Henritees
33cdfee821
Handle multi-line motd correctly in the console
...
Rewrote MOTD processing to handle both kinds of newlines correctly
and added an option to disable printing it to the console.
Closes #711 .
2017-04-03 12:29:31 +02:00
Learath2
079c53471c
Remove unnecessary check. Fixes #714
2017-04-02 19:39:22 +02:00
trml
1211746491
Don't use predicted position for the hook when spectating
2017-04-02 18:41:55 +02:00
HMH
4a0abf6747
Access the correct Flags variable for saving maplayers
2017-04-01 18:16:02 +02:00
Learath2
9d0e054a06
Remove heart from on reset messages. Fixes #710
2017-04-01 15:19:20 +02:00
heinrich5991
1d81d56850
Introduce new, vanilla-compatible server info protocol
...
This means that we have a reliable and fast way to query for extended info,
while also not wasting network bandwidth.
The protocol is designed to be extensible, there's four bytes space for
encoding more request types (currently zeroed), and there's one string in each
response packet and one string for each player available (currently the empty
string).
The protocol itself has no problems with more than 64 players, although the
current client implementation will drop the player info after the 64th player,
because it uses a static array for storage.
Also fixes #130 , the player list is just sorted each time new player info
arrives.
2017-03-29 12:56:13 +02:00
Learath2
ed30c0b636
Clear only on a dc. Let rcon work during map change
2017-03-28 14:24:53 +02:00
Learath2
b52ed30618
Reset input when server/map changes. Fixes #633
2017-03-28 14:24:53 +02:00
Learath2
93ac8a97b1
Only reset auth on server change
2017-03-28 01:47:24 +02:00
Learath2
80f9d7a2ca
Reset the username input on server/map change.
2017-03-28 01:47:24 +02:00
HMH
7ef108c818
Fix style in some places which the previous fix missed
2017-03-23 22:28:06 +01:00
Learath2
d3bf89d7d3
Handle double click on server browser correctly. Fixes #597
2017-03-22 23:14:09 +01:00
Learath2
6377355d4a
Use %g. Get rid of comparison
2017-03-22 23:11:03 +01:00
Learath2
625433ed42
Fix double slowdown. Display the correct speed. Fixes #607
2017-03-22 23:11:03 +01:00
necropotame
b8e4e5beea
Fix style in several places
2017-03-22 19:45:14 +01:00
Learath2
55c5c3eac6
Properly calculate the width. Fixes #699
2017-03-22 12:10:22 +01:00
Learath2
2849e23003
Fix line width. Closes #687
2017-03-22 09:56:28 +01:00
def
125764815b
Update credits (I probably missed a few)
2017-03-16 19:17:24 +01:00
heinrich5991
b904822d57
Merge pull request #680 from necropotame/pr-i586-killborder
...
Fix #586 (display the killing clipping rectangle)
2017-03-16 17:00:57 +01:00
necropotame
c63c54d68e
Changes after heinrich5991's review of #586 - Fix code alignment
2017-03-16 16:51:52 +01:00
necropotame
5ddf0a5421
Changes after heinrich5991's review of #586 - Fix some more comments
2017-03-16 16:41:58 +01:00
necropotame
9bae313929
Changes after heinrich5991's review of #586 - Code cleanup, Fix typo, Fix bug with Y clipping
2017-03-16 16:39:29 +01:00
necropotame
4027b3dc01
Add error message in case of invalid argument for /timer
2017-03-15 12:22:13 +01:00
necropotame
6f58c49f7d
Fix #586 (display the killing clipping rectangle)
2017-03-15 12:06:13 +01:00
necropotame
e4345307c1
Fix #662 (timer command displays the wrong state)
2017-03-15 11:11:01 +01:00
Dennis Felsing
32a1fa0c07
Merge pull request #672 from Learath2/dd_pr_hearts
...
Forgot m_Friend isn't initialized, also align the messages
2017-03-13 12:04:47 +01:00
Learath2
3bd94b9ada
Forgot m_Friend isn't initialized, also align the messages
2017-03-12 22:32:05 +01:00
heinrich5991
54c5faa64c
Complete the refactor
2017-03-12 19:52:29 +01:00
Alexandre Díaz
3589ed0b0f
Start refactor...
2017-03-12 19:30:55 +01:00
heinrich5991
ccb9db9899
Merge pull request #652 from Learath2/dd_pr_invite
...
Add /invite for locked teams. Fixes #647
2017-03-12 19:04:55 +01:00
Learath2
c81f53ab6b
Forgot CID can be -1
2017-03-12 17:37:16 +01:00
Learath2
9919173ceb
Just color the heart preserving team information. Fixes #606
2017-03-10 18:49:39 +01:00
Learath2
0b0783f13c
Fix styling issues, use uint for bitmask
2017-03-10 14:52:49 +01:00
Dennis Felsing
4e39aea2f7
Version 10.4.3
2017-03-09 14:23:40 +01:00
Dennis Felsing
761c3c9be1
Merge pull request #646 from heinrich5991/pr_ddnet_brace_style
...
Fix the brace style in some places
2017-03-09 13:31:21 +01:00
heinrich5991
5b63a33095
Merge pull request #639 from Learath2/dd_pr_rconauth2
...
New auth system for rcon.
2017-03-06 20:57:42 +01:00
heinrich5991
6302e4d7e0
Fix some style issues and a > to >=
2017-03-06 20:11:23 +01:00
heinrich5991
e08ca70b1f
Fix dummy input reset
2017-03-06 19:45:39 +01:00
Learath2
0d4499a027
Rename bind_print to dump_binds.
2017-03-06 18:06:55 +01:00
Learath2
759799953f
Remove dump_binds. Let bind_print dump all. Fixes #634
2017-03-06 15:32:11 +01:00
Learath2
a87edad978
Move to a cpp file
2017-03-06 14:04:09 +01:00
Learath2
cbb5891263
Introduce ugly workaround to allow empty usernames
2017-03-06 13:49:08 +01:00
Learath2
9319a82c6e
Add /invite for locked teams. Fixes #647
2017-03-06 12:14:38 +01:00
Learath2
5317be824e
Fix coloring of team chat. Fixes #648
2017-03-06 10:24:00 +01:00
def
de7587b8b5
Version 10.4.2
2017-03-05 20:19:46 +01:00
heinrich5991
ba5af42b1f
Fix the brace style in some places
2017-03-04 15:43:49 +01:00
heinrich5991
a13cdc25b2
Merge pull request #632 from Learath2/dd_pr_friend
...
Put hearts before friends names. Closes #606
2017-03-04 15:37:24 +01:00
Learath2
adfd6ca644
Enable the username prompt on client side
2017-03-02 18:16:50 +03:00
necropotame
2c24fbce25
Fixed #636
2017-03-02 09:27:03 +01:00
Dennis Felsing
4c1053c6c4
Merge pull request #635 from heinrich5991/pr_dummy_input_demo_filter
...
Refactor dummy input and demo filtering
2017-03-01 07:59:24 +01:00
heinrich5991
6517567e7e
Merge pull request #602 from necropotame/gametick
...
Send the race time using warmup timer
2017-03-01 00:05:22 +01:00
heinrich5991
e3f2316106
Revert "Revert "Refactor dummy input and demo filtering""
...
This reverts commit 187560c8c0
.
2017-02-28 10:08:14 +01:00
Dennis Felsing
45c27e8b10
Version 10.4.1
2017-02-28 08:16:08 +01:00
Dennis Felsing
187560c8c0
Revert "Refactor dummy input and demo filtering"
...
This reverts commit 8375f4888e
.
2017-02-28 08:15:35 +01:00
necropotame
6a9406dc81
Fixed merge conflict
2017-02-28 07:31:39 +01:00
necropotame
b6548aa8cf
Fix wrong code convension, add enum for timer display type
2017-02-28 07:31:24 +01:00
necropotame
4cfe96801b
Send the race time using warmup timer
2017-02-28 07:31:24 +01:00
Learath2
7af41f6765
Actually use the color chosen
2017-02-28 01:23:10 +03:00
Learath2
fa22425f26
Add a checkbox to disable friend heart
2017-02-27 23:56:22 +03:00
Learath2
c783122301
Do not override the team color
2017-02-27 23:42:48 +03:00
Learath2
c76849c51a
Add sliders for friend chat color
2017-02-27 23:39:06 +03:00
Learath2
3b2d707f31
Add a second page to HUD page
2017-02-27 23:38:24 +03:00
Learath2
cd1f337bf5
Put hearts before friends names. Closes #606
2017-02-27 22:38:08 +03:00
Dennis Felsing
16f04d8989
Version 10.4
2017-02-27 16:33:10 +01:00
Dennis Felsing
eb36f421c5
Merge pull request #630 from heinrich5991/pr_ddnet_cmake_basic
...
Add overly simple CMakeLists.txt
2017-02-27 16:28:19 +01:00
heinrich5991
8375f4888e
Refactor dummy input and demo filtering
...
Remove references to src/game/ from src/engine/
2017-02-23 14:13:14 +01:00
Learath2
09552a6d9f
Get rid of trailing whitespaces
2017-02-21 19:11:43 +03:00
heinrich5991
1a103081b8
Merge pull request #623 from Ryozuki/pr_ctrl_backspace_fix
...
ctrl + backspace support on chat (Fixes ddnet#515)
2017-02-18 10:41:42 +01:00
Ryozuki
9af59fe8f3
tiny style changes
2017-02-18 09:02:29 +01:00
heinrich5991
0f50356e2d
Merge pull request #624 from Redix/pr_stats
...
Statboard fix
2017-02-18 02:36:33 +01:00
Redix
abcb074dcc
Fixed statboard
...
- FPM value
- reset when a player leaves
2017-02-15 16:43:45 +01:00
Ryozuki
141a256cb3
Delete useless brackets
2017-02-14 17:06:51 +01:00
Ryozuki
ec957fc00e
ctrl + backspace support on chat (Fixes ddnet#515)
2017-02-14 17:00:50 +01:00
Marcel Herd
7737129ed6
Fixed code style
2017-01-28 18:34:24 +01:00
Marcel Herd
b09bcb90a3
Added check for unbound key
2017-01-28 17:02:39 +01:00
Marcel Herd
1f58595033
Added command bind_print
2017-01-28 16:29:03 +01:00
def
1f636fe875
Fix team for echo
2017-01-06 00:30:21 +01:00
def
224b9d5443
echo command for clients prints to chat instead of mostly useless console
2017-01-06 00:17:53 +01:00
Dennis Felsing
fd7561f869
Merge pull request #604 from necropotame/clipfix
...
Skip clipped groups that are outside the screen
2017-01-05 18:11:40 +01:00
necropotame
b9e7728e2e
Skip clipped groups that are outside the screen
2017-01-05 10:24:52 +01:00
heinrich5991
b42a59f290
Fix a crash with semicolon handling and timeout codes
...
Timeout codes lead to deallocation of the player structure, the
semicolon code tried to access it, resulting in a segmentation fault.
2017-01-04 18:14:08 +01:00
heinrich5991
80ea4c8590
Disallow usage of semicolons in chat commands
...
This prevents player name exploits due to tab completion of nicknames
that could result in unwanted commands being executed.
Print a deprecation message that is supposed to be removed in the
future.
2017-01-03 14:01:51 +01:00
heinrich5991
e94c0260d7
Implement /rules in a less copy-and-pasty way
2017-01-03 13:57:22 +01:00
Dennis Felsing
57c04cf988
Version 10.3.5
2016-12-16 15:56:22 +01:00
Dennis Felsing
7296dd2b53
Merge pull request #590 from Redix/pr_finish_buffer
...
Fix buffer overflow in race recorder and ghost
2016-12-16 15:54:02 +01:00
BannZay
c6e7ad5e45
map details button name fix
2016-11-27 20:55:05 +02:00
Kevin Mersch
22753c2026
fix laser rendering on high gameticks
2016-11-18 21:28:14 +01:00
Redix
22e2489377
fixed buffer overflow in race recorder and ghost
2016-11-15 15:28:11 +01:00
Dennis Felsing
c21399c4c5
Merge pull request #567 from d3fault/master
...
dummy copyMoves/hammer disabling when dummy connecting
2016-11-07 10:20:11 +01:00
Dennis Felsing
b7cb4ee017
Merge pull request #573 from ddnet/pr-demo-speed
...
Refactor demo speed setting, add 1.5x speed (fixes #568 )
2016-11-07 10:19:05 +01:00
Dennis Felsing
3bf925f5d7
Version 10.3.4
2016-11-04 13:27:01 +01:00
def
79c37ce0fe
Version 10.3.3
2016-11-03 22:13:37 +01:00
Dennis Felsing
c92e10914a
Refactor demo speed setting, add 1.5x speed ( fixes #568 )
2016-10-28 09:31:22 +02:00
d3fault
d6b732113e
dummy copyMoves/hammer disabling when dummy connecting
2016-10-26 15:00:02 -07:00
BannZay
a96ebde93a
getting jetpack through remote
2016-10-10 15:18:06 +03:00
east
823e330a76
Merge pull request #554 from heinrich5991/pr_ddnet_random_timeouttoken
...
Generate server-specific timeout codes
2016-10-05 12:21:51 +02:00
heinrich5991
fce9ec6cda
Replace UI elements for the timeout code
...
Now you can regenerate your timeout seed with the click of a button.
2016-10-03 13:56:15 +02:00
Dennis Felsing
1db5d72879
Version 10.3.2
2016-09-29 13:50:51 +02:00
Dennis Felsing
67ef498573
Merge pull request #549 from heinrich5991/pr_ddnet_improve_pause
...
Don't show player HUD during `/pause`
2016-09-29 13:48:12 +02:00
BannZay
d4ea20001c
tee size fix
2016-09-26 21:56:13 +03:00
def
3ed6692ad7
SQL string cleanup
2016-09-25 10:41:34 +02:00
heinrich5991
c08206dd96
Don't show player HUD during /pause
for vanilla clients
2016-09-20 21:40:40 +02:00
heinrich5991
f49d60945d
Don't show player HUD during /pause
2016-09-20 16:34:49 +02:00
Dennis Felsing
5a29fa8fca
Merge pull request #544 from east/dnsbl
...
Basic DNSBL implementation
2016-09-19 11:57:07 +02:00
Dennis Felsing
98a2f459b6
Merge pull request #533 from BannZay/openCurrentMap
...
Load Current Map button added
2016-09-05 18:27:54 +02:00
east
c9a50916b3
sv_dnsbl_vote option added
2016-09-05 11:53:26 +02:00
east
678a69bf5b
basic DNSBL implementation
2016-09-05 11:38:11 +02:00
Dennis Felsing
504e01fb74
Version 10.3.1
2016-09-05 09:30:56 +02:00
Dennis Felsing
2291625305
Merge pull request #542 from ACTom/master
...
Fix lost first character when quickly input in chat
2016-09-05 09:28:36 +02:00
H-M-H
1a311585be
escape strings before applying FuzzyString
2016-09-03 18:28:11 +02:00
ACTom
3da2ba1f38
delete comment code
2016-09-01 21:17:27 +08:00
ACTom
c06e2d71cd
fix lost first character when quickly input in chat
2016-09-01 21:12:13 +08:00
Speedy Consoles
39704a04a7
made 1-tick unfreeze reliable
2016-08-27 18:03:50 +02:00
Dennis Felsing
1b9c695652
Version 10.3
2016-08-24 11:11:20 +02:00
BannZay
6f99d05ef6
Merge remote-tracking branch 'upstream/master' into openCurrentMap
2016-08-23 14:40:13 +03:00
BannZay
c658411f15
Load Current Map button added
2016-08-23 14:29:53 +03:00
Dennis Felsing
d3f04a9470
Remove accidental code
2016-08-23 12:42:01 +02:00
Dennis Felsing
5b419914fa
Merge pull request #534 from BannZay/disabling-dCopyMoves-after-disconnect
...
dCopyMoves disabling when Dummy disconnecting
2016-08-23 08:09:43 +02:00
def
c91ef1ea81
str_append instead of strcat
2016-08-21 21:14:41 +02:00
def
2aa3303884
Longer team ranks
2016-08-21 21:06:12 +02:00
BannZay
d78c565f8a
dCopyMoves disabling when Dummy disconnecting
2016-08-21 16:22:46 +03:00
BannZay
52d8efdfde
editor searchBar added
2016-08-21 03:06:01 +03:00
Freddie Wang
7aa7e463e0
fix keystroke hold after send the chat
2016-08-14 23:02:07 -07:00
Freddie Wang
e5f23cd87c
Added full IME support
...
Now with display of editing text.
2016-08-14 22:16:06 -07:00
def
320c299b68
Fix laser code
2016-08-07 22:38:45 +02:00
def
c308c348cb
Merge branch 'Display tee position in editor proof'
2016-08-03 00:11:10 +02:00
def
3b4381cf8e
Version 10.2.1
2016-07-26 20:29:02 +02:00
def
af250dd74e
Fix colors in tele number selection
2016-07-26 20:28:30 +02:00
def
e8dac3346a
Fix veto
2016-07-20 20:56:22 +02:00
Tim Schumacher
a99a9fecfc
Display tee position in editor proof
2016-07-18 08:55:35 +02:00
def
aab3beb3b0
Veto right for start and join time
2016-07-08 18:28:33 +02:00
def
d5a2df5e63
Version 10.2
2016-07-03 23:33:53 +02:00
Dennis Felsing
3960dc36d8
Merge pull request #497 from BannZay/Int_step_edition
...
PROPTYPE_INT_STEP mixed to PROPTYPE_INT_STEP + PROPTYPE_INT_SCROLL
2016-07-03 23:31:12 +02:00
def
992c148dce
Fix messages a bit
2016-07-03 23:23:33 +02:00
Dennis Felsing
c323e178d9
Merge pull request #510 from timakro/pr_unlock_team_tile_msg
...
Send chat message when team is unlocked by a tile
2016-07-03 23:22:51 +02:00
Tim Schumacher
96d05e3370
Send chat message when team is unlocked by a tile
2016-06-30 17:55:34 +02:00
def
4681f69b1b
Introduce cached ticks for client again, this time with workaround for
...
particles. Hopefully not many other parts of the code will need this.
2016-06-28 23:36:34 +02:00
H-M-H
35bd378a62
fixed RandomUnfinishedMap
...
do not execute this function several times even after success
2016-06-22 02:00:29 +02:00
def
e518a701a3
Clean up sql dbg_msg calls
2016-06-15 11:52:40 +02:00
def
e0ec97174a
Try to fix broken /map
2016-06-10 03:05:47 +02:00
def
eef3980b18
Revert "Highlight own whispers in F1"
...
This reverts commit 8d081140b0
.
2016-06-03 22:47:38 +02:00
def
f1cdbe8696
More accurate ping by refreshing servers on second frame instead of first (might be caused by intial font rendering)
2016-06-03 19:50:49 +02:00
def
d137d0c19d
Merge branch 'master' of github.com:ddnet/ddnet
2016-06-03 11:30:33 +02:00
def
097b6cabf3
Fix cut off names in scoreboard (still overlap with clan though)
2016-06-03 11:30:20 +02:00
Andrew
e6eb607cc8
PROPTYPE_ANGLE_SCROLL mixed
2016-06-02 17:53:52 +03:00
Andrew
a624db90b4
editeable proptype_int_step
2016-06-02 14:50:06 +03:00
HMH
bb9d23bb73
sql-save: forgot a line
2016-05-31 12:32:09 +02:00
HMH
28d116217b
fixed resetting of saving-state of teams (was not reset always)
...
destructor of CSqlTeamSave takes care of that now
while doing so the allocation of CSaveTeam has been moved to the stack
2016-05-31 00:03:28 +02:00
H-M-H
ada3b9a5db
Merge pull request #378 from H-M-H/sqlmasters
...
separate sqlwrite and sqlread server
2016-05-28 23:00:16 +02:00
rbmz
8d081140b0
Highlight own whispers in F1
2016-05-27 08:33:43 -03:00
def
63b92b729e
Fix completion rendering on new input
2016-05-22 21:31:35 +02:00
def
0217a76771
accept input when opening, but not at first frame to discard the input that caused the console to open ( fixes #443 again)
2016-05-22 21:23:33 +02:00
def
d1770e4aa5
Version 10.1.1
2016-05-22 12:17:59 +02:00
def
c437170856
Fix cl_showhud_score
2016-05-22 12:12:02 +02:00
def
f193099f94
Version 10.1
2016-05-22 02:20:51 +02:00
def
1d98ff031c
Immediately accept input while console is still opening ( fixes #484 )
2016-05-22 02:12:52 +02:00
def
3d3827a57d
Don't render brush when picker is shown
2016-05-22 02:01:22 +02:00
def
668b0b887d
Clean up modifier button
2016-05-22 01:43:33 +02:00
Dennis Felsing
ba012a353b
Merge pull request #483 from BannZay/mixedButtons
...
Switcher,speeduper,tuner,teleporter mixed to one button
2016-05-22 01:30:17 +02:00
def
86495bbad0
Add support for old race server racetime messages in HUD, including checkpoint time difference
2016-05-22 01:26:15 +02:00
HMH
ea5892b1ce
don't clear sql-mapstring twice
2016-05-21 22:53:49 +02:00
def
af8317c2e9
Don't allow restarting after touching finish line on solo server
2016-05-21 21:51:38 +02:00
H-M-H
b648b530d5
Merge branch 'master' into sqlmasters
2016-05-20 23:40:29 +02:00
def
3c54f443b2
Make sv_join_vote_delay work for /map votes and make the number of seconds configurable
2016-05-20 20:05:47 +02:00
def
aff85462aa
Update messages a bit
2016-05-20 18:36:32 +02:00
def
ede6a9f93f
More uniform /times output (thanks Soreu)
2016-05-20 18:28:33 +02:00
Tim Schumacher
22ad56486a
revert automatically add linebreaks in broadcasts
2016-05-19 21:53:01 +02:00
Andrew
adab934c99
Switcher,speeduper,tuner,teleporter mixed to one button
2016-05-15 18:17:57 +03:00
Tim Schumacher
aeadffa585
calculate type height in ddnet browser type filter
2016-05-15 10:19:15 +02:00
Tim Schumacher
434b9345d8
automatically add linebreaks in broadcasts
2016-05-15 10:19:15 +02:00
def
d2f5714042
Sort file names case-insensitively
2016-05-15 00:06:32 +02:00
def
475df14134
Fix editor popups a bit
2016-05-14 15:16:52 +02:00
def
d6ca9dcb7b
Version 10.0.3
2016-05-14 01:17:51 +02:00
def
d1275f239a
cl_show_ids also shows ID in chat ( fixes #454 )
2016-05-14 01:17:18 +02:00
def
ff747953b4
Make envelopes unsynchronized by default and explain the setting better ( fixes #479 )
2016-05-14 00:42:40 +02:00
def
b0b2774695
Clean up other paste code a bit
2016-05-11 18:00:27 +02:00
def
b7d4beccea
Fix buffer overflow when pasting text (thanks to Im 'corneum)
2016-05-11 17:51:27 +02:00
H-M-H
2bcbe52d14
fixed /load message
2016-05-11 15:54:09 +02:00
H-M-H
42fc8a0fe2
fixed use of Str and ClrStr
2016-05-11 15:26:16 +02:00
H-M-H
6a2438e1cf
fixed includes
2016-05-11 15:01:53 +02:00
def
03a48dd09f
Add code to remove unused tiles on game and front layers (commented out)
2016-05-11 12:13:54 +02:00
def
695bf346ac
Make gfx_refresh_rate functional ( fixes #255 )
2016-05-10 17:43:27 +02:00
H-M-H
3b6baaa8d3
made CSqlData const for threadfunctions and added a class for sqlstrings
...
CSqlData is const for threadfunctions now to avoid modification from
within the threadfunctions as these might be called several times.
Previously this was a problem as ClearString could possibily be applied
multiple times to the same string.
To solve this the class CSqlString has been added. This class takes a
const char* and copies it. Additionally a clearstring is created from
the given const char*. This enables access to the original as well as
the cleared string safe for sql-statements.
sql_string_helpers got an own source file now.
A crashbug from CSqlServer has been fixed (pointer has not been set
back to 0)
2016-05-09 23:35:23 +02:00
heinrich5991
fe3e05cee5
Merge pull request #474 from Henningstone/pr-ddnet-chat-input-jump
...
Jump to special characters with CTRL+arrowkeys in chat input
2016-05-09 18:07:41 +02:00
def
37e822ba0f
Version 10.0.2
2016-05-08 19:41:06 +02:00
def
f3a4069867
Set gfx_highdpi to 0 as default (needs someone to fix it on Win >= 8.1 and Mac)
2016-05-08 19:40:53 +02:00
def
9bd30ce447
Make high-dpi screen support optional
2016-05-07 17:47:05 +02:00
def
e0ee7a2bb9
Merge branch 'master' of github.com:ddnet/ddnet
2016-05-07 16:12:41 +02:00
def
bfcf0c4067
Fix auto reconnect abortion
2016-05-07 16:12:23 +02:00
def
25fda2751c
Fix "vanilla skins only" setting in menu
2016-05-07 15:59:58 +02:00
def
c325b08087
Add inp_mouseold for warped mouse input
2016-05-07 15:59:13 +02:00
Henningstone
6a10c96e02
Fix cursor behaviour when skipping backwards
2016-05-07 01:01:56 +02:00
Henningstone
cdc37493c2
Removed the check for uppercase letters
2016-05-06 19:48:36 +02:00
Henningstone
997713f9a1
Jump to special characters with CTRL+arrowkeys in chat input
2016-05-06 17:16:31 +02:00
Tim Schumacher
d80d2de134
fix tab
2016-05-06 16:45:30 +02:00
def
41f34aa187
Add vanilla check for entities_clear
2016-05-05 20:21:34 +02:00
def
072eadbb99
Use DDNet entities by default, fixes seeing unhookable from start (thanks to kamillentee)
2016-05-05 20:17:13 +02:00
Dennis Felsing
bc907f319d
Merge pull request #467 from timakro/master
...
rename some auto game tile placers
2016-05-05 18:59:53 +02:00
Dennis Felsing
47455fa78b
Merge pull request #468 from timakro/pr_fix_editor_gametiles_automapper_overlap
...
fix editor gametiles automapper overlap
2016-05-05 18:59:41 +02:00
Dennis Felsing
e7af8cfdd7
Merge pull request #466 from Ryozuki/pr_showpred
...
Fixed cl_showping (now cl_showpred)
2016-05-05 18:59:01 +02:00
def
513c742197
Fix cl_antiping_players to be off on solo (thanks HMH)
2016-05-05 18:57:35 +02:00
Tim Schumacher
78f8c9978d
fix editor gametiles automapper overlap
2016-05-05 18:40:38 +02:00
Tim Schumacher
afd0e5a3eb
rename some auto game tile placers
2016-05-05 18:23:04 +02:00
Ryozuki
82d2a994ed
Fixed cl_showping (now cl_showpred)
2016-05-05 18:07:00 +02:00
H-M-H
4bf1a68292
do not write nullbytes to failed_sql.sql
2016-05-05 13:23:35 +02:00
Henningstone
77b584c12f
Forbid showing /top5 from rank 0 on
2016-05-05 01:33:28 +02:00
H-M-H
30ca8d8774
made writing to sql-failurefile threadsafe
2016-05-04 23:37:34 +02:00
gamertyp
b479dd412c
Removed a tab
2016-05-04 23:37:02 +02:00
gamertyp
e9378973de
Re-ordered the Gametiles-menu
2016-05-04 22:33:10 +02:00
gamertyp
7a3f96431a
Re-ordered the Gametiles-menu
2016-05-04 22:30:16 +02:00
def
2df9c79483
proper str_copy size ( fixes #461 )
2016-05-04 18:43:54 +02:00
def
1b668047c8
Clean up auto reconnect and make it independent of rendering
2016-05-04 18:23:00 +02:00
H-M-H
5dc47ede58
put sql_string_helpers into an own namespace
2016-05-04 16:51:18 +02:00
H-M-H
a7c0cd58ee
fixed birthdaycheck and the format of sql-inserts for the failure-file
2016-05-04 16:47:53 +02:00
def
45971ee8e9
no player antiping when appropriate tunings set
2016-05-04 16:01:58 +02:00
H-M-H
cd41220a44
wait for score-threads on shutdown
2016-05-04 15:32:24 +02:00
H-M-H
e351080dd3
removed double semicolons
2016-05-04 00:24:54 +02:00
H-M-H
a93e845e6d
checkbirthday now also sends a broadcast to the 'birthdaychild'
2016-05-03 23:50:42 +02:00
H-M-H
94f163f094
added CSqlPlayerData for simple tasks like getting best time
2016-05-03 23:24:44 +02:00
H-M-H
c9e65c7931
Merge branch 'master' into sqlmasters
2016-05-03 23:07:24 +02:00
H-M-H
c9b64053d0
cleaned up structure of sql_score.cpp
2016-05-03 20:45:58 +02:00
H-M-H
d0cebb576d
sql-score can now handle mapchanges/reloads
2016-05-03 20:36:17 +02:00
Dennis Felsing
230784d234
Merge pull request #458 from Ryozuki/pr_showping
...
Added cl_showping
2016-05-03 16:12:30 +02:00
Ryozuki
5c7856ee59
Added cl_showping
2016-05-03 16:06:10 +02:00
def
bad26a3a8a
Pressing shift makes slider move slower ( fixes #455 )
2016-05-03 15:11:52 +02:00
def
61e47422f6
Clean up debug messages a bit (lower case, no useless errors)
2016-05-02 21:35:32 +02:00
Tim Schumacher
50f9e37282
disable deepfly patch applied at wrong position
2016-05-02 16:25:34 +02:00
def
8af1e59fc6
Version 10.0.1
2016-05-01 23:11:11 +02:00
def
7e7bfcddd2
Fix console autocompletion ( fixes #451 )
2016-05-01 20:30:34 +02:00
def
2a92a171da
Merge branch 'master' of github.com:ddnet/ddnet
2016-05-01 19:34:40 +02:00
def
f6518e4d25
Remove unesed cl_version_server
2016-05-01 19:34:33 +02:00
Dennis Felsing
07aa6c6d9b
Merge pull request #449 from timakro/master
...
added auto game tile placer for hookthrough & show button to mapper when placing unused tiles
2016-05-01 18:18:30 +02:00
Tim Schumacher
aeea3777a3
show button to mapper when placing unused tiles
2016-05-01 18:12:20 +02:00
Tim Schumacher
e61456f381
added auto game tile placer for hookthrough
2016-05-01 17:44:02 +02:00
def
b6733a1827
Update credits
2016-05-01 17:14:02 +02:00
def
88780b8fbc
Use new ddnet update server
2016-05-01 12:09:02 +02:00
def
29a26a6633
Version 10.0
2016-05-01 12:07:16 +02:00
def
a1151fd296
ban -> Timeout
2016-05-01 11:15:45 +02:00
def
13143eac23
Reconnect for timeout instead of bans, some simplification
2016-05-01 11:12:07 +02:00
Dennis Felsing
bd40eec54f
Merge pull request #446 from timakro/pr_improve_hookthrough_shortcut
...
hookthrough shortcut now works for game and front
2016-05-01 10:13:33 +02:00
Dennis Felsing
1ccbc7a69b
Merge pull request #447 from timakro/pr_dont_remove_unused_tiles
...
dont remove unused tiles
2016-05-01 02:50:09 +02:00
Tim Schumacher
01024252b5
fix editor buttons for 5:4 resolutions
2016-05-01 02:34:06 +02:00
Tim Schumacher
04887e44f8
remove useless function
2016-05-01 01:54:37 +02:00
Tim Schumacher
70ffbbbbf9
hookthrough shortcut now works for game and front
2016-05-01 01:47:29 +02:00
def
915bce38fc
Toggling console with custom bind doesn't print that key on console ( fixes #443 )
2016-05-01 00:26:03 +02:00
def
a0a7d96ca0
Fix statboard bind
2016-04-30 23:39:42 +02:00
Tim Schumacher
f1b6848d85
dont remove unused tiles
2016-04-30 22:37:17 +02:00
Dennis Felsing
44d16d2374
Merge pull request #441 from timakro/master
...
fix hooktele on unhook, broke with new hookthrough
2016-04-30 21:29:27 +02:00
def
2cc236cb8c
Make spectator work again
2016-04-30 21:28:44 +02:00
Tim Schumacher
3378811ecf
fix hooktele on unhook, broke with new hookthrough
2016-04-30 21:13:54 +02:00
Dennis Felsing
f016a0eb1f
Merge pull request #436 from timakro/pr_other_gametype_entities_clear
...
added entities clear for other gametypes
2016-04-30 20:28:27 +02:00
def
4761608329
Input fixes from TW master for mouse wheel
2016-04-30 20:11:26 +02:00
def
1446adee2c
Window resizing only with X11 (not on Windows and Mac OS X)
2016-04-30 19:19:19 +02:00
def
0667864657
Fix double click in demos menu
2016-04-30 18:18:22 +02:00
def
df12171040
Merge branch 'master' of github.com:ddnet/ddnet
2016-04-30 18:00:08 +02:00
def
644fec7e55
Resize window without restarting client
2016-04-30 17:59:58 +02:00
Tim Schumacher
0a972185dc
prevent placing unused entity tiles in game layer
2016-04-30 11:02:00 +02:00
def
74f4ad77d6
fixed utf8 text input from tw master
2016-04-30 04:02:32 +02:00
def
7a5b79e48a
More SDL2 graphics goodness, partially from TW master
2016-04-30 00:43:11 +02:00
def
11e3fd55db
seperated ingame input handling from rendering (from TW master)
2016-04-29 23:05:20 +02:00
Dennis Felsing
09284c3ba9
Merge pull request #434 from timakro/pr_prevent_unused_tiles
...
Prevent placing unused tiles in the editor
2016-04-29 22:36:35 +02:00
def
2e0ca0f4b4
Fix SDL2 compilation
2016-04-29 21:58:24 +02:00
def
e8965bee68
Some keyboard input changes from teeworlds master
2016-04-29 21:56:38 +02:00
def
354696afb7
switch between fullscreen and windowed mode without restarting the client (by oy)
2016-04-29 21:56:38 +02:00
def
a1403ef457
Make sure GetClipboardText's null returns are handled properly
2016-04-29 21:56:38 +02:00
def
632db36fe4
Add clipboard copy&paste support (by swick)
2016-04-29 21:56:38 +02:00
def
db8a126315
Merge swick's SDL2 branch
2016-04-29 21:55:48 +02:00
def
97743b8e70
Also ctrl-r to refresh and in demo browser as well
2016-04-29 20:39:25 +02:00
Tim Schumacher
4a22e762ff
added entities clear for other gametypes
2016-04-29 19:29:19 +02:00
Tim Schumacher
d69133c877
prevent placing unused tiles in the editor
2016-04-29 19:23:34 +02:00
def
e0e7f20196
added sv_deepfly (default 1) to disable deepfly (by timakro)
2016-04-29 18:08:53 +02:00
Henningstone
8279855bb0
Show ingame Ghost tab only on race servers
2016-04-28 22:40:46 +02:00
def
7dd593a35e
A bit nicer ingame browser menu corners
2016-04-27 23:54:26 +02:00
def
d3a411afa6
Key up/down only change selected server, not friend list
2016-04-27 20:26:33 +02:00
def
dc162d02fc
F5 to refresh server browser
2016-04-27 20:17:10 +02:00
def
ec7d28ed86
Change ingame menu layout a bit: Browser, Ghost directly instead of Network tab
2016-04-27 20:14:03 +02:00
def
b495b1681c
Double click works on votes (and vote window disappears after server setting vote)
2016-04-27 20:04:31 +02:00
def
740868c938
Add cl_show_local_time_always ( fixes #319 )
2016-04-27 19:22:55 +02:00
def
67bff95a72
Merge remote-tracking branch 'timakro/new_hookthrough'
2016-04-27 18:59:51 +02:00
def
d019eb87c6
Use default page when ingame browser uses invalid page ( fixes #345 )
2016-04-27 17:59:12 +02:00
def
618dc9a6b0
Alert if layer size too big in editor (thanks to Lady Saavik, fixes #404 )
2016-04-27 17:49:14 +02:00
def
0f5611c2f0
Add function to filter chat out of demo when slicing ( fixes #382 )
2016-04-27 17:05:30 +02:00
def
11a07f2c69
Merge branch 'master' of https://github.com/timakro/ddnet into timakro-master
2016-04-27 16:11:14 +02:00
def
3aeb1ae23c
Version 9.3.1
2016-04-27 01:29:20 +02:00
def
ecd7b48339
Version 9.3
2016-04-26 23:07:15 +02:00
def
378a713b1d
No antiping in demo player
2016-04-24 01:57:01 +02:00
def
750f30b6b9
Don't use hardcoded table name
2016-04-23 16:42:54 +02:00
def
93ce3c84c3
Add fake tuning for hammer hit
2016-04-20 11:59:14 +02:00
def
8fdeb9df58
Don't use antiping when spectating
2016-04-17 18:36:33 +02:00
def
f524c71c38
Fix a few default binds
2016-03-26 01:09:34 +01:00
def
2f170c4d1c
Actually call new birthday function
2016-03-26 00:36:54 +01:00
def
fc2bf86174
Birthday check when player joins
2016-03-26 00:20:18 +01:00
def
52fcc6e550
Fix sv_hide_score
2016-03-26 00:19:44 +01:00
def
b2105ef3ec
Revert "Nicer formatting for SQL stats"
...
This reverts commit c36b7efe1d
.
2016-03-09 23:45:48 +01:00
def
64e4f99102
Revert "Further improvement on ranks formatting"
...
This reverts commit fad318e86f
.
2016-03-09 23:45:43 +01:00
def
fb03247580
muteid and muteip are in seconds, not minutes
2016-03-09 01:48:17 +01:00
def
fad318e86f
Further improvement on ranks formatting
2016-03-08 17:53:49 +01:00
def
c36b7efe1d
Nicer formatting for SQL stats
2016-03-08 17:36:14 +01:00
def
ce7eb0aac1
Add UNLOCK_TEAM tile (someone draw a tile please)
2016-03-07 18:04:59 +01:00
H-M-H
e39829ef7c
killer of locked team will get strong hook on respawn
2016-03-04 22:55:12 +01:00
heinrich5991
e8be975f5b
Merge pull request #417 from awaysoft/add_simplified_chinese_support
...
Add font support for chinese, japanese, korean.
2016-03-03 16:48:28 +01:00
Tom
ff1c6705d6
fix compile warning
2016-03-03 23:40:19 +08:00
def
f1ff7e80ea
Version 9.2
2016-03-02 22:47:50 +01:00
def
e577c8e9ae
Fix web links
2016-02-23 01:05:37 +01:00
H-M-H
53a004fa74
reset preferred sql-server to the first specified
...
on map load
2016-02-20 15:33:35 +01:00
H-M-H
2bd6d0c381
do not always try to connect to unreachable sqlservers
...
but instead remember the last reachable server
- some cleanup
- added timeout of 10 seconds to sql-connections
2016-02-20 15:33:35 +01:00
H-M-H
783c2161f1
sql_score init is threaded now
2016-02-20 15:33:35 +01:00
H-M-H
8dacd88755
more generic format of saved sql-inserts
2016-02-20 15:33:35 +01:00
H-M-H
88ed7391da
handle exceptions from sql properly
...
- write failed sqlinserts to a file
- improved structure
2016-02-20 15:33:35 +01:00
H-M-H
1314085928
restructured sqlconnection
...
reading from and writing to several different servers is now possible
TODO:
-handle Exceptions properly (try another sqlserver)
-if everything fails while writing write the insert to a file
2016-02-20 15:33:35 +01:00
H-M-H
2d41ce3527
try next sqlmaster also if the current write fails
2016-02-20 15:33:35 +01:00
H-M-H
c4ab59e4c3
fixed use of locks for threading:
...
each sqlserver has its own lock now
-> it is required that every connect call is followed by a disconnect call
2016-02-20 15:33:35 +01:00
H-M-H
15f2e07c48
moved sqlserver stuff into CServer-class
...
as sqlconnections should not last only
until next mapreload
2016-02-20 15:33:35 +01:00
H-M-H
6ba10d2719
mastersqlservers are working now
...
TODO: move the sqlserver objects somewhere else
so they wont be destroyed on every reload
2016-02-20 15:33:35 +01:00
H-M-H
5e4456584f
started with sqlmasters
...
+ added #ifdef for sql_server.cpp
(fixes compilation for release mode)
2016-02-20 15:33:35 +01:00
H-M-H
9ed66f7adc
Cleanup of Sqlconnection
...
-moved all connectionstuff to a new class
-moved sqlstring functions to an own file
-do not give threads access to CSqlScore
2016-02-20 15:33:35 +01:00
Tim Schumacher
6e7dbec76e
made fading border in menu more customizeable
2016-02-16 17:04:46 +01:00
Tim Schumacher
e183a17117
removed other gametypes files and gametype setting
2016-02-16 14:29:11 +01:00
Tim Schumacher
9e6e062793
added cl_skin_filter_string for skin quick search
2016-02-14 19:51:49 +01:00
Tom
26a1a9f331
replace strstr to str_find
2016-02-13 18:51:21 +08:00
Tim Schumacher
94f3da4a47
removed localize for search symbol
2016-02-12 21:31:58 +01:00
Tim Schumacher
438720959b
added quick search for skin selection
2016-02-12 18:52:10 +01:00
Tim Schumacher
7276aeb15b
move kill messages down when fps is shown
2016-02-12 15:53:57 +01:00
Tim Schumacher
ef94797c02
forbid placing hookthrough shortcut in front layer
2016-02-09 17:02:14 +01:00
Tom
7f95961078
fix a compile problem in linux
2016-02-06 00:38:19 +08:00
Tom
96510284e3
Add font support for chinese, japanese, korean.
...
Added some character to DejaVuSans Font, so Language List can show CJK names.
Modify code to let ddnet choose DejavuWenQuanYiMicroHei when user choose CJK language, this font is merge from Dejavu and WenQuanYiMicroHei.
2016-02-06 00:13:57 +08:00
H-M-H
42a68636b5
tweaked respawndelay a bit
2016-02-02 21:14:46 +01:00
H-M-H
cb1c63c652
Merge pull request #410 from heinrich5991/pr_ddnet_join_vote_delay
...
Add sv_join_vote_delay
2016-01-29 12:58:05 +01:00
def
aded433400
Fix client version number (a bit too late, oops)
2016-01-27 02:18:10 +01:00
Dennis Felsing
269bd3df4b
Merge pull request #412 from heinrich5991/pr_ddnet_overlong_utf8_server
...
Kick people using overlong UTF-8 sequences
2016-01-27 02:15:19 +01:00
def
0a49428e21
Veto considers time on server not in current race
2016-01-27 02:14:46 +01:00
heinrich5991
a1923b154b
Only ignore messages on invalid UTF-8, don't kick players
2016-01-27 01:48:19 +01:00
heinrich5991
d4eefefa26
Kick people using overlong UTF-8 sequences
...
This works around the bug in older clients (including vanilla) that
interpret those sequences incorrectly.
2016-01-27 01:24:02 +01:00
heinrich5991
90ba4c5986
Make join vote delay the default
2016-01-22 17:44:53 +01:00
heinrich5991
957844e234
Add comment about when sv_join_vote_delay
doesn't apply
2016-01-21 00:09:11 +01:00
heinrich5991
384668928b
Add sv_join_vote_delay
...
This is a new delay that specifies how many seconds you have to wait
before making your first vote. In case the server was only recently
filled (e.g. by a map change or if people start joining an empty
server), this delay is disabled (in the first case, because it's normal
to join after a map change, in the second case because you might have
joined the empty server to vote for a different map).
2016-01-19 23:52:28 +01:00
heinrich5991
bb35e57f6c
Clarify that the unit for ban time is seconds
2016-01-19 22:26:20 +01:00
heinrich5991
c0a90f98b8
Fix length of vote reason display in chat
...
Fixes #407 .
2016-01-19 15:00:41 +01:00
heinrich5991
294a962141
Fix a few style issues in voting code
2016-01-19 14:58:52 +01:00
Väinö Mäkelä
cb84cf2216
Improve the handling of invalid skins.
...
CDataFileReader::Open(): Check the return status of io_read()
before reading the buffer, to avoid reading uninitialized data
in case the file was shorter than a full header.
CSkins::SkinScan(): Check that the image is high enough.
2016-01-17 10:48:21 +02:00
def
ac61c8fed5
Format cl_showid a bit nicer
2016-01-10 22:35:14 +01:00
H-M-H
2b99131907
Version 9.1
2016-01-04 15:21:59 +01:00
H-M-H
8e24ef8020
commanddescription can now be placed directly in
...
the commandparamsstring: "s[file]"
2015-12-28 16:19:52 +01:00
H-M-H
11a426c18b
added (console-)command usage
2015-12-23 14:29:31 +01:00
H-M-H
c38cba9bd0
Merge pull request #373 from H-M-H/eyewheel
...
Eyewheel (by Chairn and CytraL)
2015-12-01 14:02:22 +01:00
H-M-H
b3b38dd0d3
minior cleanup of eyewheel
2015-11-16 21:15:37 +01:00
H-M-H
2fbccb8133
Merge pull request #366 from nzyuzin/master
...
Reset statboard after a game restart
2015-11-15 19:09:43 +01:00
heinrich5991
31d9b8d001
Cleanup of #369
2015-11-15 14:40:07 +00:00
user578
403114906a
Changed comment.
2015-11-15 02:44:40 +03:00
H-M-H
0af5af2f0f
fixed eyewheel (originally from Chairn)
2015-11-15 00:31:24 +01:00
H-M-H
8d9dd65f0b
Merge branch 'master' into pr/317
2015-11-15 00:05:04 +01:00
timgame
ba60cf509a
use index 5 for a shortcut hookthrough tile
2015-11-15 00:00:43 +01:00
user578
2c48229370
Fix wrong calculation of weapon Angle in demo player. Changed constants to pi.
2015-11-14 19:34:48 +03:00
user578
670a028815
Fix wrong calculation of weapon Angle in demo player
2015-11-13 23:38:49 +03:00
Nikita Zyuzin
e63e9eed54
Replace diff > 2 with != in RoundStartTick comparison
2015-11-13 14:40:02 +04:00
timgame
e5f6356899
allow hookblocker in front layer
2015-11-12 19:46:52 +01:00
timgame
a6a4187fb1
add new hookthrough and hookblocker
2015-11-12 19:46:27 +01:00
timgame
9f45090ca6
added chat msg to reveal killer of locked team
2015-11-12 18:59:58 +01:00
Nikita Zyuzin
d7f2fc95e7
Reset statboard after a game restart
...
Fixes #335
2015-11-12 13:06:05 +04:00
H-M-H
f0d10ac62d
better get dummyinput directly from CControls
2015-11-10 20:29:12 +01:00
H-M-H
50c80a1cfb
classmembers shall start with m_ !
2015-11-09 20:27:18 +01:00
timgame
dc89301292
clean up intersect line code
2015-11-08 10:20:44 +01:00
timgame
988a8f591a
remove colflags
2015-11-08 10:20:10 +01:00
Tim Schumacher
201782dbfc
changed setting==0 to !setting
2015-11-07 20:17:41 +01:00
Tim Schumacher
cbffcd4126
Merge pull request #340 from rbmz/master
...
cl_text_entities (show/hide text in entities) for performance
2015-11-07 20:13:21 +01:00
H-M-H
0e532adb67
Implemented Helper accesslevel
...
basically just copied everything from moderator-accesslevel implementation
note however that mod_command changed to access_level
2015-10-23 04:21:07 +02:00
H-M-H
bf8aea3857
Merge pull request #333 from heinrich5991/pr_ddnet_antiping_no_reset
...
Don't reset `cl_antiping` subconfig on restart
2015-10-22 00:01:28 +02:00
Tim Schumacher
878f8ef872
Merge pull request #343 from cinaera/pr_layer_render
...
Fix duplicated rendering of the game layers and cleanup outdated code
2015-10-21 02:50:03 +02:00
Henningstone
6fa6190f84
Fix menus music playing ingame, closes #349
2015-10-16 19:31:01 +02:00
heinrich5991
71991eeb42
Set cl_antiping_* to 1 by default
...
This would also happen anyway as no config is treated as config
version 0, since cl_antiping is 0, all the subconfigs would be set to 0.
2015-10-08 09:46:07 +01:00
H-M-H
60e6b87130
Merge pull request #339 from H-M-H/EnvelopesFix
...
fixed Envelopes-Bugs
2015-10-07 21:55:17 +02:00
Tim Schumacher
edb2270ca1
removed include iostream
2015-10-07 20:10:19 +01:00
timgame
fb8778c717
only reload servers when changing tab
2015-10-07 20:10:02 +01:00
BeaR
37c6454473
Fix duplicated rendering of the game layers and cleanup outdated code
2015-10-05 12:51:19 +02:00
rbmz
1e47102aef
cl_text_entities (show/hide text in entities) for performance
...
Signed-off-by: rbmz <rbmz@users.noreply.github.com>
2015-09-28 01:04:57 -03:00
def
24f973613a
Fix menu
2015-09-26 01:15:08 +02:00
def
05fcc58b2f
Oops, next SQL server compilation fix
2015-09-23 14:05:54 +02:00
def
97152e5cbf
Hopefully fix SQL server compilation with Visual Studio
2015-09-23 11:54:20 +02:00
H-M-H
930dd8f2ad
set colors to 1.000 instead of 0.001 for new colorenvelopes
2015-09-18 23:47:07 +02:00
H-M-H
e6cf2241b2
fixed Envelopes-Bug see here: http://forum.ddnet.tw/viewtopic.php ?
...
f=5&t=2277
2015-09-18 21:05:44 +02:00
def
aa4bbed178
Hopefully fix editor crash with RGB (no transparency) images
2015-09-18 17:15:30 +02:00
def
336e916548
Add option not to create sql tables
2015-09-15 09:28:18 +02:00
Chairn
947cca37d6
Added cl_eye_duration to set the duration of eye emote.
2015-09-11 15:41:53 +02:00
heinrich5991
27ed6d7033
Fix the help text of cl_antiping
and friends
2015-09-10 12:29:58 +01:00
heinrich5991
ba4eab1f1c
Don't reset antiping subconfiguration on startup
2015-09-10 12:09:38 +01:00
heinrich5991
48ecf3d5a1
Merge pull request #323 from Chairn/drag_range
...
Added sv_dragger_range to control the length of the laser draggers.
2015-09-07 11:12:52 +01:00
def
a8cadc21eb
Last one I hope
2015-09-05 18:05:29 +02:00
def
ffe9235151
Oops, another one
2015-09-05 17:59:37 +02:00
def
96f2a380f6
Get rid of warning
2015-09-05 04:52:18 +02:00
def
7487923774
Fix Windows thread handle leak
2015-09-05 04:49:22 +02:00
def
0fa06c4a5e
Server names may be 4 bytes long
2015-09-05 00:48:11 +02:00
def
40a36a3063
Minor fix
2015-09-04 11:22:19 +02:00
Chairn
8148a29108
Removed useless comment line
2015-09-01 23:17:45 +02:00
Chairn
c5443d8e34
Added command sv_dragger_range. Maybe need some more tests.
2015-09-01 23:15:48 +02:00
oy
e91d26b8ac
force vital check on essential cl/srv messages and added additional sequence checking
2015-09-01 13:50:45 +02:00
Chairn
3552e1a042
Added eye wheel. Render only on ddrace/race/ictf+/dm+/gctf+ server.
2015-08-30 21:42:16 +02:00
def
ed49e3214a
Some more minor settings menu fixes
2015-08-28 20:44:07 +02:00
def
865d50950d
Put space more to left in editor browser
2015-08-28 20:34:19 +02:00
def
2b1aa40d77
Fix editor color value to be shown with # instead of 0x
2015-08-28 20:28:53 +02:00
def
ecc9cbfe99
Fix background map in settings in 5:4 resolution
2015-08-28 20:26:39 +02:00
def
b743119d0d
Version 9.0.2
2015-08-28 03:56:35 +02:00
def
e39fb6b535
Very ugly fix for color picker in editor
2015-08-28 01:28:09 +02:00
def
ecfa185601
Fix settings positioning
2015-08-28 01:18:45 +02:00
def
f46767cfae
Fix: Mousesens in UI independent of Dyncam
2015-08-27 22:19:25 +02:00
def
ee3baa6f53
Version 9.0.1
2015-08-27 21:57:07 +02:00
def
8c0febdd41
Another dyncam fix
2015-08-27 21:56:41 +02:00
def
043d718698
Fix dyncam mousesens
2015-08-27 21:52:10 +02:00
def
703f1bc99d
Hopefully fix Android compilation
2015-08-27 20:52:06 +02:00
def
1dddf42cbb
Simplify Dyncam and fix #311
2015-08-27 20:26:05 +02:00
east
ff09eff526
arrow up/down in demo browser
2015-08-27 16:59:36 +02:00
def
1ed044fe0d
Fix up and down keys in server browser
2015-08-27 16:42:21 +02:00
def
8511a4d1f4
No magic string
2015-08-27 16:32:45 +02:00
def
7693d8d9d6
Fix invalid free with %current%
2015-08-27 16:32:28 +02:00
def
e662a09b7a
White space cleanup, DOS->UNIX
2015-08-27 16:28:34 +02:00
Dennis Felsing
ed5d8faa2a
Merge pull request #310 from heinrich5991/pr_ddnet_map_settings_fix_settings_compare
...
Fix settings compare
2015-08-27 16:24:39 +02:00
heinrich5991
3a069093d7
Fix settings compare
...
It was just using a heuristic, comparing the first 24 bytes. Memory unsafety
for configs that were shorter than 24 bytes.
2015-08-27 16:20:56 +02:00
def
c1ca91560e
Improve settings menu a bit
2015-08-27 16:20:16 +02:00
Dennis Felsing
a32aca50bf
Merge pull request #306 from Chairn/pr_custom_background
...
Added custom background in entities mod.
2015-08-27 16:08:46 +02:00
def
b832672412
Version 9.0
2015-08-27 15:53:05 +02:00
heinrich5991
cc0d0fa728
Fix config_store for old maps that don't contain MAPITEMTYPE_INFO
...
Just add one in this case.
2015-08-27 15:46:51 +02:00
def
f27ee72d2d
Remove unused variables
2015-08-27 15:34:33 +02:00
def
33f20d7dd3
Indentation fixes
2015-08-27 15:33:24 +02:00
east
cb4909d656
Changed Created: info
2015-08-27 15:05:24 +02:00
east
675c6eb1e0
Demo browser column listbox added
2015-08-27 15:05:24 +02:00
east
da17b795c5
progress on column listbox
2015-08-27 15:05:24 +02:00
heinrich5991
d56f80f0f5
Fix temp file creation in case no temp file is needed
2015-08-27 13:37:34 +02:00
heinrich5991
e954e55533
Removed *_dump
and *_reset
from the list of game commands
2015-08-27 13:00:43 +02:00
heinrich5991
7d9228f3d5
Fix a severe bug with config saving
...
Thought I had fixed that long ago...
2015-08-27 12:55:35 +02:00
heinrich5991
d13ebf93a2
Add config_store
and config_retrieve
tool
2015-08-27 12:55:35 +02:00
heinrich5991
db696c0e78
Fix the 54e61bfe39
cherry-pick, re-add missing line
2015-08-27 12:55:34 +02:00
heinrich5991
bf1f7d6ccd
(Safely) execute settings embedded in maps
2015-08-27 12:55:34 +02:00
heinrich5991
6a17d2700d
Fix saving the config into the map
2015-08-27 12:51:24 +02:00
SushiTee
c025dc2235
saving server settings within the map and loading them on init
2015-08-27 12:51:24 +02:00
SushiTee
7bd0f276d4
saving server settings within the map and loading them on init
2015-08-27 12:51:24 +02:00
heinrich5991
a3246ed099
Save the config into the map when the server loads the map
2015-08-27 12:51:24 +02:00
Chairn
4b270771bf
Added string+box in ddnet menu. Added 10 secs protection for loading.
2015-08-27 09:13:43 +02:00
Chairn
d699cbe94b
Reorganized class. Does not reload current map.
2015-08-27 06:27:55 +02:00
Chairn
8b8ba7b860
Added variable for tile background. Improved a lil bit maplayers.
2015-08-27 00:52:50 +02:00
Chairn
70a2cfa4ea
Added custom background in entities.
2015-08-27 00:52:31 +02:00
def
d1fddc11ea
Fix disabling spec window
2015-08-26 19:35:00 +02:00
def
fe22edadaa
Hide console window on Windows by default
2015-08-26 12:40:50 +02:00
def
325410d2af
Even better: Fix 0 as mousesens for dyncam
2015-08-24 23:26:07 +02:00
def
b32a939a9e
Set more reasonable default dyncam sensitivity and rename config variables for dyncam
2015-08-24 23:22:20 +02:00
def
ed0634f9b0
Update credits
2015-08-23 23:22:31 +02:00
Dennis Felsing
44e7e2834f
Merge pull request #284 from Chairn/upstream
...
Fixed double clicking on friend when friend was on top server.
2015-08-23 23:18:32 +02:00
oy
70ca6f220c
fixed frozen input when leaving a server with active chat
2015-08-22 21:53:00 +02:00
def
fabe25dd45
Switches can be set with number 0 (even if they don't make much sense, fixes #265 )
2015-08-22 20:41:46 +02:00
def
5119976c9f
Oops
2015-08-22 20:25:28 +02:00
def
b5aca60662
Fix mouse hang with editor popup, value selector and escape ( fixes #290 )
2015-08-22 20:22:23 +02:00
def
7ff9cd890c
No magic number for weapon
2015-08-22 20:15:15 +02:00
def
844d8b8ae3
Add sv_teleport_lose_weapons
2015-08-22 19:24:10 +02:00
def
eac3d900e7
Remove unused variable
2015-08-22 17:50:34 +02:00
def
902e4b7487
Also use map name by default for manual demo recording
2015-08-22 17:36:47 +02:00
def
db2256e827
Fix a few whitespace-at-end-of-file issues
2015-08-22 15:27:41 +02:00
Dennis Felsing
d4ccc4728b
Merge pull request #291 from cinaera/pr_editor_scale
...
HSV color picker for quad points
2015-08-22 15:20:29 +02:00
def
f977f80c94
Stronger checks on save
2015-08-22 15:16:14 +02:00
def
321f0d210a
Fix race recorder, make it remove tmp files consistently and clean it up a bit
2015-08-22 15:09:19 +02:00
Learath2
aa195955be
Don't highlight your own messages.
2015-08-20 17:01:34 +03:00
BeaR
ff3c4f22b4
Add hex value edit field for quad point color
2015-08-20 12:51:30 +02:00
def
f62bb1821c
/map and /mapinfo improvement ( fixes #292 )
2015-08-19 22:43:08 +02:00
east
8dec8d7890
Fixed chat highlighting
2015-08-17 21:35:12 +02:00
BeaR
6b0d2b9b9a
Fix hue picker scaling
2015-08-17 20:19:27 +02:00
BeaR
a4cfc10898
Implement an HSV picker for color of quad points
2015-08-17 20:14:23 +02:00
BeaR
6b2e61bbc6
Fix collision bug with weapon projectiles
...
Ignore characters, which can't collide e.g different teams, in the intersection test for projectiles.
2015-08-16 10:54:06 +02:00
def
e1fe407ee5
Make team locking an option
2015-08-16 00:39:31 +02:00
Chairn
f3a82b0c98
Fixed double clicking on friend when friend was on top server.
2015-08-14 19:25:45 +02:00
Dennis Felsing
37256d6e2c
Merge pull request #283 from savander/DDRace64
...
Improvements for demoplayer (pause/unpause demo is bindable) + you can hide scoreboard after death
2015-08-13 17:25:57 +02:00
def
547274b806
Add cl_chat_reset, which can be set to 0 so that chat is not reset when pressing escape
2015-08-12 17:03:27 +02:00
def
9d5459d731
Check IDs in a more reasonable order
2015-08-12 15:54:03 +02:00
Adam Jaworski
ab6f522aa5
Whether to show scoreboard after death or not
2015-08-12 11:30:26 +02:00
H-M-H
0086d19276
added Notifications for osx
2015-08-11 03:14:27 +02:00
def
67fa04541e
Version 8.1.1
2015-08-10 16:12:23 +02:00
Dennis Felsing
609b84ca4e
Merge pull request #276 from heinrich5991/pr_ddnet_allow_rescue
...
Finish the renaming of sv_allow_rescue to sv_rescue
2015-08-10 14:06:56 +02:00
def
23cc7e2a46
Version 8.1
2015-08-10 13:36:51 +02:00
heinrich5991
ec85951736
Finish the renaming of sv_allow_rescue to sv_rescue
2015-08-10 13:34:56 +02:00
def
1fd0f947af
Better numbers in average time for /mapinfo
2015-08-09 22:20:52 +02:00
def
727ea434d4
Increase magic number a bit until we assume client is not DDNet
2015-08-07 03:26:50 +02:00
Dennis Felsing
a0d1d8b744
Merge pull request #275 from nzyuzin/variables_h_naming
...
Add prefix Cl to dummy and player variables
2015-08-06 22:28:22 +02:00
Nikita Zyuzin
0b9e2f144c
Add prefix Cl to dummy and player variables
2015-08-07 00:16:33 +04:00
Dennis Felsing
b122b569bd
Merge pull request #274 from nzyuzin/variables_h_naming
...
Correct names in variables.h
2015-08-06 21:54:58 +02:00
Nikita Zyuzin
89536b10a3
Update dyncam variable names
2015-08-06 23:44:54 +04:00
def
f39b85a3e2
Add average time to /mapinfo
2015-08-06 16:02:00 +02:00
def
8401c43edb
Remove a message to prevent server log spamming
2015-08-05 22:43:57 +02:00
def
348ac53226
Bind chat on enter/return by default as well
2015-08-05 15:34:08 +02:00
def
8203c5378d
Merge branch 'master' of github.com:def-/ddnet
2015-08-01 20:16:46 +02:00
def
8d216d8de1
Only print MOTD to console when it's not empty
2015-08-01 20:16:34 +02:00
Nikita Zyuzin
06c4470081
Don't use OldMousesens if it wasn't initialized
2015-08-01 09:08:25 +04:00
Nikita Zyuzin
e89843d811
Update dyncam to have special mousesens
2015-08-01 09:01:54 +04:00
def
6a2cc86d50
Sort spectators by name
2015-07-28 23:30:23 +02:00
def
d2bec89c05
Version 8.0.2
2015-07-28 02:13:26 +02:00
def
d9f712bfcb
Print MOTD to console
2015-07-27 03:57:21 +02:00
def
5313f30e24
Version 8.0.1
2015-07-26 19:24:23 +02:00
def
dfcb9beabd
Visually tell tees apart that you can't spectate
2015-07-26 18:52:53 +02:00
def
cd267f53d8
Improve follow button a bit
2015-07-26 18:37:31 +02:00
def
791e260e65
Fix spectating in demo viewer and add a button to choose to follow a player
2015-07-26 18:21:51 +02:00
def
8f5812decd
Version 8.0
2015-07-26 15:23:09 +02:00
def
d5100cdee5
Add ctrl+shift+s for "save as" and ctrl+shift+alt+s for "save copy"
2015-07-26 12:05:45 +02:00
def
ce1d615041
Add "Save copy" button so that filename is not changed
2015-07-26 12:05:14 +02:00
def
f349818f9d
Only save once (hope this doesn't cause any problems)
2015-07-26 12:04:43 +02:00
def
e6db197183
Fix scroll bar in server control votes when search bar is used
2015-07-25 18:43:54 +02:00
Dennis Felsing
50a6c30e46
Merge pull request #241 from timgame/DDRace64
...
fixed envelope button color
2015-07-25 00:07:33 +02:00
timgame
6264bb73f3
fixed envelope button color
2015-07-25 00:04:12 +02:00
def
d570683b5a
TAB in console doesn't influence menu ( fixes #239 )
2015-07-24 01:28:19 +02:00
def
d57b0d62c6
Support for 0 stars in database
2015-07-23 12:49:22 +02:00
def
949fcb2c40
Remove one useless debug print
2015-07-23 12:11:42 +02:00
def
5527870d0a
Revert bruch clearing
2015-07-23 00:43:09 +02:00
Chairn
ea52c68d2c
Zooming will work as in game for editor using numpad.
2015-07-23 00:10:55 +02:00
def
a04578b3ba
Add switch_open to set the initial state of a switch to open
2015-07-22 23:32:39 +02:00
def
e97c8ac08f
Add foes (permanently ignored players)
2015-07-22 22:16:49 +02:00
def
1af5507b95
Allow spectating other players and freeview in demo player (especially fun with /showall and /showothers on)
2015-07-22 21:32:02 +02:00
def
bab961f054
Prepare switch to mixed case server names
2015-07-22 19:56:24 +02:00
def
0cb50c1805
Print actual SQL inserts/updates to debug log
2015-07-22 19:05:45 +02:00
def
d815193d86
Merge branch 'DDRace64' of github.com:def-/ddnet into DDRace64
2015-07-22 18:24:09 +02:00
def
4e658c1057
Minor cleanups
2015-07-22 18:23:40 +02:00
east
d12c516508
fixed highlighting in demo playback
2015-07-22 15:37:00 +02:00
def
4d239cab77
Version 7.9.1
2015-07-15 19:34:50 +02:00
def
f5ff75a19a
Fix Speedup angle selector
2015-07-15 02:34:50 +02:00
def
fba5188b84
Version 7.9
2015-07-15 00:57:15 +02:00
def
cc63e9fc89
Fix demo cutter to add .demo file ending
2015-07-14 13:43:44 +02:00
def
2077a4f83e
Add a string for localization
2015-07-14 13:43:24 +02:00
def
0cd9b0006b
Another known bot client
2015-07-13 00:18:59 +02:00
def
17b8a5219b
Show a nice message to known bot clients
2015-07-13 00:02:57 +02:00
def
da68023f7a
Off by one ;)
2015-07-11 19:28:45 +02:00
def
6d68e22cd1
Hopefully fix string fuzzying for unicode
2015-07-11 19:26:57 +02:00
def
242f47e03e
Fix statboard a bit more!
2015-07-10 22:12:20 +02:00
def
73229fbb62
Only allow /save when team is started already (prevents saving after
...
noobfilter)
2015-07-09 23:48:29 +02:00
def
4efaa85e7a
Stop showing statboard after key has been released ( fixes #219 )
2015-07-09 20:38:23 +02:00
def
15ff5f5491
Merge branch 'DDRace64' of github.com:def-/ddnet into DDRace64
2015-07-09 20:33:35 +02:00
def
1aeea28459
Fix statboard size for 4:3 and 5:4 screens ( fixes #211 )
2015-07-09 20:33:26 +02:00
Dennis Felsing
89c29a15f5
Merge pull request #233 from timgame/DDRace64
...
improved grass_main/0.7 automapper by hi_leute_gll
2015-07-09 19:20:48 +02:00
timgame
929919d44b
improved grass_main/0.7 automapper by hi_leute_gll
2015-07-09 19:17:46 +02:00
def
1ef03e7387
Only disallow team changing and killing when calling kick/spec votes
2015-07-09 19:07:33 +02:00
def
6e8ada1ac8
Fix whitespaces a bit
2015-07-09 02:12:35 +02:00
def
a9690bb484
Show all recorders in scoreboard ( fixes #227 )
2015-07-09 02:00:40 +02:00
Dennis Felsing
b6c8faa9e2
Merge pull request #230 from timgame/DDRace64
...
added language scripts and improved german language
2015-07-08 20:38:41 +02:00
def
acf18f98fc
Clearer message on veto
2015-07-08 18:09:52 +02:00
def
b6133e7ece
Fix typo...
2015-07-08 17:05:49 +02:00
def
c79b4d3112
Add veto right for players with high time to stop map change votes
2015-07-08 17:03:22 +02:00
def
1f2b09303f
Vote caller never counts as afk
2015-07-08 16:04:54 +02:00
def
fbe1bcbf39
Don't capitalize server name in /mapinfo
2015-07-08 15:47:46 +02:00
def
f5d31b595c
Editor: Scroll Speedup angles by 45° (finer with shift)
2015-07-08 13:55:02 +02:00
def
5f6752d238
Show degrees sign in value selector
2015-07-08 13:38:21 +02:00
def
872a94618d
Oops, use non-fuzzy map string
2015-07-08 02:14:33 +02:00
def
87227927cd
/map and /mapinfo: Prefer exact match, including capitalization
2015-07-08 02:07:49 +02:00
def
f4c187346e
Version 7.8.2
2015-07-07 12:40:31 +02:00
def
30e3861117
More reasonable default key bindings
2015-07-07 12:40:22 +02:00
def
b3592380d1
Re-enable broadcast for old DDNet client version
2015-07-04 14:12:49 +02:00
def
9e4da8658d
Update credits
2015-07-01 17:57:27 +02:00
def
2d5df86443
Add time.h include for editor to fix windows compilation
2015-07-01 17:17:48 +02:00
def
9f5a2f7f93
Fix wording in settings
2015-07-01 16:45:41 +02:00
def
d11f1b0b38
Display local time in editor so that mappers don't lose track of it
2015-07-01 16:38:17 +02:00
def
e20be248f0
Fix previous commit
2015-07-01 16:27:19 +02:00
def
e552ef2643
Print number of finished tees in /mapinfo as well
2015-07-01 16:24:27 +02:00
def
b8c37bbeca
Version 7.8.1
2015-07-01 15:01:08 +02:00
timgame
4e33c394b9
improved german language
2015-06-30 18:57:39 +02:00
def
ce465b584c
Add sv_rescue_delay and rename sv_allow_rescue to sv_rescue
2015-06-30 18:46:36 +02:00
def
5409f0baef
Fix cl_nameplates_clan
2015-06-29 11:03:17 +02:00
def
4c3b97d6ba
Add size variable for clan plates
2015-06-29 02:06:27 +02:00
def
d846583ba7
Make a few value selectors in editor wrap around
2015-06-28 16:17:23 +02:00
def
063be1f12e
Make TAB always work in serverbrowser
2015-06-28 15:43:34 +02:00
def
8e8283e9cf
Highlight game layers in editor
2015-06-28 15:02:48 +02:00
def
6e0efe7f22
Version 7.8
2015-06-28 13:10:05 +02:00
savander
a65243d8e9
Rermove Localize from server message
2015-06-26 21:39:36 +02:00
savander
52e60afafa
Added missing Localize()
2015-06-26 20:44:55 +02:00
def
45b7706439
Don't ignore timeout codes because of spam protection (might fix issue with timeout code being ignored)
2015-06-26 03:59:38 +02:00
def
3b7fca86c6
Initialize pReleasedString
2015-06-25 22:38:16 +02:00
def
1c7750151d
Show full time in scoreboard even when minutes are > 100
2015-06-25 15:39:22 +02:00
def
dcddb7896d
It would help to test before commiting
2015-06-24 21:53:00 +02:00
def
2decad5d75
Fix SQL query of /mapinfo for empty case
2015-06-24 21:46:42 +02:00
def
a0ac817966
Fix
2015-06-24 19:18:59 +02:00
def
6b300334f7
Nicer wording
2015-06-24 19:17:49 +02:00
def
7c9d452c61
Fix /mapinfo string
2015-06-24 19:15:03 +02:00
def
9a55f52e61
Fix SQL query
2015-06-24 19:04:34 +02:00
def
6b1c7a5350
Initial support for release dates in /mapinfo
2015-06-24 19:03:03 +02:00
def
55e0c58707
Fix bracket
2015-06-22 13:07:41 +02:00
def
4f323313f3
Clean up code a bit
2015-06-22 13:06:14 +02:00
def
f6c3586d02
Fix serverbrowser on Android
2015-06-22 02:49:23 +02:00
def
d95145819f
Fix oversize headers on Android
2015-06-22 01:39:08 +02:00
def
b91ff8a9fc
Also with antiping
2015-06-22 00:44:26 +02:00
def
885f1a3276
Add support to show clan above name plates
2015-06-22 00:34:10 +02:00
def
7c665a7b97
Add auto-antiping based on ping
2015-06-21 18:00:09 +02:00
def
1844ab10d2
Version 7.7.3
2015-06-21 13:03:49 +02:00
def
cc5ac820fd
Editor: Ctrl-s doesn't ask about overwriting anymore
2015-06-21 13:02:07 +02:00
def
49c0bedb62
Go back to forbiding cl_startinfo
2015-06-18 17:47:07 +02:00
east
458e83e794
Further revert of auto demo recorder (fixes continuous recording on TILE_BEGIN)
2015-06-17 12:54:41 +02:00
east
45748f35e3
Revert: Changes on auto demo recorder
2015-06-16 22:35:21 +02:00
def
8f4e8a871d
Make autorecorder work with race again
2015-06-16 22:00:42 +02:00
Nikita Zyuzin
4d1fe71944
Fix #216
...
Fixes crash when statboard is shown immediately after joining a server
2015-06-14 19:20:40 +04:00
Dennis Felsing
03c5c765a9
Merge pull request #214 from nzyuzin/DDRace64
...
Fix bug with constant demo autorecording. Fixes #213
2015-06-14 13:59:32 +02:00
Nikita Zyuzin
038b11e7a8
Clean up statboard code
2015-06-14 15:41:03 +04:00
Nikita Zyuzin
897af546cb
Fix bug with constant demo autorecording. Fixes #213
...
It's relevant for states in which new RoundStartTick is sent each second tick
2015-06-14 14:39:42 +04:00
def
8523fdc043
Update credits
2015-06-14 12:24:10 +02:00
def
f1a595f986
Version 7.7.2
2015-06-14 11:28:23 +02:00
Dennis Felsing
dfb87d8a55
Merge pull request #212 from nzyuzin/DDRace64
...
Bugfixes for statboard + default mouse max distance feature
2015-06-14 02:08:20 +02:00
Nikita Zyuzin
c8d175a6f1
Remove redundant newline character
2015-06-12 15:32:24 +04:00
Nikita Zyuzin
7bb0c1cfbf
Fix bug with continuous demo recording restart in TILE_BEGIN
2015-06-12 15:15:23 +04:00
Nikita Zyuzin
8ec3e705e4
Don't show statboard at the end of demo game
2015-06-12 14:38:02 +04:00
Nikita Zyuzin
148f455293
Fix bug with 'grabs' being drawn in non-ctf game
2015-06-12 14:33:42 +04:00
Nikita Zyuzin
f004d851e9
Add default mouse max distance variable
2015-06-12 14:11:40 +04:00
def
981b6d0013
Fix potential server crash
2015-06-02 11:55:16 +02:00
def
ba2e120dfe
Version 7.7.1
2015-05-31 22:40:55 +02:00
def
d9b7f4e1f4
Fix settings menu
2015-05-31 22:40:38 +02:00
def
d96ff538d3
Allow setting freeze number on switch layer in editor
2015-05-31 18:25:00 +02:00
def
dd9563a88c
Make switch number work for freeze on switch layer
2015-05-31 18:21:12 +02:00
def
54b5948662
Version 7.7
2015-05-31 17:44:45 +02:00
def
aeda4bc6f1
At least reduce the chance of mouse lockups and make them recoverable
2015-05-31 17:34:38 +02:00
def
aaaf0cdaeb
Don't create too many popups
2015-05-31 17:34:01 +02:00
Nikita Zyuzin
077db7d149
Fix bug with 'Join Red' and 'Spectate' buttons sharing same state variable
2015-05-29 01:11:01 +04:00
Dennis Felsing
6dc9eab98c
Merge pull request #209 from nzyuzin/detailed_statboard
...
Detailed statboard
2015-05-25 15:48:09 +02:00
Nikita Zyuzin
85f8f84fec
Adjust Suicides text position
2015-05-21 21:21:13 +04:00
Nikita Zyuzin
a2371e8d24
Limit amount of players shown in statboard to 16
2015-05-21 18:27:26 +04:00
Nikita Zyuzin
88c0d798e8
Fix tabulation
2015-05-21 16:34:20 +04:00
Nikita Zyuzin
d40d7f8d03
Remove unused stats
2015-05-21 16:22:42 +04:00
Nikita Zyuzin
82fdf7a5de
Fix tabulation
2015-05-21 16:17:10 +04:00
Nikita Zyuzin
e3413e59cc
Fix bug with OnStartGame not called after game is over
2015-05-21 16:09:23 +04:00
Nikita Zyuzin
002fb4c0a6
Add default key binding for statboard
2015-05-21 15:36:56 +04:00
Nikita Zyuzin
1846b0216b
Fix bug when suicide weapons are not displayed
2015-05-21 15:31:56 +04:00
Nikita Zyuzin
ab2f87ace4
Don't call OnStartGame after pause
2015-05-21 15:11:53 +04:00
Nikita Zyuzin
3e3daf46bd
Don't reset stats when player goes spectator
2015-05-21 14:32:17 +04:00
Nikita Zyuzin
d06d085696
Add menu setting for auto stat board screenshot
2015-05-21 14:26:50 +04:00
Nikita Zyuzin
12652985c3
Hide scoreboard if statboard is present
2015-05-21 13:55:51 +04:00
Nikita Zyuzin
d8d20b0c1a
Rename detailed_stats to statboard
2015-05-21 13:41:59 +04:00
Nikita Zyuzin
246bb7eabf
Remove stat board columns configuration variable
2015-05-21 03:06:31 +04:00
Nikita Zyuzin
42759e8909
Fix restart on new round and grabs count
2015-05-21 00:23:58 +04:00
Nikita Zyuzin
99855c70a6
Remove individual stats display
2015-05-20 20:22:04 +04:00
Nikita Zyuzin
245ebccd7b
Add initial detailed stats board code
2015-05-20 02:51:02 +04:00
def
37f67f4eb0
Merge branch 'DDRace64' of github.com:def-/ddnet into DDRace64
2015-05-19 17:47:57 +02:00
def
7c38ecc5fb
Fix console page color
2015-05-19 17:47:51 +02:00
def
0f5a4f8428
Fix start info spam protection
2015-05-19 17:47:41 +02:00
Nikita Zyuzin
f8b73701ca
Remove code duplication
...
Replace ad hoc solution to dynamic camera key binding with call to console
command
2015-05-19 15:51:51 +04:00
def
987723316a
Fix server crash with doors
2015-05-18 20:36:30 +02:00
def
3cedbd5061
Revert "Add key binding for R to refresh serverbrowser"
...
This reverts commit db60bf6527
.
2015-05-12 23:28:10 +02:00
def
db60bf6527
Add key binding for R to refresh serverbrowser
2015-05-11 21:57:11 +02:00
def
b6008f5b20
Only refresh serverbrowser when necessary
2015-05-11 21:51:06 +02:00
Nikita Zyuzin
7c41cb1afe
Add dynamic camera console toggle feature
2015-05-11 14:21:34 +04:00
def
ad151e5aba
Enable timeouts and low speed limits for HTTP downloads
2015-05-10 01:36:29 +02:00
def
6f259c78e2
Version 7.6.1
2015-05-08 20:41:02 +02:00
def
6b25d81938
Fix demo cutting buttons with 5:4 resolutions
2015-05-08 12:31:55 +02:00
def
55bfb08c7b
Version 7.6
2015-05-08 02:26:30 +02:00
def
9dc63ed429
Clean up a bit
2015-05-04 17:53:07 +02:00
Dennis Felsing
a1049267c3
Merge pull request #203 from trml/predict_player_collision
...
(antiping) improve prediction of collision between players
2015-05-04 17:46:14 +02:00
nuborn
0a07787f37
improve prediction of collision between players
2015-05-03 16:15:45 +02:00
def
7b5a738392
... and the description
2015-05-01 01:54:56 +02:00
def
92f76ef3c4
Rename rifle_fire_delay tuning to laser_fire_delay
2015-05-01 01:35:42 +02:00
def
32feea555f
Also fix popup title flow on disconnect extra text (not just title)
2015-04-27 23:17:28 +02:00
def
f02143e00b
Go back in layer/images/sound selection in editor with right mouse click
2015-04-27 13:43:02 +02:00
def
b5d722672a
On switch layer fix delay number with FillSelection when creating new tiles instead of copying
2015-04-21 04:57:20 +02:00
def
cb64bc6859
Move "Add Sound" button down for 5:4 resolutions
2015-04-21 04:34:14 +02:00
def
c85865c492
Go back in envelopes with right mouse click
2015-04-21 04:25:49 +02:00
def
8f02de318b
Make dummy connecting a bit nicer: Show that dummy is being connected, disable unusable buttons
2015-04-19 14:40:05 +02:00
def
16106d8ee6
Fix menu bug with button pressing (more of a hack)
2015-04-19 14:24:20 +02:00
def
14b5766b30
Disallow spectators to participate in kick votes
...
Fixes #186
2015-04-19 14:15:59 +02:00
def
9c1e65a1f5
Clean up a bit and hopefully fix player move on dummy connect
2015-04-19 14:06:31 +02:00
timgame
c4f011dd9d
resend player/dummy info that filtered the server
2015-04-19 13:17:51 +02:00
def
230ad1a6f6
Revert "Timestamp index for race table for improved performance of /players/"
...
Better indices on the relevant server, not necessary everywhere else.
This reverts commit d4d5109c47
.
2015-04-19 12:52:27 +02:00
def
d4d5109c47
Timestamp index for race table for improved performance of /players/
2015-04-19 11:55:35 +02:00
def
6d54de89b6
Get rid of clang static analyzer warnings
2015-04-19 00:31:45 +02:00
def
a77cd039a6
Get rid of all Clang warnings
2015-04-18 22:29:28 +02:00
def
710a786f88
Rename AutoUpdater to Updater because you have to press a button now
2015-04-18 21:17:27 +02:00
def
4625a4de58
Version 7.5
2015-04-18 19:56:07 +02:00
def
997470dfa2
Cleanup
2015-04-18 11:06:16 +02:00
def
554c865eeb
Fix segfault in editor
2015-04-17 20:14:14 +02:00
timgame
52aab8c00f
added unfreeze after /r, /rescue
2015-04-16 18:13:36 +02:00
timgame
249988fa85
Merge branch 'DDRace64' of https://github.com/def-/ddnet into DDRace64
2015-04-16 17:40:08 +02:00
timgame
62aa011734
added /r, /rescue: teleport yourself out of freeze
2015-04-16 17:37:57 +02:00