Fix compiler warning by removing unused argument.
1 lines of code changed in 1 file:
changed wording to make it seem less programmerish
1 lines of code changed in 1 file:
Fix unnecessary use of character buffers.
Only string literals are selected, so no buffers are needed. Replace
buffers with character pointers and assign literals to them.
Pointy hat to: Karla Stenger (kstenger), Kevin Zheng (partmedia)
17 lines of code changed in 1 file:
Fix incorrect use of strcat(3).
7 characters (including a newline) were copied from a string literal to
a fixed 6-character wide buffer, causing a buffer overflow.
Pointy hat to: Karla Stenger (kstenger)
Reported by: Anthony Wyatt (buzzsaw)
3 lines of code changed in 1 file:
Undo the changes made in revision 19200. Found a better place/way to do it.
When the player is initialized in new_player() initialize the bindings too.
Added keybindings_init to common/external.h to be able to do it.
5 lines of code changed in 3 files:
Forgot to use the servername when saving the char bindings file too.
2 lines of code changed in 1 file:
Add some compatibility for older servers to use char-specific bindings.
It's probably not the best solution: update bindings when redrawing stats.
When the playername label has to be updated it's a good sign that the bindings
also should, and it's the right moment to get the character's name
if the server doesn't support accounts.
5 lines of code changed in 1 file:
Add the servername as a part of the char specific keys filename allowing
to have characters with the same name have different bindings for each
server they belong.
2 lines of code changed in 1 file:
Respect XDG base directories for image/server cache.
273 lines of code changed in 5 files:
Added the chance to bind a global key with the 'bind' command.
4 lines of code changed in 1 file:
Changed the 'user' scope name to 'global' as suggested by Partmedia.
Corrected a couple of details in some comments while at it.
And removed a couple of spaces by the end of the lines (which my editor
insists in erasing).
No functional changes.
64 lines of code changed in 3 files:
Fix compiler warning from last commit.
Pointy hat to: Kevin Zheng (partmedia)
1 lines of code changed in 1 file:
Fix metaserver connection window behavior.
Correctly update "connecting" status and return after timing out.
49 lines of code changed in 2 files:
Added support for scoped keybindings.
When bindings are loaded let them know where they come from by adding a flag indicating if it comes from the character's keys file or from the user's keys file.
I found it easier to put default keybindings into the user's scope too, it won't hurt.
Load them separatedly to ease their maintenance.
Adapt the keybindings management window to let the user see and switch scopes.
TODO: add support for the 'bind' command to save user scoped new bindings (by defauld it saves them into the character's scope).
554 lines of code changed in 3 files:
Load the default if selected layout doesn't work.
14 lines of code changed in 1 file:
Remove check for libglade and bump GTK version.
4 lines of code changed in 2 files:
Update GTKv2 client documentation.
Take this opportunity to sneak myself into the developers list.
528 lines of code changed in 8 files:
Reimplement save_winpos() for GtkBuilder.
182 lines of code changed in 1 file:
Convert widgets to use GtkBuilder.
208 lines of code changed in 22 files:
Convert Glade window layouts to GtkBuilder.
34792 lines of code changed in 34 files:
Substantial cleanups to startup code.
278 lines of code changed in 3 files:
Fix configuration dialog combo boxes.
This has the unfortunate consequence of bumping up the minimum GTK
version requirement to 2.24.
36 lines of code changed in 1 file:
Clean up sound logging and improve readability.
49 lines of code changed in 1 file:
Change the order in which keybinding's files are loaded.
Now defaults go first, then user global bindings, then character specific bindings.
So also changed what we do when a binding is inserted, if it already exists do not return error and leave but overwrite it instead.
EKEYBIND_TAKEN was so useless and got removed.
Use keybind_find() instead of keybind_insert() at several places to check for previous existance when we don't want to overwrite the previous binding.
43 lines of code changed in 1 file:
Remove never used if statement.
0 lines of code changed in 1 file:
Add deprecation warning for bindings 'S' flag.
4 lines of code changed in 1 file:
Turn uppercase bindings to lowercase with the shift flag on.
Fixes bug #766.
8 lines of code changed in 1 file:
Clean up logging and remove in-memory log.
11 lines of code changed in 3 files:
Punctuation correction (missing a period) in the summary for Strength. No functional changes.
1 lines of code changed in 1 file:
Fix dialog conversions to GtkBuilder.
Remove an unused variable in 'info.c' and convert the widgets that were
forgotten in 'spells.c'.
9 lines of code changed in 2 files:
Update and improve 'About' dialog.
Replace the 'hbox' hack with correct usage of GtkImage.
Merge the contents of 'about.h' into the UI dialog to improve future
accessibility and make translations possible. Also take this opportunity
to make the dialog look a bit nicer.
343 lines of code changed in 4 files:
Fix several GTK assertion failures.
5 lines of code changed in 1 file:
Move 'mdk.sh' script to 'common/' directory.
15 lines of code changed in 5 files:
Migrate 'dialogs.glade' and widgets to GtkBuilder.
5548 lines of code changed in 15 files:
Switch to a library-independent naming scheme.
33143 lines of code changed in 58 files:
Update README and convert to AsciiDoc format.
63 lines of code changed in 2 files: