pkgsrc/devel/geany/PLIST
wiz 0e496d87a0 Update to 0.17. Provided by Ulrich Etile on pkgsrc-users.
Include sysutils/desktop-file-utils/desktopdb.mk per pkglint.

Geany 0.17 (May 02, 2009)

    Bug fixes:
    * Fix broken selection of "Document->Set Encoding" menu items.
    * Fix broken non-incremental search with the toolbar search entry when
      pressing Enter (closes #2638180).
    * Fix parsing of Make output (closes #2694479, patch by Andrea Mazzoleni).
    * Fix crashes on quitting Geany (closes #2533990).
    * Fix disabled Go to Tag items in the editor menu when using the
      keyboard (#2780044).
    * Prevent crashes when two or more top level items in the symbol
      list have the same name (closes #2778246).

    Prefs:
    * Add an option to set an additional plugin lookup path.
    * Add a hidden preference 'use_safe_file_saving'. This has serious side
      effects, please read the documentation before enabling this.

    Interface:
    * Add 'Send Selection to Terminal' command to the Edit->Format menu.
    * Change the background colour of the search entries in the Find
      and Replace dialogs according to the search results.
    * Add 'Close Other Documents' and 'Close All' menu items to the tab bar
      menu.
    * Add an option to allow appending the toolbar to the main menu bar
      to save some vertical space.
    * When a project is loaded, replace the project base path with the
      project name in the Documents sidebar for parent items (closes #2723679).
    * Make the file open dialog more compact.
    * Ellipsize tab labels and some status messages for very long
      filenames (closes #2777348).
    * Add new toolbar element: Print (patch by Roland Baudin).
    * Remember the active sidebar page between sessions.
    * Add "Recent Projects" menu to the Project menu (#2728630,
      patch by Elias Pschernig).
    * Add Tools->Configuration Files item for snippets.conf.

    Filetypes:
    * Fix wrong Fortran 90 comment characters when inserting templates.
    * Add filetype ActionScript (patch by Chris Macksey).
    * Fixes for CSS, Fortran and Ruby parsers.
    * Add a trivial symbol parser for NSIS files.

    Windows:
    * On Windows, change the working directory to the Geany installation
      path at startup to avoid unwanted directory locking(closes #2626124).
    * Fix window positioning on startup.
    * Make build commands on Windows run synchronously to avoid problems
      with reading build commands' output.

    Plugins:
    * HTMLchars: Extend plugin by bulk replace and replace on
      input for special characters to their HTML entities.
    * Splitwindow: Add keybindings for the split actions.
    * VCDiff: Remove plugin from Geany. Use GeanyVC instead.

    Plugin API:
    * Deprecate sci_get_text(), sci_get_selected_text() and
      sci_get_text_range().
    * Add sci_get_contents(), sci_get_contents_range() and
      sci_get_selection_contents() as replacement functions to provide
      an easier and cleaner API (initial patch by Frank).
    * Make GEANY_FILETYPES_NONE = 0, sort filetype IDs randomly (so we can
      append new filetypes without breaking the ABI); add
      filetypes_by_title sorted list to GeanyData.

    Documentation:
    * Describe how to build Geany using the Waf build system.

    Internationalisation:
    * Updated translations: be, cs, de, es, fi, fr, hu, ja, pt_BR, ru,
      sv, tr, zh_CN


Geany 0.16 (February 15, 2009)

    Bug fixes:
    * Fix indenting for Tabs & Spaces mode when inserting snippets.
    * Fix snippets and smart indent using too much indentation when the
      line contains whitespace after non-whitespace characters (#2215044).
    * Fix segfault when showing Find in Files dialog when no documents are
      open (#2228544).
    * Fix not switching to 2nd last used document when the last used
      document has been closed (#1945162).

    General:
    * Group child tags by their parents in the symbol list for C-like
      filetypes, Python, Conf (thanks to Conrad Steenberg).
    * Use a tree for the Documents sidebar, grouped by path.
    * Add 'Tools->Configuration Files' menu with items to open
      filetype_extensions.conf and ignore.tags. These files are also
      reloaded automatically when saved.
    * Change configuration directory path to $XDG_CONFIG_HOME/geany
      (most often this is ~/.config/geany).
    * Allow to specify files on the command line and from remote instances
      to be URIs (local and with GIO also remote URIs).
    * Increase minimum required GTK version to 2.8.

    Prefs:
    * Add Project Indentation prefs, which override the Editor
      Preferences dialog options. For new projects, these default to
      the editor indent prefs.
    * Add an interface pref for whether to hide additional widgets when
      double-clicking on document notebook tabs (off by default).
    * Add a preference to invert all colours for syntax highlighting.
    * Add a hidden preference "allow_always_save" to make the Save buttons
      and menu items always sensitive.

    Interface:
    * Rework the toolbar: now all elements can be added/removed/reordered
      using a simple XML file.
    * Add new toolbar buttons for Cut, Copy, Paste, Delete, Preferences,
      Close All and Build (including a submenu for Make actions).
    * Add a progressbar widget to the statusbar to show progress for time
      consuming actions.

    Editor:
    * Make Ctrl-click go to matching brace if there's no current word.
    * Make Shift+Mouse wheel scroll the editor view horizontally.
    * Make the 'Mark' button for Find highlight the results with rounded boxes
      instead of marking the whole line.
    * Add auto-closing of braces, brackets and quotes (Guillaume de Rorthais).
    * Support multiple %cursor% wildcards in Snippets (Thomas Martitz).

    Filetypes:
    * Add new filetypes Ada, CMake, Matlab, NSIS, Vala and YAML.
    * Update HTML character entities (thanks to Tyler D'Agosta).
    * Parse restructuredText sections in the order of first-used underline
      character, which can now be any punctuation character (as per the spec).
    * Remove GTK global tags, replace them with C (C99) tags. The GTK tags
      file is still available for download on the website.
    * Minor improvements for filetypes CSS, Fortran, FreeBasic, HTML, Tcl
      and Vala.

    Windows:
    * Improve tab close icon size.
    * Changes to the Windows installer:
      - The full installer now includes the GTK 2.14 runtime environment.
      - Register ".geany" as Geany Project File extension.
      - Install GTK translation files only if installation of translation
        files were requested (saves about 22 MB otherwise).
      - Support silent installations.

    Plugins:
    * Add Split Window 'Split Vertically' command (thanks to Moritz Barsnick).
    * Make Version Diff plugin set the indent type for diffs based on the
      current file's indent type.
    * Minor improvements to the filebrowser plugin

    Plugin API:
    * Generate plugin API header geanyfunctions.h containing macros to
      avoid having to type the function pointer names manually.
    * Deprecate pluginmacros.h in favour of geanyfunctions.h.
    * Add "editor-notify" to the plugin API.
    * Add new plugin symbol plugin_help() which is called by Geany when the
      plugin should show its documentation (if any, symbol is optional).

    Documentation:
    * Update Scintilla regular expression info for v1.77 (character
      classes, ASCII escaping, character sets containing square
      brackets peculiarities). Adapted from SciTE doc.
    * Complete 'Hello World' Plugin Howto.

    Internationalisation:
    * Updated translations: bg, ca, cs, de, en_GB, fr, hu, it, ja,
      pt_BR, sv, ru, tr, vi, zh_CN
2009-07-18 19:37:42 +00:00

160 lines
5.2 KiB
Text

@comment $NetBSD: PLIST,v 1.6 2009/07/18 19:37:42 wiz Exp $
bin/geany
include/geany/dialogs.h
include/geany/document.h
include/geany/editor.h
include/geany/encodings.h
include/geany/filetypes.h
include/geany/geany.h
include/geany/geanyfunctions.h
include/geany/highlighting.h
include/geany/keybindings.h
include/geany/main.h
include/geany/msgwindow.h
include/geany/plugindata.h
include/geany/pluginmacros.h
include/geany/plugins.h
include/geany/prefs.h
include/geany/project.h
include/geany/scintilla/SciLexer.h
include/geany/scintilla/Scintilla.h
include/geany/scintilla/Scintilla.iface
include/geany/scintilla/ScintillaWidget.h
include/geany/sciwrappers.h
include/geany/search.h
include/geany/support.h
include/geany/tagmanager/tm_file_entry.h
include/geany/tagmanager/tm_project.h
include/geany/tagmanager/tm_source_file.h
include/geany/tagmanager/tm_symbol.h
include/geany/tagmanager/tm_tag.h
include/geany/tagmanager/tm_tagmanager.h
include/geany/tagmanager/tm_work_object.h
include/geany/tagmanager/tm_workspace.h
include/geany/templates.h
include/geany/toolbar.h
include/geany/ui_utils.h
include/geany/utils.h
lib/geany/classbuilder.la
lib/geany/export.la
lib/geany/filebrowser.la
lib/geany/htmlchars.la
lib/geany/saveactions.la
lib/geany/splitwindow.la
lib/pkgconfig/geany.pc
man/man1/geany.1
share/applications/geany.desktop
share/doc/geany/AUTHORS
share/doc/geany/COPYING
share/doc/geany/ChangeLog
share/doc/geany/NEWS
share/doc/geany/README
share/doc/geany/ScintillaLicense.txt
share/doc/geany/THANKS
share/doc/geany/TODO
share/doc/geany/html/images/find_dialog.png
share/doc/geany/html/images/find_in_files_dialog.png
share/doc/geany/html/images/pref_dialog_edit_completions.png
share/doc/geany/html/images/pref_dialog_edit_display.png
share/doc/geany/html/images/pref_dialog_edit_features.png
share/doc/geany/html/images/pref_dialog_edit_indentation.png
share/doc/geany/html/images/pref_dialog_files.png
share/doc/geany/html/images/pref_dialog_gen_misc.png
share/doc/geany/html/images/pref_dialog_gen_startup.png
share/doc/geany/html/images/pref_dialog_interface.png
share/doc/geany/html/images/pref_dialog_keys.png
share/doc/geany/html/images/pref_dialog_printing.png
share/doc/geany/html/images/pref_dialog_templ.png
share/doc/geany/html/images/pref_dialog_toolbar.png
share/doc/geany/html/images/pref_dialog_tools.png
share/doc/geany/html/images/pref_dialog_vte.png
share/doc/geany/html/images/replace_dialog.png
share/doc/geany/html/index.html
share/doc/geany/manual.txt
share/geany/GPL-2
share/geany/c99.tags
share/geany/filetype_extensions.conf
share/geany/filetypes.actionscript
share/geany/filetypes.asm
share/geany/filetypes.c
share/geany/filetypes.caml
share/geany/filetypes.cmake
share/geany/filetypes.common
share/geany/filetypes.conf
share/geany/filetypes.cpp
share/geany/filetypes.cs
share/geany/filetypes.css
share/geany/filetypes.d
share/geany/filetypes.diff
share/geany/filetypes.docbook
share/geany/filetypes.f77
share/geany/filetypes.ferite
share/geany/filetypes.fortran
share/geany/filetypes.freebasic
share/geany/filetypes.glsl
share/geany/filetypes.haskell
share/geany/filetypes.haxe
share/geany/filetypes.html
share/geany/filetypes.java
share/geany/filetypes.javascript
share/geany/filetypes.latex
share/geany/filetypes.lua
share/geany/filetypes.makefile
share/geany/filetypes.matlab
share/geany/filetypes.nsis
share/geany/filetypes.pascal
share/geany/filetypes.perl
share/geany/filetypes.php
share/geany/filetypes.po
share/geany/filetypes.python
share/geany/filetypes.r
share/geany/filetypes.restructuredtext
share/geany/filetypes.ruby
share/geany/filetypes.sh
share/geany/filetypes.sql
share/geany/filetypes.tcl
share/geany/filetypes.vala
share/geany/filetypes.vhdl
share/geany/filetypes.xml
share/geany/filetypes.yaml
share/geany/html_entities.tags
share/geany/latex.tags
share/geany/pascal.tags
share/geany/php.tags
share/geany/python.tags
share/geany/snippets.conf
share/geany/ui_toolbar.xml
share/icons/hicolor/16x16/apps/classviewer-class.png
share/icons/hicolor/16x16/apps/classviewer-macro.png
share/icons/hicolor/16x16/apps/classviewer-member.png
share/icons/hicolor/16x16/apps/classviewer-method.png
share/icons/hicolor/16x16/apps/classviewer-namespace.png
share/icons/hicolor/16x16/apps/classviewer-other.png
share/icons/hicolor/16x16/apps/classviewer-struct.png
share/icons/hicolor/16x16/apps/classviewer-var.png
share/locale/be/LC_MESSAGES/geany.mo
share/locale/bg/LC_MESSAGES/geany.mo
share/locale/ca/LC_MESSAGES/geany.mo
share/locale/cs/LC_MESSAGES/geany.mo
share/locale/de/LC_MESSAGES/geany.mo
share/locale/el/LC_MESSAGES/geany.mo
share/locale/en_GB/LC_MESSAGES/geany.mo
share/locale/es/LC_MESSAGES/geany.mo
share/locale/fi/LC_MESSAGES/geany.mo
share/locale/fr/LC_MESSAGES/geany.mo
share/locale/hu/LC_MESSAGES/geany.mo
share/locale/it/LC_MESSAGES/geany.mo
share/locale/ja/LC_MESSAGES/geany.mo
share/locale/ko/LC_MESSAGES/geany.mo
share/locale/nl/LC_MESSAGES/geany.mo
share/locale/pl/LC_MESSAGES/geany.mo
share/locale/pt_BR/LC_MESSAGES/geany.mo
share/locale/ro/LC_MESSAGES/geany.mo
share/locale/ru/LC_MESSAGES/geany.mo
share/locale/sv/LC_MESSAGES/geany.mo
share/locale/tr/LC_MESSAGES/geany.mo
share/locale/uk/LC_MESSAGES/geany.mo
share/locale/vi/LC_MESSAGES/geany.mo
share/locale/zh_CN/LC_MESSAGES/geany.mo
share/locale/zh_TW/LC_MESSAGES/geany.mo
share/pixmaps/geany.png