- 02 May, 2016 6 kayıt (commit)
-
-
Colomban Wendling yazdı
GTK 3.20 doesn't seem to like it so much when looking up details of a non-exact current style context state, so use the current one. This is GTK being really picky as in this case we are just missing the `DIR_LTR` flag, which we definitely don't care about, but let's make it happy. X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: 9fc624da4a3d935633c45fb56d0e9a77ef9b5af1
-
Colomban Wendling yazdı
GTK 3.20's GtkScrolledWinodw doesn't like having a too small allocation and spews scary assertion failures. Fix that by requesting the real size we'd like instead of hard-coding 1 as small-enough value in our overriding height requisition method. The actual value doesn't really matter so long as it's small enough anyway, as we resize the popup to fit later on. Note: this moves the actual implementation of ListBoxX::GetRowHeight() to the new convenience function treeViewGetRowHeight(), with no changes in implementation. X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: 5a0afdd87d56d837dd8068e234aed8e2b6bdbe93
-
Colomban Wendling yazdı
X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: 4f96ed32ebb94809ca419c0f77d37de41984cf76
-
Colomban Wendling yazdı
GTK 3.20 introduced a sub-node named "border" to the frame, requiring to lookup the border on that sub-node rather than on the frame itself. Unfortunately supporting this requires to be built against GTK 3.20, as it requires API this version introduced. This means that a build against an older version won't be able to get the popup sizing right if running on 3.20. To mitigate this, add reasonable fallback defaults when running 3.20 but built on an earlier version, to try and avoid X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: 83d56b1fc63a206e4c1b776f5991b3b17ccb3473 2px-scrolling on GTK 3.20's default theme.
-
Colomban Wendling yazdı
It's not really of any use as we do know any size would do as wText is ours anyway, but GTK 3.20 doesn't like allocating without querying the preferred size beforehand, so do it. As wText has a size_request() of 100x100, this might change how we allocate in case we used to underallocate it, but AFAIK we don't, and it is the real minimum size expected. X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: d06e3db3e26842cd136328df17eb6f864b3adc02
-
Colomban Wendling yazdı
X-Scintilla-Bug-URL: https://sourceforge.net/p/scintilla/bugs/1825/ X-Scintilla-Commit-ID: a28863773874af35d3cc8912ae3c028fb0462ea9
-
- 28 Nis, 2016 1 kayıt (commit)
-
-
Colomban Wendling yazdı
-
- 17 Nis, 2016 1 kayıt (commit)
-
-
Quentin Glidic yazdı
They introduced[1] a GtkBox between the GtkEntry and the GtkComboBox to add some magic in the layout computation. [1] <https://git.gnome.org/browse/gtk+/commit/?id=222c43fc60362eeb97ce2d5e3a5583a69a2e30ef> Signed-off-by:
Quentin Glidic <sardemff7+git@sardemff7.net>
-
- 10 Nis, 2016 2 kayıt (commit)
-
-
elextr yazdı
Fix typos in plugin documentation
-
Philipp Wiesemann yazdı
-
- 26 Mar, 2016 1 kayıt (commit)
-
-
Frank Lanitz yazdı
-
- 22 Mar, 2016 1 kayıt (commit)
-
-
Enrico Tröger yazdı
-
- 21 Mar, 2016 2 kayıt (commit)
-
-
Enrico Tröger yazdı
The files in share/glib-2.0/schemas are necessary for GTK3, so don't delete them but everything else on the same directory level.
-
Enrico Tröger yazdı
This adapts the paths in the installer for the tags and filedefs files as changed in #485. Also simply include everything in share/ when including a GTK3 runtime environment instead of a fixed list of subdirectories, share/glib-2.0 doesn't exist anymore when using MSYS2 packages.
-
- 19 Mar, 2016 3 kayıt (commit)
-
-
Colomban Wendling yazdı
gtkdoc: fix gtkdoc header script for structs with inline types
-
Colomban Wendling yazdı
Update Ruby parser from Universal-CTags. Closes #587.
-
Colomban Wendling yazdı
Move filetypes.* and *.tags to separate directories
-
- 14 Mar, 2016 17 kayıt (commit)
-
-
Matthew Brush yazdı
-
Masatake YAMATO yazdı
Close universal-ctags/ctags#453. (This is about a bug spotted in universal-ctags/ctags#453 by @mislav and in universal-ctags/ctags#11 by @NewAlexandria.) Kinds C and d are for Rspec. Parts of code related to above kinds assume a ruby string comes after Rspec keywords (describe or context). This is a wrong assumption. A class name can be used there. It is nice if ctags can handle these rspec code well, but we don't have enough resource to make it now. So in this commit I delete rspec related code temporary. I just reserve a kind letter 'd' for rspec for the future. 'C' is completely deleted because (1) describe and context have the same meaning in rspec, and (2) we would like to assign 'C' for Ruby constant as ripper-tags does. Signed-off-by:
Masatake YAMATO <yamato@redhat.com>
-
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
New test case contributed by @masatake in universal-ctags/ctags#456. Closes universal-ctags/ctags#455 and universal-ctags/ctags#456.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
This will simplify some upcoming fixes.
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
The implementation is a bit hacky, but avoids the need for complex logic to pop several scopes at once. Closes universal-ctags/ctags#452.
-
Colomban Wendling yazdı
After an identifier there can be anything but an identifier character.
-
Colomban Wendling yazdı
-
Masatake YAMATO yazdı
This patch is intended a bug reported as sf.bug:364. https://sourceforge.net/p/ctags/bugs/364/ Writing a test case is helped by Dmitry Gutov. Signed-off-by:
Masatake YAMATO <yamato@redhat.com>
-
Masatake YAMATO yazdı
fuzz target reports canMatch access wrong memory area when php-anonymous_functions.d/input.php is given as input. This patch fixes it. Signed-off-by:
Masatake YAMATO <yamato@redhat.com>
-
Masatake YAMATO yazdı
Suppress a warning reported by sparse. Signed-off-by:
Masatake YAMATO <yamato@redhat.com>
-
Artem Nezvigin yazdı
Fixes universal-ctags/ctags#49
-
Ram Singla yazdı
-
Thomas Martitz yazdı
Doxygen adds unhandled xml output for structs that define types inline, for example struct Foo { enum { FOO, BAR } baz; }. A type definitions precedes the members. The script wrongly assumed the first sectiondef child of compounddef would contain all members, but actually this is the case for sectiondefs with kind=public-attrib (the sectiondef defining the type has kind=public-type).
-
- 13 Mar, 2016 6 kayıt (commit)
-
-
Jiří Techet yazdı
ignore.tags is still in ~/.config/geany
-
Jiří Techet yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
-
Colomban Wendling yazdı
Say hello to Geany 1.28 "Malvek"!
-
Colomban Wendling yazdı
-