summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-09-01Update to 0.31.2:jmmv2-10/+5
Version 0.31.2 * Handle package name extraction better -- bug #144725 (Daniel Elstner) * Support for comments before translatable attributes in XML files, support for translating both tag content and attributes -- bug #143581. (Danilo Segan) Version 0.31.1 * Switch to gnome-common for autogen.sh so we can detect automake versions better -- bug #145027 (Jordi Mallach)
2004-09-01+ bidwatcher-1.3.16, elm-me-2.4pl120, fluxbox-0.9.10, liferea-0.5.3c.wiz1-6/+5
- libxml2-2.6.12, libxslt-1.1.9 (thanks, drochner!).
2004-09-01note sylpheed-gtk2-0.9.12.0.1recht1-1/+2
2004-09-01update to sylpheed-0.9.12-gtk2-20040622recht3-33/+6
Change PKGVERSION to 0.9.12.0.1 for this, since we already have 0.9.12. Changes: * Do not detect as "Edited" just after creating a new mail on compose window. (OGUCHI Takuya) * Parse gtkrc-2.0 instead of gtkrc. * Fixed auto completion bug in address entries on compose window. (Michael Graham)
2004-09-01icewm-1.2.16recht2-3/+5
2004-09-01update to 1.2.16recht10-190/+11
1.2.16: 2004-08-16 - fullscreen fix for _NET_WM_STATE_FULLSCREEN (affects mplayer) - use our own replacement for basename - ACPI battery status fix (gicco) - fix bug 984427 (addressbar ignores backspace when numlock pressed) - Polish translation update 1.2.15: 2004-08-09 - enable locale for icesh 1.2.15pre4: 2004-08-05 - fix crash/lockup at startup in ACPI status applet when ac module not loaded - tray icon sizing cleanups - fix bug 883518: keyboard gets locked until icewm menu is activated - double buffering fixes - French translation update - Finnish translation update (Taisto Kuikka) - menuprogreload menu keyword added (Konstantin Korikov) syntax: menuprogreload title icon timeout command ... - battery status display for FreeBSD (Hanspeter Roth) - smart snap window positioning triggered by C+S+A+numpad (Bert Wesarg) - key to show desktop (Super+D) 1.2.15pre3: 2004-08-01 - icesound gcc 2.95.3 compile fix (Thomas Zajic) - net status support for OpenBSD (Hanspeter Roth) - FreeBSD build fix (Hanspeter Roth) - basename cleanups for FreeBSD - systray cleanups for wine, ... - battery status uses design capacity (Hanspeter Roth) 1.2.15pre2: 2004-07-18 - Slovak translation (Radovan Stas) - fix activation from gnome-2.6 panel to properly raise window - fix transparency support (caused crashes in xchat...) - NetBSD support for NetStatus (Iain Hibbert) - net modifier setup code to cope with weird xorg modifier setup 1.2.15pre1: 2004-06-27 - fix ppp applet isdn online status - fix focusing new+maximized windows - fix some alt+tab pref combinations (hidden + all/group workspaces) - some more gcc 3.4 fixes (morfic)
2004-09-01Note update of xmlcatmgr to 2.2.jmmv1-1/+2
2004-09-01Update to 2.2:jmmv3-31/+17
Third stable version of the 2.x branch, released on 2004/09/01. * Converted to use the GNU Build System (GNU Automake and GNU Autoconf). * Because of the previous change, the build has been hopefully fixed in several platforms, specially under Irix 6.5 using the MIPSpro C compiler.
2004-09-01s/subversion/subversion-base/ to avoid a dependency loop.martin1-2/+2
2004-09-01note xorg-fontsTruetype-6.7.0nb1recht1-1/+2
2004-09-01Remove the confict with vera-ttf since, even though this package installsrecht2-3/+9
the same fonts, they're installed in a different location. This allows the gnome meta-package to be installed with x.org's X11. Bump PKGREVISION to 1. ok'd by xtraeme
2004-09-01Match the default value and the "Default" line (W3M_USE_UNICODE).uebayasi1-2/+2
2004-09-01Note net/nmap update.salo1-1/+2
2004-09-01Update to version 3.70.salo3-8/+8
Significant changes: - Rewrote core port scanning engine, which is now named ultra_scan(). Improved algorithms make this faster (often dramatically so) in almost all cases. Not only is it superior against single hosts, but ultra_scan() can scan many hosts (sometimes hundreds) in parallel. This offers many efficiency/speed advantages. For example, hosts often limit the ICMP port unreachable packets used by UDP scans to 1/second. That made those scans extraordinarily slow in previous versions of Nmap. But if you are scanning 100 hosts at once, suddenly you can receive 100 responses per second. Spreading the scan amongst hosts is also gentler toward the target hosts. Nmap can still scan many ports at the same time, as well. If you find cases where ultra_scan is slower or less accurate, please send a report (including exact command-lines, versions used, and output, if possible) to Fyodor. - Added --max_hostgroup option which specifies the maximum number of hosts that Nmap is allowed to scan in parallel. - Added --min_hostgroup option which specifies the minimum number of hosts that Nmap should scan in parallel (there are some exceptions where Nmap will still scan smaller groups -- see man page). Of course, Nmap will try to choose efficient values even if you don't specify hostgroup restrictions explicitly. - Rewrote TCP SYN, ACK, Window, and Connect() scans to use ultra_scan() framework, rather than the old pos_scan(). - Rewrote FIN, Xmas, NULL, Maimon, UDP, and IP Protocol scans to use ultra_scan(), rather than the old super_scan(). - Overhauled UDP scan. Ports that don't respond are now classified as "open|filtered" (open or filtered) rather than "open". The (somewhat rare) ports that actually respond with a UDP packet to the empty probe are considered open. If version detection is requested, it will be performed on open|filtered ports. Any that respond to any of the UDP probes will have their status changed to open. This avoids a the false-positive problem where filtered UDP ports appear to be open, leading to terrified newbies thinking their machine is infected by back orifice. - Nmap now estimates completion times for almost all port scan types (any that use ultra_scan()) as well as service scan (version detection). These are only shown in verbose mode (-v). On scans that take more than a minute or two, you will see occasional updates like: SYN Stealth Scan Timing: About 30.01% done; ETC: 16:04 (0:01:09 remaining) New updates are given if the estimates change significantly. - Added --exclude option, which lets you specify a comma-separated list of targets (hosts, ranges, netblocks) that should be excluded from the scan. This is useful to keep from scannig yourself, your ISP, particularly sensitive hosts, etc. The new --excludefile reads the list (newline-delimited) from a given file. All the work was done by Mark-David McLaughlin (mdmcl(a)cisco.com> and William McVey ( wam(a)cisco.com ), who sent me a well-designed and well-tested patch. - Nmap now has a "port scan ping" system. If it has received at least one response from any port on the host, but has not received responses lately (usually due to filtering), Nmap will "ping" that known-good port occasionally to detect latency, packet drop rate, etc. - Service/version detection now handles multiple hosts at once for more efficient and less-intrusive operation. - Nmap now wishes itself a happy birthday when run on September 1 in verbose mode! The first public release was on that date in 1997. - The port randomizer now has a bias toward putting commonly-accessible ports (80, 22, etc.) near the beginning of the list. Getting a response early helps Nmap calculate response times and detect packet loss, so the scan goes faster. - Host timeout system (--host_timeout) overhauled to support host parallelization. Hosts times are tracked separately, so a host that finishes a SYN scan quickly is not penalized for an exceptionally slow host being scanned at the same time. - When Nmap has not received any responses from a host, it can now use certain timing values from other hosts from the same scan group. This way Nmap doesn't have to use absolute-worst-case (300bps SLIP link to Uzbekistan) round trip timeouts and such. - Enabled MAC address reporting when using the Windows version of Nmap. Thanks to Andy Lutomirski (luto(a)stanford.edu) for writing and sending the patch. - Workaround crippled raw sockets on Microsoft Windows XP SP2 scans. I applied a patch by Andy Lutomirski (luto(a)stanford.edu) which causes Nmap to default to winpcap sends instead. The winpcap send functionality was already there for versions of Windows such as NT and Win98 that never supported Raw Sockets in the first place. - Changed how Nmap sends Arp requests on Windows to use the iphlpapi SendARP() function rather than creating it raw and reading the response from the Windows ARP cache. This works around a (reasonable) feature of Windows Firewall which ignored such unsolicited responses. The firewall is turned on by default as of Windows XP SP2. This change was implemented by Dana Epp (dana(a)vulscan.com). - Fixed some Windows portability issues discovered by Gisle Vanem (giva(a)bgnett.no). - Upgraded libpcap from version 0.7.2 to 0.8.3. This was an attempt to fix an annoying bug, which I then found was actually in my code rather than libpcap :). - Removed Ident scan (-I). It was rarely useful, and the implementation would have to be rewritten for the new ultra_scan() system. If there is significant demand, perhaps I'll put it back in sometime. - Documented the --osscan_limit option, which saves time by skipping OS detection if at least one open and one closed port are not found on the remote hosts. OS detection is much less reliable against such hosts anyway, and skipping it can save some time. - Updated nmapfe.desktop file to provide better NmapFE desktop support under Fedora Core and other systems. Thanks to Mephisto (mephisto(a)mephisto.ma.cx) for sending the patch. - Further nmapfe.desktop changes to better fit the freedesktop standard. The patch came from Murphy (m3rf(a)swimmingnoodle.com). - Fixed capitalization (with a perl script) of many over-capitalized vendor names in nmap-mac-prefixes. - Ensured that MAC address vendor names are always escaped in XML output if they contain illegal characters (particularly '&'). Thanks to Matthieu Verbert (mve(a)zurich.ibm.com) for the report and a patch. - Changed xmloutputversion in XML output from 1.0 to 1.01 to note that there was a slight change (which was actually the MAC stuff in 3.55). Thanks to Lionel CONS (lionel.cons(a)cern.ch) for the suggestion. - Many Windows portability fix and bug fixes, thanks to patch from Gisle Vanem (giva(a)bgnett.no). With these changes, he was able to compile Nmap on Windows using MingW + gcc 3.4 C++ rather than MS Visual Studio. - Removed (addport) tags from XML output. They used to provide open ports as they were discovered, but don't work now that the port scanners scan many hosts at once. They did not specify an IP address. Of course the appropriate (port) tags are still printed once scanning of a target is complete. - Configure script now detects GNU/k*BSD systems (whatever those are), thanks to patch from Robert Millan (rmh@debian.org) - Fixed various crashes and assertion failures related to the new ultra_scan() system, that were found by Arturo "Buanzo" Busleiman (buanzo(a)buanzo.com.ar), Eric (catastrophe.net), and Bill Petersen (bill.petersen(a)alcatel.com). - Fixed some minor memory leaks relating to ping and list scanning as well as the Nmap output table. These were found with valgrind ( http://valgrind.kde.org/ ). - Provide limited --packet_trace support for TCP connect() (-sT) scans. - Fixed compilation on certain Solaris machines thanks to a patch by Tom Duffy (tduffy(a)sun.com) - Fixed some warnings that crop up when compiling nbase C files with a C++ compiler. Thanks to Gisle Vanem (giva(a)bgnett.no) for sending the patch. - Tweaked the License blurb on source files and in the man page. It clarifies some issues and includes a new GPL exception that explicitly allows linking with the OpenSSL library. Some people believe that the GPL and OpenSSL licenses are incompatable without this special exception. - Fixed some serious runtime portability issues on *BSD systems. Thanks to Eric (catastrophe.net) for reporting the problem. - Changed the argument parser to better detect bogus arguments to the -iR option. - Removed a spurious warning message relating to the Windows ARP cache being empty. Patch by Gisle Vanem (giva(a)bgnett.no). - Removed some C++-style line comments (//) from nbase, because some C compilers (particularly on Solaris) barf on those. Problem reported by Raju Alluri <Raju.Alluri(a)Sun.COM>
2004-09-01Replace the only occurrence of the :E modifier in bsd.pkg.mk withschmonz1-2/+2
a more familiar construction. BZCAT wasn't getting defined for a bzip2-compressed patch in my tree; now it is.
2004-09-01copy patch for alpha from mozillataya2-1/+18
2004-08-31zlib updated to zlib-1.2.1nb2. (Security fixes.)reed1-1/+2
2004-08-31Added two patches for fixing possible security issue.reed5-4/+35
The CVS security ID is CAN-2004-0797. The fix is same as used by OpenBSD, Debian and Gentoo. (Didn't see any reference to issue on zlib webpages.) The OpenBSD announcement "zlib reliabilty fix" says: "could allow an attacker to crash programs linked with it." And the Gentoo announcement says "zlib contains a bug in the handling of errors in the inflate() and inflateBack() functions. ... An attacker could exploit this vulnerability to launch a Denial of Service attack on any application using the zlib library." PKGREVISION is bumped and BUILDLINK_RECOMMENDED.zlib added to buildlink3.mk file.
2004-08-31Update maintainer's email address. Same maintainer. New address.reed1-2/+2
2004-08-31Move including the ../../mk/bsd.prefs.mk and checking for Linuxreed1-7/+7
to after GNU_CONFIGURE and USE_LIBTOOL being set. This fixes the problem where the lt_cv_sys_max_cmd_len was not added to the CONFIGURE_ENV. Now that I think about it, I caused this problem when I added that Linux check...
2004-08-31Note update of metacity to 2.8.4.jmmv1-1/+2
2004-08-31Update to 2.8.4:jmmv3-6/+8
This release features a number of bug fixes, and also the disabling of the focus-stealing-prevention code (we're entering hard code freeze in Gnome so it's too late to fix the remaining issues, especially since it requires several patches to modules other than Metacity). Thanks to Havoc Pennington, Soeren Sandmann, Elijah Newren, and Rich Wareham for fixes in this release Fixes * track the last_xor_rect, for wireframe painting (Havoc) * Move wireframe code before grab is released to prevent endless loops with fullscreen windows. (Soeren) * Make dialogs that Metacity shows follow focus-stealing-prevention conventions. (Elijah; part of #149028) * add render extension check to the display, don't build the compositing manager by default, use an ARGB visual when available for the window frame (Rich Wareham; various tweaks added later by Havoc) * move the have_xrender variable initialization up in the file since it can be set as part of composite check (Havoc) * make argb stuff compile, add some code from xcompmgr (Havoc) * fix an assertion failure that would occur after increasing the number of workspaces; fix stacking order when a window is denied focus (Elijah; #150615) * disable some compositor code that wasn't working, don't grab the server during repaint, various set_background fixes and refactoring (Havoc) Translations * az(Metin Amiroff), bs(Kemal Sanjta), ca(Jordi Mallach), el(Kostas Papadimas), es(Francisco Javier F. Serrador), eu(Iñaki Larrañaga Murgoitio), fi(Pauli Virtanen), nb(Kjartan Maraas), sq(Laurent Dhima), uk(Maxim Dziumanenko)
2004-08-31Note revision bump for glade2 to 1.jmmv1-1/+2
2004-08-31Depend on libgail-gnome so that accessibility options can be configured forjmmv1-1/+3
widgets. Problem found by wiz@. Bump PKGREVISION to 1.
2004-08-31Initial addition.jmmv1-0/+26
2004-08-31Change the way that we disable unwanted code regions... just #undef _LIBC.jlam3-21/+21
2004-08-31Don't use .PHONY, which isn't understood by every make. Split out thejlam1-3/+6
"all" target as the first one so that a bare "make" will build the "all" target by default. This should fix problems seen on AIX 5.1.
2004-08-31Note update of epiphany to 1.2.8.jmmv1-1/+2
2004-08-31Update to 1.2.8:jmmv3-24/+24
============== Epiphany 1.2.8 ============== Code changes * Adapt to Mozilla API changes (Christian) * Confirm before overwriting a file [#143501] Bug fixes * Fix compilation of nautilus view (Christian) [#148995] * Fix some memory leaks (Jean-François Rameau) * Really translate the program name (Christian) [#148948] * Fix restoring the history window on resume (Christian) * Fix new tab position (Christian) * Fix a crash in content handler (Christian) [#149550] * Fix context menu on links with namespaced tag (Mikael Brockman) [#150208] ============== Epiphany 1.2.7 ============== Code changes * Adapt to mozilla API changes (Christian) * Use nsIDOMWindow2 to get the root event target on mozilla >= 1.7rc3 (Christian) Bug fixes * Work around mozilla bug #246392 which causes reloads of framed pages to go back to original URI (backported from HEAD) (Christian) [#115800] * Escape markup in string in the duplicate bookmarks dialogue and topics menu (Christian) * Escape markup in strings in the NSS dialogues (Crispin Flowerday) * Work aroung mozilla bug #246392 which causes reload of framed pages to go back to initial frameset (Christian, Crispin Flowerday) [#115800] * Don't show redirected and non-toplevel pages in history (Christian) [#142143] * Allow importing of Epiphany bookmarks format too (Christian) [#144699] * Fix crash with corrupted toolbars file (Christian) [#144698] * Fix prefs persistence with non-existent or bogus initial values (Christian) * Unescape mailto: addresses (Christian) [#144462] * Fix filename encoding for print-to-file (Christian) * Depend on libgnomeui >= 2.6.0 (Christian) [#145776] * Make print and print setup go trough nsIPrintingPromptService (Christian, backported from HEAD) * Fix print-to-file filechooser modality (Christian) [#147628] * Fix mem leaks in gtk NSS dialogues (Christian, ported from galeon) * Gracefully handle failure to create downloads directory (Marco) [#146902] * Fix single observer ownership and reference counting (Christian) [#146873, #146461] * Fix downloader crash on shutdown (Marco) [#141928] * Fix build with old mozilla versions (1.4.x, 1.5) (Christian) * Use nsACString instead of nsCString in a few places in EphyWrapper (Christian) * Fix crash on screen size change after using fullscreen (Christian) New translations * he Updated translations * bg, ca, vi
2004-08-31note vice update to 1.15:dillo2-3/+3
** General - Improved event recording and playback. ** C64 changes - Fixed some CPU opcodes. - Added support for Magic Formel cart (preliminary). - Improved TFE cart emulation. - Fixed Final Cartridge III freeze bug. ** VIC20 changes - Four true drives are supported now. - The sound code has been rewritten. ** PLUS4 changes - Added cartridge support. ** VIC-II - Improved IRQ timing during DMA. ** Unix Changes - Improved ROM set support. - Added TFE and IDE64 cart support. - Fixed crash on 64bit archs. - Added BSD USB joystick support. - Complete rework of french translation. Credits to Paul (alias Kaddict)! ** Miscellaneous changes - Made fsdevice emulation to list non-PRG files again. - Improved REL file handling of the virtual drive emulation. - Fixed some bugs in the petcat tokenizer.
2004-08-31update to 1.15:dillo14-944/+17
** General - Improved event recording and playback. ** C64 changes - Fixed some CPU opcodes. - Added support for Magic Formel cart (preliminary). - Improved TFE cart emulation. - Fixed Final Cartridge III freeze bug. ** VIC20 changes - Four true drives are supported now. - The sound code has been rewritten. ** PLUS4 changes - Added cartridge support. ** VIC-II - Improved IRQ timing during DMA. ** Unix Changes - Improved ROM set support. - Added TFE and IDE64 cart support. - Fixed crash on 64bit archs. - Added BSD USB joystick support. - Complete rework of french translation. Credits to Paul (alias Kaddict)! ** Miscellaneous changes - Made fsdevice emulation to list non-PRG files again. - Improved REL file handling of the virtual drive emulation. - Fixed some bugs in the petcat tokenizer.
2004-08-31Note update of bmp and bmp-esound to 0.9.7rc2.jmmv1-1/+3
2004-08-31Update bmp and bmp-esound to 0.9.7rc2 (what a PITA):jmmv20-540/+101
BMP 0.9.7 rc2 Bugfixes * Include the file "beep/build.list" in the distribution. BMP 0.9.7 rc1 Enhancements * Revised GUI according to GNOME HIG * New window icons * New About and Preferences dialog * New file/folder selector using GTK+ 2.4's file chooser * Skin cursor support * New equalizer using IIR filtering * ID3v2 editing support using id3lib * ID3 character encoding to assume may now be overrided * New title formatting tag for conditional fields eg. %{n:text%} * Experimental GConf and GNOME VFS support * New translations (Dutch, German, Italian, Japanese, Korean, Lithuanian, Russian, Simplified Chinese, Spanish, Swedish, Welsh) * Merged configure scripts for shorter build time Miscellaneous * Removed EasyMove and DoubleSize * Removed real-time priority support * Removed AM_PATH_BMP m4 macro in favour of PKG_CHECK_MODULES * Removed beep-config in favour of 'pkg-config bmp' Bugfixes * Memory leaks * i18n and l10n * Many others (see Bugzilla and ChangeLog)
2004-08-31Remove myself from Solaris pkgsrc platform.seb1-2/+2
2004-08-31Note getmail update.schmonz1-1/+2
2004-08-31Update to 4.1.3. From the changelog:schmonz2-5/+5
-enhance warning diagnostics about non-accessible or non-writable maildirs. -change method of determining name of local host; only fall back to getfqdn() if the result of gethostname() does not contain a dot. -documentation enhancements.
2004-08-31Add pthread bl3, and some NOT_FOR_PLATFORM lineswiz1-1/+5
for older NetBSD releases, since this package needs the net80211/*.h header files. Addresses PR 26814.
2004-08-31MASTER_SITES don't have the old version of ImageMagick any more.reed1-1/+2
So suggest updateding to new version.
2004-08-31Note update of libgnome to 2.6.1.2.jmmv1-1/+2
2004-08-31Update to 2.6.1.2:jmmv3-34/+9
2004-05-16 Anders Carlsson <andersca@gnome.org> * configure.in: Release 2.6.1.2 2004-05-15 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Post release bump. * libgnome/gnome-program.c: (gnome_program_instance_init): Merge fix for bug #142502 from HEAD. 2004-05-02 Anders Carlsson <andersca@gnome.org> * libgnome/gnome-program.c: (gnome_program_get_property): Fix memory leak. (#135773, Christian Persche) 2004-05-02 Anders Carlsson <andersca@gnome.org> * configure.in: * doc/reference/Makefile.am: * doc/reference/libgnome-docs.sgml: * doc/reference/version.xml.in: Put version number in reference docs. (#125759, Steve Chaplin) 2004-05-02 Anders Carlsson <andersca@gnome.org> * libgnome/gnome-sound.c: Fix crash when reading invalid audio files. (#124519, Chris Lahey)
2004-08-31New section: 11.49 Packages installing extensions to the MIME database.jmmv1-1/+25
It documents the new databases/shared-mime-info/mimedb.mk file.
2004-08-31Note update of drivel to 1.2.0.jmmv1-1/+2
2004-08-31Update to 1.2.0:jmmv3-9/+26
Drivel 1.2.0 (The "Hero of Canton" release) =========================================== * Improvements: - Added a user manual (Todd). * Fixes: - Fixed the oft-reported "automaticall" typo (Todd). - Synced eggtrayicon.* and recent-files/* with libegg to get the latest improvements and bug-fixes (Todd). * Translations: - Updated Canadian English translation (Adam Weinberger). - Updated Simplified Chinese translation (Funda Wang). - Updated Portuguese translation (Duarte Loreto). - Updated Swedish translation (Christian Rose). - Updated Czech translation (Miloslav Trmac). - Updated Dutch translation (Elros Cyriatan). - Updated Spanish translation (Francisco Javier F. Serrador). - Updated Albanian translation (Laurent Dhima). - Updated Brazilian Portuguese translation (Estêvão Samuel Procópio). Drivel 1.1.2 (The "Betas make bubbles!" release) ================================================ * Improvements: - Replace the RSA's reference MD5 implementation with a free one. - Add the GNOME Spinner to the network progress dialog. - Make the standard error dialog conform to the HIG. - Port the Network Progress and Insert Image dialogs to Glade. - Gave the Insert Image and Insert Link dialogs a make-over and some HIG-lovin'. - Added a Cancel button to the new Network Progress dialog. - Use unique names for user pictures, prevents re-downloading the same image again and again. - Add support for back-dating journal entries. - Add tooltips for post options. * Fixes: - Prevent the network dialog from "blinking" on short transactions. - Fix a crash that occured when the network dialog was closed manually. - Double-clicking an entry in the history dialog opens it for editing. - Prevent the user from selecting a row in the history list when it is empty, fixes a crash. - Fix a few strings to bring them into HIG 2.0 compliance. * Translations: - Updated Brazilian Portuguese translation (Raphael Higino and Estêvão Samuel Procópio). - Updated Czech translation (Miloslav Trmac). - Updated Canadian English translation (Adam Weinberger). - Updated British English translation (David Lodge). - Updated Spanish translation (Francisco Javier F. Serrador). Drivel 1.1.1 (The "I'm too hung-over to be creative" release) ============================================================= * Improvements: - RhythmBox support for the Music entry (Davyd Madeley). - New and improved network layer which doesn't suck. - Abstracted blog API, should make it easy to support multiple blog systems in the future. - Support for EggRecent. - Added a "Drivel journal draft" mimetype. - Redesigned the Friends dialog. * Fixes: - Plugged some memory leaks. - Use the correct signal (enter_notify) for triggering the query_music function. - Lots of HIG-related spacing fixes. * Translations: - Updated Spanish translation (Francisco Javier F. Serrador). - Updated Brazilian Portuguese translation (Raphael Higino). - Updated Norwegian translation (Kjartan Maraas). - Updated Albanian translation (Laurent Dhima). - Updated Czech translation (Miloslav Trmac). - Updated British English translation (David Lodge). Drivel 1.1.0 (The "Happy birthday, Stephie!" release) ===================================================== * Improvements: - HTML syntax highlighting (Davyd Madeley and Grahame Bowland). - Optional in-line spell checking support via GtkSpell. - Undo/Redo support (Davyd Madeley). - Support the new challenge/response LiveJournal authentication method. - Per-account autosaves. - Use LogJam's XML file format when saving/loading drafts (Davyd Madeley). - The Insert Link dialog now replaces selected text with a hyper-linked version of the text. - Saves the filename of drafts so that the user isn't prompted each time she presses "Save Draft" and add a "Save Draft as..." menu command. - Autocomplete support for the Mood control (Davyd Madeley). - Lots of HIG work on the menus, dialogs, and alerts. * Fixes: - Keybinding fixes. - Resolve a couple of bugs in the History dialog (still requires GTK+ 2.4.4 or higher to work correctly) (Davyd Madeley). - Correct the lj-lq tag in the poll creator (Grahame Bowland). - Don't duplicate the protocol in the Insert Link dialog (gnome@nash.nu). - Fixed the autosave feature. - Resolved a network threading issue that prevented Drivel from working on NetBSD, and possibly the other BSD variants as well. - Protect proxy variables with mutex locks, should resolve some more BSD-related threading issues. - Use libcurl's unescape method rather than our own, fixes a NetBSD character conversion problem. - Fix C99-ism which was preventing successfull compilation on GCC-2.95 (Julio M. Merino Vidal). * Translations: - Added Albanian translation (Laurent Dhima). - Updated Czech translation (Miloslav Trmac). - Updated Brazilian Portuguese translation (Raphael Higino). - Updated British English translation (David Lodge).
2004-08-31Note update of yelp to 2.6.2.jmmv1-1/+2
2004-08-31Add 'ka' locale, initially used by yelp-2.6.2.jmmv11-11/+55
2004-08-31Update to 2.6.2:jmmv3-7/+13
* Fixed various leaks and crashes: #140663 #140757 #139739 #142081 #140595 #140630 * Updated translations: bg (Vladimir "Kaladan" Petkov) bs (Kemal Sanjta) en_CA (Alexander Winston) eu (Iñaki Larrañaga) fi (Pauli Virtanen) fr (Christophe Merlet) hi (Guntupalli Karunakar) hu (Laszlo Dvornik) ka (Pablo Saratxaga) mi (John C Barstow) nb (Kjartan Marass) nl (Tino Meinen) pt_BR (Gustavo Maciel Dias Vieira) sq (Laurent Dhima) sv (Christian Rose) tg (Pablo Saratxaga) tk (Gurban M. Tewekgeli)
2004-08-31Pick up maintainership (something I should have done a long while ago...)jmmv4-8/+8
2004-08-31Note update of shared-mime-info to 0.15 and revision bump for glabels to 1.jmmv1-1/+3
2004-08-31- Set USE_DIRS to gnome2-1.5 to handle multiple shared directoriesjmmv2-6/+12
automatically in the PLIST. - Use the new mimedb.mk file from shared-mime-info to handle the registration of new mime types. - Remove redundant LIBTOOL_OVERRIDE - Bump PKGREVISION to 1 because of this.
2004-08-31Update to 0.15:jmmv8-415/+117
* Changes in the package: - Add a buildlink3.mk file to be used to add a direct dependency on this package. This file also creates a fake "update-mime-database" wrapper in the buildlink directory so that programs can't run it directly during its build. - Add the mimedb.mk file, which can be used by packages that install mimedb extensions (into share/mime/packages) to automatically rebuild the database at (de)installation time. - The mime database files (except those installed into share/mime/packages) must not be listed in the PLIST, so add some PRINT_PLIST_AWK magic to handle this automatically. * Mime Types Changes: - Added various aliases - Make text files inherit from text/plain - Added text/x-xmi - Added application/x-javascripta * Translations: - new translations: Danish (Ole Laursen), Greek (Nikos Charonitakis), Korean (Cha Young-Ho) - updated translations: Finnish (Ville Skyttä), German (Christian Neumair)