- 22 May, 2011 1 kayıt (commit)
-
-
Enrico Tröger yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5812 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 17 May, 2011 2 kayıt (commit)
-
-
Frank Lanitz yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5798 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5797 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 11 May, 2011 1 kayıt (commit)
-
-
Colomban Wendling yazdı
HTML 4.01 don't seem to require the http-equiv value to be quoted, so make the quotes optional. Also allow more than one space between the meta tag and its http-equiv attribute. Closes #3300703. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5796 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 10 May, 2011 2 kayıt (commit)
-
-
Colomban Wendling yazdı
* Do all mandatory initializations in _init() rather than _new(); * Drop geany_wrap_label_set_text() in favor of plain gtk_label_set_text(), making the widget a little simpler and more transparent to the caller. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5795 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
* Add a paned to allow the plugin description part to be resized; * Split plugin name, description and authors into distinct entities and show aligned and bold titles for them. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5794 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 09 May, 2011 2 kayıt (commit)
-
-
Colomban Wendling yazdı
Re-apply r5638 now the SplitWindow plugin is fixed for real. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5775 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
Instead of reparenting the documents notebook full of ScintillaObjects, just ref it, remove it from the old parent, add it to the new parent, and then unref it. This fixes the display issue on Windows and seems to have no issues on Linux. Patch by Matthew Brush, thanks. Closes #2725342. Re-apply this patch now the X PRIMARY selection bug is fixed in Scintilla's side (see r5692). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5774 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 08 May, 2011 2 kayıt (commit)
-
-
Enrico Tröger yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5763 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Enrico Tröger yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5762 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 06 May, 2011 1 kayıt (commit)
-
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5760 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 03 May, 2011 3 kayıt (commit)
-
-
Colomban Wendling yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5759 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
at shutdown (patch by Dimitar Zhekov, thanks). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5758 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5757 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 02 May, 2011 1 kayıt (commit)
-
-
Colomban Wendling yazdı
Nothing in the API actually changed, but the project->file_patterns fields used not to be set or used at all; so bump the API to let a plugin depend on this field to be actually useful. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5756 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 01 May, 2011 1 kayıt (commit)
-
-
Colomban Wendling yazdı
grep's --include option doesn't filter files passed explicitly to grep, so when we build the file list to search in, take the filters into account. Also drop the --include options in this case since they aren't useful. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5755 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 30 Nis, 2011 7 kayıt (commit)
-
-
Colomban Wendling yazdı
Plugins may need to open a file from the message window without specifying the line number, so allow messages of the form: file[:line[...]] For instance, all the following are now correctly parsed and the corresponding file is opened: /path/to/file /path/to/file:line /path/to/file: something not a line /path/to/file:line: something /path/to/file:line something etc. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5754 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
User can now select what kind of file patterns should be used: * all: all files are searched * project: project patterns are used (only if a project is open) * custom: manually entered custom patterns are used Based on a patch by Jiří Techet, thanks. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5753 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
Project patterns support was almost present but deactivated by default because they were not used for anything. Enable them and change the pattern separator to space similarly to the find in files dialog. Based on a patch by Jiří Techet, thanks. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5752 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
tooltip (based on patch by Matthew Brush, thanks). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5751 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5750 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
agree on whether e.g. Java is a compiled language). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5749 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5748 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 29 Nis, 2011 4 kayıt (commit)
-
-
Nick Treleaven yazdı
is Compiled or Script. Use 'source file' for reStructuredText title. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5747 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
Move some programming language filetypes out of the Miscellaneous group. Fix filetype title for some languages. Don't use 'Languages' for Miscellaneous group label. These changes mostly proposed by Matthew Brush (thanks). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5746 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5745 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5744 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 26 Nis, 2011 6 kayıt (commit)
-
-
Nick Treleaven yazdı
template data - this is no longer necessary. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5743 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5742 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
Languages. Use 'source file' title for custom filetypes. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5741 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
filetype_extensions.conf. Read filetype_extensions.conf when calling filetypes_init_types(), don't require doclist initialization. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5740 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5739 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
Fix idle tag list updating not to update the tag list if the current document isn't the one to update anymore. In this case, mark the document as needing an update and re-schedule an idle update next time the document gets the focus. This fixes updating the tag list after switching documents, which resulted in displaying the wrong tag list. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5738 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 25 Nis, 2011 1 kayıt (commit)
-
-
Nick Treleaven yazdı
<~foo> (oops). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5737 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 24 Nis, 2011 2 kayıt (commit)
-
-
Colomban Wendling yazdı
This makes sure we use the user filetypes in precedence over system ones even if both are present. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5736 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Colomban Wendling yazdı
Reset the pending update delay when we get a Scintilla change not to reparse the tags when the user is actively typing. This should not be a problem since the user is unlikely to care about the tags being updated if he's actively typing, and should avoid annoying delays when actively typing inside very large files. Patch by Yura Siamashka, thanks. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5735 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 23 Nis, 2011 2 kayıt (commit)
-
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5734 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
Nick Treleaven yazdı
Arshinov, thanks). git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5733 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 20 Nis, 2011 1 kayıt (commit)
-
-
Frank Lanitz yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5732 ea778897-0a13-0410-b9d1-a72fbfd435f5
-
- 19 Nis, 2011 1 kayıt (commit)
-
-
Nick Treleaven yazdı
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5731 ea778897-0a13-0410-b9d1-a72fbfd435f5
-