- 02 Ock, 2019 1 kayıt (commit)
-
-
Colomban Wendling yazdı
It most likely was a typo for `da`, and all actually updated translations are properly listed.
-
- 16 Ara, 2018 6 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Frank Lanitz yazdı
-
Enrico Tröger yazdı
-
- 14 Ara, 2018 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 12 Ara, 2018 1 kayıt (commit)
-
-
Jason Cumbie yazdı
Fix document_account_for_unsaved() so it does not alter the `changed` flag on documents, in order for plugins to have a reliable value there at all times. Patch by @chrontec with small additional tidying up. Closes #1857.
-
- 10 Ara, 2018 2 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
- 09 Ara, 2018 5 kayıt (commit)
-
-
Colomban Wendling yazdı
Autotools: Detect GTK version to use automatically. GTK2 is still the default if both GTK2 and GTK3 are present.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
柳东原 LIU Dongyuan yazdı
* Update zh_CN.po * Update version number for zh_CN translation
-
Giuseppe yazdı
* updated it.po * Update some copyright times on it.po
-
- 07 Ara, 2018 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 06 Ara, 2018 4 kayıt (commit)
-
-
Colomban Wendling yazdı
This is the default since forever, so don't change it on the users, no matter what is the new default in Scintilla 3.10.0. Fixes #2010.
-
Colomban Wendling yazdı
After 3b1c6f36 (PR#2005) a string slightly changed, so update the translation to match.
-
Frank Lanitz yazdı
-
張修銘 yazdı
* Update of Traditional Chinese translation * Correct version number on zh_TW.po
-
- 05 Ara, 2018 7 kayıt (commit)
-
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
Frank Lanitz yazdı
-
scootergrisen yazdı
-
scootergrisen yazdı
-
- 04 Ara, 2018 2 kayıt (commit)
-
-
Colomban Wendling yazdı
Improve goto-symbols popup
-
Andrej Herceg yazdı
-
- 03 Ara, 2018 10 kayıt (commit)
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Thomas Martitz yazdı
- Notably the utils_strv_{find_common_prefix,find_lcs,shorten_file_list} now take -1 for num to mean to compute the array length. - utils_strv_find_common_prefix implementation simplified. - if num == 0 is passed to the above functions the passed strv is not dereferenced (so could be NULL).
-
Thomas Martitz yazdı
- Fix lots of compiler warnings - Fix a bug where a long base name would prevent ellipsizing the longest common substring - rewrite utils_strv_shorten_file_list to be more clear (hopefully) - use g_strlcpy - optimize case where the longest common substring need not be searched for
-
Thomas Martitz yazdı
The array annotation has many possible parameters, this avoids having a Doxygen command for each one. Luckily you can define Doxygen commands multiple times with different a number of parameters each.
-
Thomas Martitz yazdı
-
Thomas Martitz yazdı
Since I based the algorithm of the above function on code in one of my python plugins, I would like to remove the implementation in my plugin and call Geany's function.
-
Thomas Martitz yazdı
We can now use @array and @arraylen{param} annotations for arrays that will make it to the generated gtkdoc header. g-ir-scanner cannot properly parse 'gchar **' parameters without this.
-
Thomas Martitz yazdı
From #1069: > At the moment if symbols of the same name are defined in identically named > files, it's hard to distinguish which file is which because there's no path > in the popup. > The popup should show part of the path until a directory where the paths > differ so it's possible to distinguish the different files. At the same time > there should probably be some top limit for the length of the paths as they > can make the popup too wide. This addresses the above by showing more of the file's paths but still try to make it as short as possible. The file list is processed by the new utils_strv_shorten_file_list(), as a result the popup will list files with the common prefix stripped and the longest common sub-path ellipsized. As a result, the file list shows enough of the path to make them unique but still is still very short and doesn't make the dialog too wide. Fixes #1069.
-
Thomas Martitz yazdı
1) utils_strv_find_common_prefix Locates the common prefix. 2) utils_strv_find_lcs Finds the longest common substring. 3) utils_strv_shorten_file_list Transforms the file list by removing the common prefix and ellipsizing the longest common substring. This is intended to be used for fixing #1069. Although only 3 will be used immediately, I separated the functionality, so that the other two function can be used on their own.
-