quassel.git
14 years agoDon't declare QVariant as a meta type if it's already known
Manuel Nickschas [Thu, 18 Mar 2010 13:12:41 +0000 (14:12 +0100)]
Don't declare QVariant as a meta type if it's already known

Prevents a crash with Qt >= 4.7, since this version starts declaring QVariant as a metatype
itself. Older versions, for some bizarre reason, didn't.

14 years agoReset the BufferViewFilter after setting a new config
Manuel Nickschas [Sun, 14 Mar 2010 12:51:02 +0000 (13:51 +0100)]
Reset the BufferViewFilter after setting a new config

I'm not sure why, but somehow BufferView crashes in rare occasions because of invalid modelindexes
if we don't reset the BufferModel after setting its config. This is even true if we haven't set
a source model before, so an attached View couldn't even get any invalid indexes in the first
place. Anyway, it stops Quassel from crashing here, so I shouldn't complain, I guess.

This hopefully fixes #663, the Heisenbug that has haunted us for a long time now. At least for me.

14 years agosanificating and decrashificating the TopicWidget
Marcus Eggenberger [Fri, 12 Mar 2010 12:07:21 +0000 (13:07 +0100)]
sanificating and decrashificating the TopicWidget

14 years agoImport Launchpad translation updates
Daniel Albers [Thu, 11 Mar 2010 00:33:07 +0000 (01:33 +0100)]
Import Launchpad translation updates

14 years agofixes 898
Thomas Mueller [Thu, 21 Jan 2010 21:24:16 +0000 (22:24 +0100)]
fixes 898

14 years agoMessages with redirection flag set (all messages that allow client side redirection...
Marcus Eggenberger [Thu, 11 Mar 2010 16:31:39 +0000 (17:31 +0100)]
Messages with redirection flag set (all messages that allow client side redirection) will no longer trigger a buffer creation

14 years agopermanently ignored (HardStrictness) messages can no longer trigger a buffer creation
Marcus Eggenberger [Thu, 11 Mar 2010 16:02:29 +0000 (17:02 +0100)]
permanently ignored (HardStrictness) messages can no longer trigger a buffer creation

14 years agoMake Quassel work with Qt 4.5 again
Marcus Eggenberger [Thu, 11 Mar 2010 14:03:12 +0000 (15:03 +0100)]
Make Quassel work with Qt 4.5 again

14 years agoMake keyboard shortcuts independent from translations
Daniel Albers [Tue, 9 Mar 2010 23:33:01 +0000 (00:33 +0100)]
Make keyboard shortcuts independent from translations

14 years agocleanup
Dirk Rettschlag [Tue, 9 Mar 2010 11:35:52 +0000 (12:35 +0100)]
cleanup

14 years agofixed height of inputline to match the rest of the inputwidget
Dirk Rettschlag [Mon, 8 Mar 2010 12:39:31 +0000 (13:39 +0100)]
fixed height of inputline to match the rest of the inputwidget

14 years agobetter height for nick combobox and style button
Dirk Rettschlag [Mon, 8 Mar 2010 12:32:09 +0000 (13:32 +0100)]
better height for nick combobox and style button

14 years agoProperly clean up after disconnecting
Manuel Nickschas [Tue, 9 Mar 2010 18:37:44 +0000 (19:37 +0100)]
Properly clean up after disconnecting

Mainly this fixes a crash on reconnect, because ToolBarActionProvider didn't clean
up its state after disconnecting. Now the relevant classes have slots for connecting
and disconnecting that can be reimplemented if necessary.

A better solution is probably polling Client's state rather than using slots, but for
now this should be ok.

14 years agoAlready disconnect on Solid::Network::Disconnecting
Manuel Nickschas [Tue, 9 Mar 2010 18:36:27 +0000 (19:36 +0100)]
Already disconnect on Solid::Network::Disconnecting

Not sure if this state is ever reached (as most solid disconnections occur after
the network is already down), but if it does, it gives us a chance to cleanly
take down the sockets etc. before being offline.

14 years agoRevert "Remove the workaround for the #663 Heisenbug again"
Manuel Nickschas [Tue, 9 Mar 2010 08:26:53 +0000 (09:26 +0100)]
Revert "Remove the workaround for the #663 Heisenbug again"

Looks like I can finally (yay) reproduce this bug myself, which means that a) it's
still around, b) no need to let users suffer from random crashes. So putting back
the workaround for the general populace makes sense for now.

This reverts commit 9f1d8fb3b3e6e40b39953094ed3f833dd7aee53b.

14 years agoRevert "sort languages in settings"
Manuel Nickschas [Sun, 7 Mar 2010 18:46:53 +0000 (19:46 +0100)]
Revert "sort languages in settings"

Needs a more thorough fix to make saving/loading work properly

This reverts commit 60ecc5b5f5d7e93cc3d5ec72412d1ab50cf63191.

14 years agoBump inxi version to 1.4.8
Manuel Nickschas [Sun, 7 Mar 2010 17:04:29 +0000 (18:04 +0100)]
Bump inxi version to 1.4.8

14 years agofix trayicon-tooltip for linux
Manuel Nickschas [Sun, 7 Mar 2010 17:02:30 +0000 (18:02 +0100)]
fix trayicon-tooltip for linux

14 years agosort languages in settings
Dirk Rettschlag [Thu, 4 Mar 2010 17:31:21 +0000 (18:31 +0100)]
sort languages in settings

14 years agofixes #929
Johannes Huber [Fri, 5 Mar 2010 00:41:30 +0000 (01:41 +0100)]
fixes #929

14 years agoignore font styles of custom input widget fonts
Dirk Rettschlag [Fri, 5 Mar 2010 11:10:05 +0000 (12:10 +0100)]
ignore font styles of custom input widget fonts

14 years agofix trayicon-tooltip for mac and win
Martin Mayer [Fri, 5 Mar 2010 13:26:36 +0000 (14:26 +0100)]
fix trayicon-tooltip for mac and win

14 years agoAllow the creation of win32 debug builds.
Hendrik Leppkes [Sat, 6 Mar 2010 09:55:56 +0000 (10:55 +0100)]
Allow the creation of win32 debug builds.

14 years agoFix Danish translation
Daniel Albers [Sun, 7 Mar 2010 15:05:03 +0000 (16:05 +0100)]
Fix Danish translation

14 years agoRemove the workaround for the #663 Heisenbug again
Manuel Nickschas [Sun, 7 Mar 2010 12:07:02 +0000 (13:07 +0100)]
Remove the workaround for the #663 Heisenbug again

The workaround is fugly and has side-effects. We need to check if the systray crash is still
present with current Qt and Quassel versions, thus I disable the workaround in master.

Please report any crashes that look similar to the backtraces in bug 663.

14 years agoAdding users and changing passwords needs a configured core.
Michael Groh [Thu, 4 Mar 2010 09:59:38 +0000 (10:59 +0100)]
Adding users and changing passwords needs a configured core.
Fixing bug #924

14 years agofixed multiline paste again
Dirk Rettschlag [Thu, 4 Mar 2010 10:28:25 +0000 (11:28 +0100)]
fixed multiline paste again

14 years agoFix genversion error in unclean build directories
Daniel Albers [Thu, 4 Mar 2010 08:43:01 +0000 (09:43 +0100)]
Fix genversion error in unclean build directories

14 years agoPost-branch version bump 0.7-pre
Manuel Nickschas [Wed, 3 Mar 2010 16:32:41 +0000 (17:32 +0100)]
Post-branch version bump

14 years agoBump version.inc for release 0.6-rc1
Manuel Nickschas [Wed, 3 Mar 2010 16:30:56 +0000 (17:30 +0100)]
Bump version.inc for release

14 years agoUpdate ChangeLog
Manuel Nickschas [Wed, 3 Mar 2010 16:05:44 +0000 (17:05 +0100)]
Update ChangeLog

14 years agoRemove hover-event-related asserts that would sometimes trigger
Manuel Nickschas [Wed, 3 Mar 2010 15:00:00 +0000 (16:00 +0100)]
Remove hover-event-related asserts that would sometimes trigger

Need to investigate properly why sometimes we don't get enter/leave in pairs.

14 years agoSelect the first buffer on connect
Manuel Nickschas [Wed, 3 Mar 2010 14:51:34 +0000 (15:51 +0100)]
Select the first buffer on connect

This will show the first valid buffer on connect (usually the status
buffer) instead of the giant Quassel logo. Users are confused if they don't
see login messages on startup.

14 years agoShow all existing BufferViews if we don't have a layout to restore
Manuel Nickschas [Wed, 3 Mar 2010 14:50:05 +0000 (15:50 +0100)]
Show all existing BufferViews if we don't have a layout to restore

Also fixes the problem that All Chats wouldn't be shown by default when
setting up a new mono client.

14 years agoOnly store last used buffer if it is valid
Sebastian Goth [Wed, 3 Mar 2010 13:37:28 +0000 (14:37 +0100)]
Only store last used buffer if it is valid

14 years agoPreselect last used buffer at startup
Sebastian Goth [Wed, 3 Mar 2010 13:15:38 +0000 (14:15 +0100)]
Preselect last used buffer at startup

14 years agol10n: Updates to German (de) translation
brot [Wed, 3 Mar 2010 10:14:58 +0000 (10:14 +0000)]
l10n: Updates to German (de) translation

Transmitted-via: Transifex (www.transifex.net)

14 years agoProperly migrate the internal core account from 0.5 to 0.6
Manuel Nickschas [Wed, 3 Mar 2010 13:02:25 +0000 (14:02 +0100)]
Properly migrate the internal core account from 0.5 to 0.6

14 years agoUpdate quassel.pot
Daniel Albers [Wed, 3 Mar 2010 09:52:03 +0000 (10:52 +0100)]
Update quassel.pot

14 years agoImport Transiflex translations de, fi, sv
Daniel Albers [Tue, 2 Mar 2010 01:22:11 +0000 (01:22 +0000)]
Import Transiflex translations de, fi, sv

Thanks to:
  Daniel Nylander <po@danielnylander.se>
  mikuu <pinaatti@gmail.com>
  neufeind <transifex@stefan-neufeind.de>

14 years agoImport Launchpad/Rosetta translations
Daniel Albers [Wed, 3 Mar 2010 09:35:44 +0000 (10:35 +0100)]
Import Launchpad/Rosetta translations

14 years agoAdd j0hu to AboutDlg, promote al
Manuel Nickschas [Wed, 3 Mar 2010 02:45:58 +0000 (03:45 +0100)]
Add j0hu to AboutDlg, promote al

14 years agodebug--
Manuel Nickschas [Wed, 3 Mar 2010 02:40:48 +0000 (03:40 +0100)]
debug--

14 years agoadded max count to delete confirm dialog
Johannes Huber [Tue, 2 Mar 2010 21:14:41 +0000 (22:14 +0100)]
added max count to delete confirm dialog

14 years agoadded pwd input to join channel dlg
Johannes Huber [Tue, 2 Mar 2010 02:18:00 +0000 (03:18 +0100)]
added pwd input to join channel dlg

14 years agoupdate search results when fetching backlog
Daniel Albers [Mon, 1 Mar 2010 21:28:48 +0000 (22:28 +0100)]
update search results when fetching backlog

Introduces the signal MessageModel::finishedBacklogFetch(BufferId)

14 years agoSome fixups for the per-chat history stuff
Manuel Nickschas [Wed, 3 Mar 2010 02:19:24 +0000 (03:19 +0100)]
Some fixups for the per-chat history stuff

14 years agofixed uninitialized qint32
Dirk Rettschlag [Fri, 26 Feb 2010 15:05:51 +0000 (16:05 +0100)]
fixed uninitialized qint32

14 years agoimplemented per chat history
Dirk Rettschlag [Fri, 26 Feb 2010 12:58:06 +0000 (13:58 +0100)]
implemented per chat history

Closes #168

14 years agoSync Oxygen icons
Manuel Nickschas [Wed, 3 Mar 2010 01:47:07 +0000 (02:47 +0100)]
Sync Oxygen icons

14 years agoMake network connection settings more understandable
Manuel Nickschas [Wed, 3 Mar 2010 01:44:46 +0000 (02:44 +0100)]
Make network connection settings more understandable

Fixes #779.

14 years agoPrettify notifications settingspage
Manuel Nickschas [Wed, 3 Mar 2010 01:34:39 +0000 (02:34 +0100)]
Prettify notifications settingspage

The new look (for !KDE) is very similar to KNotify's configuration widget
(albeit it has (still) way fewer options). Looks better and is more consistent.

14 years agoMake disabling the tray icon animation work again
Manuel Nickschas [Wed, 3 Mar 2010 00:37:48 +0000 (01:37 +0100)]
Make disabling the tray icon animation work again

The setting also moved to the Interface settings page.

14 years agoIntegrate DesktopNotification into system tray/status notifier
Manuel Nickschas [Tue, 2 Mar 2010 23:08:21 +0000 (00:08 +0100)]
Integrate DesktopNotification into system tray/status notifier

Since the DBus notification spec is quite widespread by now, and in fact KDE's
StatusNotifierItem uses that same spec for displaying popup messages, we now
integrate the former DesktopNotification into StatusNotifierItem.

If DBus or a NotificationsClient are not present, we fall back to traditional systray
popups. This could be fugly if we have StatusNotifier, but not NotificationsClient, but
all platforms supporting the former should also support the latter by now.

Having this in SystemTray also makes our notification handling code much nicer, and we have
one less backend to care about. Additionally, users using current versions of KDE or GNOME
will get pretty popups automatically.

14 years agosince seezer was too slow: fixing double click buffer switches in the chatmonitor
Marcus Eggenberger [Mon, 1 Mar 2010 19:54:41 +0000 (20:54 +0100)]
since seezer was too slow: fixing double click buffer switches in the chatmonitor

14 years agoCompile with cmake-2.6.2
Manuel Nickschas [Mon, 1 Mar 2010 14:52:15 +0000 (15:52 +0100)]
Compile with cmake-2.6.2

14 years agoAlways include the Qt translations on Win32 Builds
Hendrik Leppkes [Fri, 26 Feb 2010 17:01:13 +0000 (18:01 +0100)]
Always include the Qt translations on Win32 Builds

Due to Qt not being globally installed on win32
systems, we need to always bundle the translations
with Quassel for all strings to always be properly
translated and all keybindings to work.

14 years agorefactor richtext to mirc code conversion to fix some bugs
Dirk Rettschlag [Wed, 24 Feb 2010 17:47:19 +0000 (18:47 +0100)]
refactor richtext to mirc code conversion to fix some bugs

14 years agoFix building with cmake-2.6.2
Manuel Nickschas [Sat, 27 Feb 2010 17:54:32 +0000 (18:54 +0100)]
Fix building with cmake-2.6.2

Can't do nested conditions in IF() yet, so we need to split them up.

14 years agoUpdate italian translations
Marco Paolone [Thu, 25 Feb 2010 18:10:05 +0000 (19:10 +0100)]
Update italian translations

14 years agoFix building without KDE
Manuel Nickschas [Thu, 25 Feb 2010 17:34:57 +0000 (18:34 +0100)]
Fix building without KDE

14 years agoUpdate cs.po up to 100%
Tomas Chvatal [Thu, 25 Feb 2010 12:29:41 +0000 (13:29 +0100)]
Update cs.po up to 100%

14 years agoAvoid circular #includes to shut up lupdate
Manuel Nickschas [Thu, 25 Feb 2010 12:01:28 +0000 (13:01 +0100)]
Avoid circular #includes to shut up lupdate

Even though those compiled flawlessly, lupdate complains about circular includes, so avoid
them. Requires un-inlining of some methods, unfortunately. On the upside, we now have a clearly
defined order for deleting gui-related objects on quit :)

14 years agoShut up lrelease
Manuel Nickschas [Thu, 25 Feb 2010 11:59:53 +0000 (12:59 +0100)]
Shut up lrelease

14 years agoFix duplicate strings in gettext translations
Daniel Albers [Wed, 24 Feb 2010 23:45:41 +0000 (00:45 +0100)]
Fix duplicate strings in gettext translations

- Duplicate msgids removed from .po files + minor fixes
- Additional lupdate step added to build process because otherwise
  duplicate strings weren't properly picked up when generating .qm files
- quassel.pot updated

14 years agoProperly handle hover events in ChatView
Manuel Nickschas [Wed, 24 Feb 2010 17:58:54 +0000 (18:58 +0100)]
Properly handle hover events in ChatView

Fixes link underlines and hover previews sticking around sometimes.

14 years agoDon't crash if no highlighter is currently active
Manuel Nickschas [Tue, 23 Feb 2010 22:12:24 +0000 (23:12 +0100)]
Don't crash if no highlighter is currently active

14 years agoAdd support for CTCP-TIME
Sebastian Goth [Fri, 19 Feb 2010 17:10:16 +0000 (18:10 +0100)]
Add support for CTCP-TIME

Also changed full hostmask to nicks in ctcp replies to us.

14 years agoSet spellcheck highlighter back to active after message was send (fixes #195)
RĂ¼diger Sonderfeld [Thu, 18 Feb 2010 18:15:26 +0000 (19:15 +0100)]
Set spellcheck highlighter back to active after message was send (fixes #195)

14 years agoAllow Quassel to be build statically with Qt 4.6 and WebKit enabled.
Hendrik Leppkes [Wed, 17 Feb 2010 10:37:37 +0000 (11:37 +0100)]
Allow Quassel to be build statically with Qt 4.6 and WebKit enabled.

14 years agofixed multiline history
Dirk Rettschlag [Thu, 18 Feb 2010 10:13:15 +0000 (11:13 +0100)]
fixed multiline history

14 years agochanged behaviour of color buttons and text selection
Dirk Rettschlag [Wed, 17 Feb 2010 18:48:20 +0000 (19:48 +0100)]
changed behaviour of color buttons and text selection

14 years agoFix saving of dockwidget/bufferview layouts
Manuel Nickschas [Tue, 23 Feb 2010 10:04:19 +0000 (11:04 +0100)]
Fix saving of dockwidget/bufferview layouts

14 years agoAdd a tooltip to the tray icon
Manuel Nickschas [Tue, 23 Feb 2010 00:19:43 +0000 (01:19 +0100)]
Add a tooltip to the tray icon

14 years agoSpecial handling for genversion on win32, as the default calls don't work in all...
Hendrik Leppkes [Wed, 17 Feb 2010 00:51:21 +0000 (01:51 +0100)]
Special handling for genversion on win32, as the default calls don't work in all cases.

The new method calls "cmd.exe /C git" and lets it resolve the path and the extension of the git executable, working in the default windows shell as well as in a mingw bash shell.

14 years agoadded settings option to show/hide the style buttons
Dirk Rettschlag [Wed, 17 Feb 2010 10:19:10 +0000 (11:19 +0100)]
added settings option to show/hide the style buttons

14 years agoBump version.inc for release 0.6-beta1
Manuel Nickschas [Wed, 17 Feb 2010 00:37:06 +0000 (01:37 +0100)]
Bump version.inc for release

14 years agoUpdate ChangeLog
Manuel Nickschas [Wed, 17 Feb 2010 00:03:37 +0000 (01:03 +0100)]
Update ChangeLog

14 years agoLook for the phonon4 library in addition to plain phonon, as the Qt build on windows...
Hendrik Leppkes [Tue, 16 Feb 2010 22:15:13 +0000 (23:15 +0100)]
Look for the phonon4 library in addition to plain phonon, as the Qt build on windows names it like that.

14 years agoProperly clip ChatItem drawing
Manuel Nickschas [Tue, 16 Feb 2010 21:08:45 +0000 (22:08 +0100)]
Properly clip ChatItem drawing

Don't let them spill over their area. Also update the ChatScene properly
after moving the column handles.

14 years agoProperly set coreFeatures in the monolithic client
Manuel Nickschas [Tue, 16 Feb 2010 20:55:48 +0000 (21:55 +0100)]
Properly set coreFeatures in the monolithic client

14 years agoRefactor the system tray's context menu
Manuel Nickschas [Tue, 16 Feb 2010 20:33:28 +0000 (21:33 +0100)]
Refactor the system tray's context menu

Should now work with and without QSystemTrayIcon support in Qt.
There's still some fugly workaround for QMenu's focus issues, which will
probably require some X11 hackery at some point to do it a bit less fugly,
but maybe the DBusMenu is specced earlier...

14 years agoBasic StatusNotifierItem support
Manuel Nickschas [Tue, 16 Feb 2010 15:58:24 +0000 (16:58 +0100)]
Basic StatusNotifierItem support

This implements the new dbus spec that replaces the old systray:
<http://www.notmart.org/misc/statusnotifieritem/>

Until the spec has been ratified by freedesktop.org (which should happen soon), we're
using the org.kde namespace to get it working in newish (>= 4.4) KDE versions at least.
In order to support this even without KDE integration, we've taken a bunch of code
from KDE's implementation (written by Marco Martin), only using the parts that are
relevant for Quassel, and adapting them to our needs.

In case no DBus support is present, or noone listens for the service, we fall back
to the classical tray icon.

Various bits and pieces are still missing, e.g. tooltips, and the context menu
isn't working yet if Qt doesn't support QSystemTrayIcon (but you'll get the dbus
item if there's a service listening even without tray icon support in Qt).

14 years agoDon't crash on Windows (again)
Manuel Nickschas [Tue, 16 Feb 2010 15:54:23 +0000 (16:54 +0100)]
Don't crash on Windows (again)

14 years agoFixed QssParser::parseFontSize regex
Roscoe van Wyk [Tue, 16 Feb 2010 12:40:50 +0000 (14:40 +0200)]
Fixed QssParser::parseFontSize regex

14 years agoLink against the static OpenSSL libs.
Hendrik Leppkes [Tue, 16 Feb 2010 12:43:03 +0000 (13:43 +0100)]
Link against the static OpenSSL libs.

14 years agoLink the eay libraries for WIN32 targets as well.
Hendrik Leppkes [Tue, 16 Feb 2010 12:40:45 +0000 (13:40 +0100)]
Link the eay libraries for WIN32 targets as well.

14 years agofixed sending of pasted lines
Dirk Rettschlag [Tue, 16 Feb 2010 12:43:36 +0000 (13:43 +0100)]
fixed sending of pasted lines

14 years agoAnnual AboutDlg bump
Manuel Nickschas [Tue, 16 Feb 2010 12:30:55 +0000 (13:30 +0100)]
Annual AboutDlg bump

14 years agofixed enabled inline assembler for backtrace on windows
Patrick von Reth [Sat, 6 Feb 2010 12:20:24 +0000 (13:20 +0100)]
fixed enabled inline assembler for backtrace on windows

14 years agoadded definition workaround for mingw gcc 4.0 bug
Patrick von Reth [Wed, 3 Feb 2010 11:12:25 +0000 (12:12 +0100)]
added definition workaround for mingw gcc 4.0 bug

14 years agofixed windows file icon with mingw
Patrick von Reth [Mon, 1 Feb 2010 19:52:19 +0000 (20:52 +0100)]
fixed windows file icon with mingw

14 years agoMore mingw fixes
Patrick von Reth [Mon, 1 Feb 2010 00:01:17 +0000 (01:01 +0100)]
More mingw fixes

mingw and unicode definition fix cleaned up logbacktrace_win.cpp gcc asm currenly missing

14 years agoFix linking for MSVC
Patrick von Reth [Mon, 1 Feb 2010 08:10:53 +0000 (09:10 +0100)]
Fix linking for MSVC

Added some missing library linking to msvc build, removed linking against
libeay32MD because its already in ${OPENSSL_LIBRARIES}

14 years agoSome changes for make install
Patrick von Reth [Mon, 1 Feb 2010 08:20:28 +0000 (09:20 +0100)]
Some changes for make install

Enable installation of notifyrc and .desktop on windows and mac if built with -DWITH_KDE=ON

14 years agoModified jussi01 stylesheet to include full app
Jussi Schultink [Sun, 14 Feb 2010 21:31:20 +0000 (23:31 +0200)]
Modified jussi01 stylesheet to include full app

14 years agoDon't crash on windows
Manuel Nickschas [Tue, 16 Feb 2010 01:26:04 +0000 (02:26 +0100)]
Don't crash on windows

14 years agoRework tray icon activation behavior yet again
Manuel Nickschas [Tue, 16 Feb 2010 01:12:51 +0000 (02:12 +0100)]
Rework tray icon activation behavior yet again

Finally figured out how to filter out double activation signals from QSystemTrayIcon.
Additionally, main window toggling is now controlled by the systray notification backends
rather than the tray itself. This ensures that we don't get a race condition where the
notification wants to activate the window, and the tray wants to hide it.

Consequently removing the crude inhibitActivation hack.

14 years agoMore systray refactoring
Manuel Nickschas [Tue, 16 Feb 2010 00:30:04 +0000 (01:30 +0100)]
More systray refactoring

* Move the window activation stuff into GraphicalUI (because that's where it really belongs)
* Make hiding the tray icon work better (i.e. without a restart)
* Ensure that the main window can't be hidden if we don't have a systray

14 years agoAdjust URL RegEx to allow for domain names ending with a dot.
Hendrik Leppkes [Fri, 12 Feb 2010 15:38:21 +0000 (16:38 +0100)]
Adjust URL RegEx to allow for domain names ending with a dot.