- 22 May, 2015 2 kayıt (commit)
-
-
Philipp Wiesemann yazdı
The old link was a 404 page.
-
Philipp Wiesemann yazdı
The project moved from Google to GitHub.
-
- 21 May, 2015 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 19 May, 2015 3 kayıt (commit)
-
-
Enrico Tröger yazdı
-
Frank Lanitz yazdı
Fix header of translation file
-
Felipe Braga yazdı
-
- 18 May, 2015 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
Updated pt_BR translation
-
- 17 May, 2015 1 kayıt (commit)
-
-
Felipe Braga yazdı
-
- 15 May, 2015 1 kayıt (commit)
-
-
Colomban Wendling yazdı
Add a spawn module for Geany Thanks a lot for Dimitar's hard work, commitment and endless patience! Closes #274, #441, and https://sourceforge.net/p/geany/bugs/943/ Should also fix https://sourceforge.net/p/geany/bugs/898/
-
- 14 May, 2015 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 11 May, 2015 1 kayıt (commit)
-
-
Frank Lanitz yazdı
Fix typos in messages
-
- 10 May, 2015 4 kayıt (commit)
-
-
Philipp Wiesemann yazdı
It was already fixed in source.
-
Philipp Wiesemann yazdı
-
Philipp Wiesemann yazdı
-
Frank Lanitz yazdı
Fix wrong German translations
-
- 09 May, 2015 4 kayıt (commit)
-
-
Philipp Wiesemann yazdı
-
Philipp Wiesemann yazdı
The translation for "document" already had one.
-
Philipp Wiesemann yazdı
The translation did not distinguish between "source file" and "file" although it makes sense (e.g. for diff files which are not source).
-
Philipp Wiesemann yazdı
-
- 06 May, 2015 4 kayıt (commit)
-
-
Colomban Wendling yazdı
Fix language check in tm_workspace_find()
-
Colomban Wendling yazdı
Fix empty symbol tree under some conditions
-
Jiří Techet yazdı
When the Symbols tab isn't shown, symbol tree isn't updated. However, we should record the cases when update should have been performed and once the symbols tab is shown, perform update if something changed. Thanks to this patch we also don't have to always perform symbol tree update when switching to the Symbols tab but only when something has actually changed.
-
Jiří Techet yazdı
The tags_lang variable is set from the first tag in the found array but the array may actually contain tags from several languages. This may lead to two things: 1. Goto tag definition goes to a tag from a different filetype 2. Worse, the first tag is from a different language than the current file and we get a message that no tag was found Get lang for every tag in the array and rename tags_lang to tag_lang.
-
- 05 May, 2015 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 03 May, 2015 9 kayıt (commit)
-
-
Colomban Wendling yazdı
Closes #483.
-
Colomban Wendling yazdı
Reload tooltip in the symbol tree also on tag update
-
Colomban Wendling yazdı
Communicate terminal dirty-ness to users in a better way
-
Jiří Techet yazdı
The tree model nodes consist of GNode structs: struct GNode { gpointer data; GNode *next; GNode *prev; GNode *parent; GNode *children; }; where children are a linked list. To append a value, the list has to be walked to the end and with nodes with many children (which is our case) this becomes very expensive. We sort the tree afterwards anyway so it doesn't matter where we insert the value.
-
Jiří Techet yazdı
-
Jiří Techet yazdı
About 30% faster tree creation.
-
Jiří Techet yazdı
gtk_tree_store_set() becomes very slow when the tree gets bigger because internally it calls gtk_tree_store_get_path() which counts all the entries in a linked list of elements at the same tree level to get the tree path. Avoid the call of this function when not needed.
-
Jiří Techet yazdı
Because function return types are not used to determine tag equality, we need to also update the tooltip of an existing tag otherwise the return type doesn't get updated when changed.
-
Frank Lanitz yazdı
Fix typos in German translation
-
- 02 May, 2015 1 kayıt (commit)
-
-
Philipp Wiesemann yazdı
-
- 29 Nis, 2015 2 kayıt (commit)
-
-
Jiří Techet yazdı
This is not completely obvious - when I first saw the message, I started pressing backspace which really doesn't help. Also clarify and shorten the message a bit - in "Could not execute the file in the VTE because it probably contains a command" it's not clear if it's the file or VTE which contains the command. Also use "terminal" instead of "VTE" which is more user-friendly.
-
Jiří Techet yazdı
Right now users are confused when various VTE actions don't work because there's no indication that the terminal is in the non-clean state. Visualise "modified" terminal in the same way as modified document - by a red label in the tab so it's clearer when terminal isn't clean. Avoid quick red flashes when pressing enter by delaying the color change a bit.
-
- 25 Nis, 2015 2 kayıt (commit)
-
-
Enrico Tröger yazdı
Remove deprecated and unnecessary use of GeanyFunctions declaration
-
Enrico Tröger yazdı
-
- 24 Nis, 2015 1 kayıt (commit)
-
-
Dimitar Zhekov yazdı
-