Changelog:
=== 0.59 - Wed 23 Jan 2012 ===
* Critical bug fix in pageview serialization
* Fix for inheritance of tags in tasklist - Epinull
* Fix for customtools dialog - Epinull
* Fix for week number in Journal plugin page template
=== 0.58 - Sat 15 Dec 2012 ===
* Added new plugin for distraction free fullscreen mode
* Added options to limit tasklist plugin to certain namespaces -
Pierre-Antoine Champin
* Added option to tasklist plugin to flag non-actionable tasks by a special tag
* Added prompt for filename for Insert New File action
* Added template option to list attachments in export
* Added class attributes to links in HTML output
* Added two more commandline options to quicknote plugin
* Made sidepanes more compact by embedding close buttons in widgets
* Critical fix for restarting zim after a crash (cleaning up socket)
* Bug fix for search queries with quoted arguments
* Bug fix for use of tags in the tasklist plugin
* Bug fix for wiki format to be more robust for bad links
* Bug fix for latex format to not use file URIs in \includegraphics{}
* Bug fix for including latex equations in latex export
* Bug fix list behavior checkboxes and numbered lists
* Fix first day of week locale for calendar plugin - based on patch by
Leopold Schabel
* Fix for handling "file:/" and "file://" URIs in links - see manual for details
* Fix for windows to not open consoles for each external application - klo uo
* Fix for windows to put config files under %APPDATA% - klo uo
* Fix to have "update heading" toggle in rename dialog more
intelligent - Virgil Dupras
* Fix to make template errors report relevant error dialogs
* Fix for search and replace whitespace in pageview
* Various small fixes
Packaged for wip by amoibos and myself.
Dhex is a ncurses-based hex-editor with a diff mode. It makes heavy
use of colors, but is also themeable to work on monochrome monitors.
It includes the good old Action Cartridge Search Algorithm to find
specific changes.
- remove LIBXAW variable. It is handled by buildlink3.mk now
- simplify patches and Makefile in packages using libXaw
- in some cases force use of Xaw3d (won't build with Xaw)
- replace some directly included of x11/Xaw3d with mk/xaw.buildlink3.mk
In next part:
- replace more includes with mk/xaw.buildlink3.mk
Patches:
7.3.713 printf() can only align to bytes, not characters
7.3.714 :setlocal and :setglobal do not work in the sandbox
7.3.715 crash when calling setloclist() in BufUnload autocmd
7.3.716 error on exit when using Python 3
7.3.717 when changing font size only MS-Windows limits window size
7.3.718 when re-using the current buffer the buffer-local options stay
7.3.719 cannot run new version of cproto
7.3.720 proto files are outdated
7.3.721 Ruby interface defines local functions globally
7.3.722 Perl flags may contain "-g", which breaks "make proto"
7.3.723 various tiny problem.
7.3.724 building with Ruby and Tcl on MS-Windows 64 bit does not work
7.3.725 :aboveleft and :belowright have no effect on :copen
7.3.726 typos and duplicate info in README
7.3.727 can't always find Win32.mak when building GvimExt
7.3.728 cannot compile with MzScheme interface on Ubuntu 12.10
7.3.729 building with Ruby fails on some systems
7.3.730 crash in PHP file when using syntastic
7.3.731 Py3Init_vim() is exported uneccessarily
7.3.732 compiler warnings for function arguments
7.3.733 tests fail when including MzScheme
7.3.734 cannot put help files in a sub-directory
7.3.735 cannot build Ruby 1.9 with MingW or Cygwin
7.3.736 file name completion in input() escapes white space
7.3.737 when using do_cmdline() recursively did_endif is not reset
7.3.738 (after 7.3.730) unused function argument
7.3.739 computing number of lines may have an integer overflow
7.3.740 IOC tool complains about undefined behavior for int
7.3.741 (after 7.3.737) tiny build fails
7.3.742 leaking memory when :vimgrep restores the directory
7.3.743 (after 7.3.741) tiny build still fails
7.3.744 64 bit compiler warning
7.3.745 automatically setting 'ttymouse' doesn't work
7.3.746 memory leaks when using location lists
7.3.747 tab alignment does not work when characters are concealed
7.3.748 no tests for conceal mode
7.3.749 cannot build Python interface without multi-byte feature
7.3.750 the justify macro does not always work correctly
7.3.751 test 61 is flaky, it fails once in a while
7.3.752 test 49 script file doesn't fold properly
7.3.753 ":q" twice does not work when there is a QuitPre autocommand
7.3.754 latest nmake is not recognized
7.3.755 autoconf doesn't find Python 3 if it's called "python"
7.3.756 a location list can get a wrong count in :lvimgrep
7.3.757 issue 96: access freed memory if put command triggers autocmd
7.3.758 matchit plugin does not handle space in #ifdef
7.3.759 MS-Windows: Updating tabline is slow when there are many tabs
7.3.760 dv_ deletes the white space before the line
7.3.761 in Visual mode a "-p does not work
7.3.762 (after 7.3.759) on some systems the tabline is not redraw.
pkgsrc changes:
- cleanup vim-xaw by adding -lXaw first, so --as-needed will work now
- remove some old entries in vim-xaw
Will fix PR 47281.
tweak is a hex editor. It allows you to edit a file at very low
level, letting you see the full and exact binary contents of the
file. It can be useful for modifying binary files such as executables,
editing disk or CD images, debugging programs that generate binary
file formats incorrectly, and many other things.
Unlike simpler hex editors, tweak possesses a fully functional
insert mode. This is not useful when editing many of the types of
file described above, but can be useful in other situations. Also,
an insert mode makes it easy to use tweak to construct new files
from scratch.
gcc45.
- avoid implicit int, declare void functions void
- return values from non-void functions
- put most external declarations properly in header files
- use some static and const
- fix up a big mess with function pointer casting
- use standard includes, don't provide own decls of standard functions
- use types matching libc when providing own malloc, printf, and putchar
- use <ctype.h> functions correctly
- silence assorted compiler warnings
- fix some bugs exposed by compiler warnings
- don't intentionally exercise signed overflow
- remove some unused items
- add patch comments to other patch (patch-aa)
As this includes several fixes and removes some undefined behavior on
a commonly reachable code path, bump PKGREVISION.
Now passes gcc -Wall -Wextra -Wmissing-declarations -Wwrite-strings on gcc45.
May build with clang now too.
Changes:
- use standard headers
- don't declare own errno, fopen(), getenv(), or malloc()
- declare own functions
- declare void functions void
- avoid implicit int
- use C89
- use some const
- use some static
- fix signed/unsigned mismatches
- call execl() properly
- don't cast return value of malloc
- initialize struct sigaction correctly
- use <ctype.h> functions correctly
- don't index arrays with (signed) char
- don't put function declarations inside function bodies
- patch up two uninitialized variables
- silence some compiler warnings that are not bugs
- remove some unused objects
and:
- add patch comments for preexisting patches
- correct some minor pkglint
As a couple of these things fixed bugs (e.g. the execl calls), bump
PKGREVISION.
DragonFly Release 3.2.x doesn't have gcc 4.1 anymore, but gcc 4.4 is
still around and also available on many prior releases. Note that emacs
24 determines the CRT path dynamically but hardcoding on this obsolete
emacs package is fine.
Incidently, this doesn't fix emacs21 which still core dumps during
installation phase, regardless of which system compiler builds it.
The previous commit used openpty on all platforms, yet failed to ensure
it was made available for them.
Add DragonFly to the string of *BSD that require libutil for openpty.
Fixes regression caused by previous commit.
While here, do some pkglint cleanup.
from Changelog:
a) "mark" was changed like GNU Emacs from Ng 1.5alpha3.
b) fix canna bug for UNIX.
c) fix compile problem when libc was used for Human68K.
from Officail Web page:
patch) fix query-replace bug.
Changelog:
Sigil 0.6.1 2012.12.02
- Implement issue 1801: Audio and Video tags and files should be supported by Sigil.
- Implement issue 1797: Clean Source should have preference options to set when it should run.
- Implement issue 1768: Add non-destructive pretty printer as an option in addition to the Tidy provided one.
- Implement issue 1770: Change Clean Source to no longer warn about restarting Sigil.
- Implement issue 1767: Change default file extension from html to xhtml.
- Implement issue 1695: Add tooltips to show counts of files in Book Browser and headings in Generate TOC.
- Implement issue 1731: Delete files, Unused Images and Styles dialog should be scrollable and allow unselecting entries.
- Implement issue 1735: Print stylesheets and other non-HTML files.
- Implement issue 1758: Handle importing invalid files with duplicate IDs in OPF file.
- Implement issue 1711: Reports should allow saving to comma separated text file.
- Implement issue 1712: Reports should be non-modal and allow editing book while still open.
- Implement issue 1748: Add a Copy Image context menu option for images.
- Implement issue 1738: Move Generate Table of Contents button to toolbar.
- Implement issue 1743: Insert Image should include an alt tag with filename.
- Implement issue 1717: Allow more control of Author field in Metadata Editor.
- Implement issue 1729: Bulk rename should allow changing file extension.
- Implement issue 1728: Open/add invalid HTML files should show line numbers of error.
- Implement issue 1742: Add context menu option in Preview View for Inspect Element.
- Implement issue 1734: Splitting files and new blank HTML files should use existing file extension.
- Implement issue 1732: Index Editor should support opening/importing .txt files.
- Implement issue 1687: Insert ID should warn if invalid ID names are used.
- Fix issue 1791: All are replaced by normal space when switching from Book View to Code View.
- Fix issue 1798: Files, *-tmp.epub, are left in /tmp/Sigil/scratchpad after closing Sigil.
- Fix issue 1785: Split at Cursor in Book View does not always update href links.
- Fix issue 1759: Zipped files get wrong date and time.
- Fix issue 1757: Spellcheck does not handle one letter misspellings properly.
- Fix issue 1750: Loading HTML file should not automatically generate TOC.
- Fix issue 1749: Right click on SVG images should give same options as other images.
- Fix issue 1730: Changing view or using back button should select file in Book Browser.
- Fix issue 1726: Selecting all text and replacing with a Clip causes crash.
- Fix issue 1707: Application may crash when editing files externally.
- Fix issue 1733: Files edited with Open With are not always updated when externally saved.
- Fix issue 1704: Language dropdown entries have blank entries.
- Fix issue 1740: When dockable windows are stacked the program can give error on close.
Changelog:
=== 0.57 - Mon 8 Oct 2012 ===
* Ported zim background process to use the multiprocessing module
- this fixes app-indicator issues under Ubuntu Unity
- adds support for quicknote and other plugins on Windows
* Reworked application framework and "open with" dialog, now also
allows to set applications per URL scheme
* New plugin for using GNU Lilypond to render music scores - Shoban Preeth
* New Zeitgeist plugin - Marcel Stimberg
* Added template method to iterate days of the week for a calendar page
* Added pythonic syntax to access dicts to template modules
* Added tasklist option to take into account a Mon-Fri work week
* Fixed start of week and week number first week of the year for calendar plugin
* Added "untagged" category to task list
* Fixed strike out TODO label showing up in task list
* Added template editor dialog
* Added support for "forward" and "back" mouse buttons
* Added support for exporting to ReST - Yao-Po Wang
* Added new option to create and insert new attachments based on file template
* Added an argument to the quicknote plugin to import attachments
* Added icons per mimetype to the attachmentbrowser
* Added statusbar button for attachment browser
* Added monitors to watch attachment folder for updates
* Fix drag&drop on non-existing folder in attachment browser
* Fix drag&drop for attachment folder on windows
* Made location of plugin widgets in side panes configurable
and reworked key bindings for accessing side panes and toggling them
* Made tags plugin to revert to standard index if no tag is selected
* Page completion now matches anywhere in the basename -- patch by Mat
* Patch to use sourceview in imagegenerator dialog - Kevin Chabowski
* Fix for insert symbol dialog to insert without typing a space
* Made image data pasted as bmp convert to png to make it more compact
* Critical bug fix for version control plugin
* Critical bug fix for xml.etree.TreeBuilder API for python 2.7.3
* Bug fix for exceptions in index - Fabian Moser
* Bug fix for interwiki links
* On windows fix for bug when home folder or user name contain non-ascii characters
* Fixed help manual opens in compiled windows version
* Fixed locale support on windows
* Added translations for Brazilian Portuguese and Romanian