summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-10-22 16:36:13 (UTC)
committer zautrix <zautrix>2004-10-22 16:36:13 (UTC)
commit60be6d741f579b0f368ea9d0d4327abcadb44d07 (patch) (side-by-side diff)
tree924fd9d2a541b66fc18f91e9264b5a3d66c4c969
parent7afbe9769c1c6b3f7657c1cedcdc19a9447508ce (diff)
downloadkdepimpi-60be6d741f579b0f368ea9d0d4327abcadb44d07.zip
kdepimpi-60be6d741f579b0f368ea9d0d4327abcadb44d07.tar.gz
kdepimpi-60be6d741f579b0f368ea9d0d4327abcadb44d07.tar.bz2
updated whats new
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--bin/kdepim/WhatsNew.txt42
-rw-r--r--kabc/vcard/VCardEntity.cpp2
2 files changed, 43 insertions, 1 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt
index 2f88091..b9933ca 100644
--- a/bin/kdepim/WhatsNew.txt
+++ b/bin/kdepim/WhatsNew.txt
@@ -1,50 +1,92 @@
Info about the changes in new versions of KDE-Pim/Pi
+********** VERSION 1.9.9 ************
+
+KDE-Pim/Pi has a new Member!
+It is called PWM/Pi (Passwordmanager/platform-independent)
+and it is available for the Zaurus.
+It is planned, that it will be available later for Windows.
+(And for Linux, of course).
+It is a port of the Passwordmanager of KDE.
+It will need the MicroKDElibs to run.
+
+Made loading of addressbooks in KA/Pi up to 7 times faster!
+The bigger your addressbook file, the more starting speed
+will you gain. (relatively)
+
+The Qtopia addressbook connector is now platform independend
+as well and should work on any platform for importing/exporting
+Qtopia and Opie XML files.
+
+Added a +30min feature to the timezone settings to make
+KDE-Pim/Pi useable in Australia and other parts on the
+world with strange timezones ;-)
+
+German "Umlaute" should now be sorted correctly on the Z in KA/Pi.
+
+It is now possible to disable the
+"receive data via infrared" feature, such that syncing with
+Outlook is now possible again with Kx/Pi runing.
+Please disable it, before syncing Sharp DTM with Outlook.
+For your convenience, the "receive data via infrared" feature
+is disabled automatically, if you sync Kx/Pi with DTM.
+You have to enable it again manually after syncing.
+Enabling this feature makes it impossible to start the
+Sharp DTM apps. If this feature is enabled, you will only get the
+alarm notification from KO/Pi and not from the Sharp calendar.
+This is very useful if you sync KO/Pi with Sharp DTM,
+because after syncing you usually would get notified about
+an alarm by KO/Pi and the Sharp Calendar.
+
+
+Fixed the vcard export bug, wich had the version 1.9.8.
+
+
********** VERSION 1.9.8 ************
Fixed character decoding in OM/Pi.
(e.g. German "Umlaute" were not displayed properly.)
Made is possible to reparent todos in KO/Pi.
Use contextmenu or keys (look at Help-Keys + Colors) for that.
Added the missing Sync-Howto and WhatsNew to the packages.
KO/Pi on Linux desktop can now sync with KDE desktop.
That means: When using KO/Pi on Linux desktop for syncing with
KDE desktop and the Zaurus, the Zaurus can be synced now
with all KDE-Calendar resources, not only with one local file.
(That makes it possible to sync the Zaurus with the
calendar data on a Kolab server)
KA/Pi syncing with KDE desktop will be available in the next version.
********** VERSION 1.9.7 ************
KO/Pi - KA/Pi on Windows:
Now a directory can be defined by the user, where the
application/config data should be saved.
Define your desired path in the evironment variable
MICROKDEHOME
before starting KO/Pi or KA/Pi.
An easy Kx/Pi to Kx/Pi syncing is now possible
(it is called Pi-Sync) via network.
Please look at the Sync Howto.
Exporting of calendar data and contacts to mobile phones is now possible.
The SyncHowto is updated with information howto
access/sync mobile phones.
Please look at the Sync Howto.
Now KO/Pi and KA/Pi on the Zaurus can receive data via infrared directly.
Please disable Fastload for the original contact/calendar applications
and close them.
KO/Pi and KA/Pi must be running in order to receive the data.
(KO/Pi and KA/Pi are always running if Fastload for them is enabled!)
In the KA/Pi details view are now the preferred tel. numbers displayed on top
of the other data ( emails/tel.numbers/addresses)
Fixed some syncing problems in KA/Pi.
diff --git a/kabc/vcard/VCardEntity.cpp b/kabc/vcard/VCardEntity.cpp
index 81debf4..a2ff327 100644
--- a/kabc/vcard/VCardEntity.cpp
+++ b/kabc/vcard/VCardEntity.cpp
@@ -1,73 +1,73 @@
/*
libvcard - vCard parsing library for vCard version 3.0
Copyright (C) 1998 Rik Hemsley rik@kde.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <qregexp.h>
-#include <qdatetime.h>;
+#include <qdatetime.h>
#include <VCardDefines.h>
#include <VCardVCardEntity.h>
using namespace VCARD;
VCardEntity::VCardEntity()
: Entity()
{
cardList_.setAutoDelete( TRUE );
}
VCardEntity::VCardEntity(const VCardEntity & x)
: Entity(x)
{
cardList_.setAutoDelete( TRUE );
}
VCardEntity::VCardEntity(const QCString & s)
: Entity(s)
{
cardList_.setAutoDelete( TRUE );
}
VCardEntity &
VCardEntity::operator = (VCardEntity & x)
{
if (*this == x) return *this;
Entity::operator = (x);
return *this;
}
VCardEntity &
VCardEntity::operator = (const QCString & s)
{
Entity::operator = (s);
return *this;
}
bool
VCardEntity::operator == (VCardEntity & x)
{
x.parse();
return false;
}
VCardEntity::~VCardEntity()