1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
|
2004-03-21 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.10.3
* doc/konserve/index.docbook: Added a page that contains a reference
to the mailing list
* konservedebug.h: Fixed superfluous "" in PRINT + added #ifdef for
GNUC specific features
* backupprofile.cpp: BUGFIX: Creating new backup profiles
of files now work again
2004-03-14 Florian Simnacher <simnacher AT gmx DOT de>
* all .h: Changed the header protection string. They have not the same
form like the strings that are created by the emacs function:
header-protection
* konservedebug.[h|cpp]: Added macros that produce trace output at the
beginning and the end of a method.
* *.cpp: TRACE macros added at the beginning of the files
* dumpable.[h|cpp]: Removed, since they are not really usefull.
2004-02-13 Florian Simnacher <simnacher AT gmx DOT de>
* backupprofile.cpp (getLatestBackup): Added a check if a backup has
already been made. Return an error, if no one is available so far.
2004-02-08 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.10.2
* main.cpp: Version number increased
* wizard.*: renamed method, so that the baseclass QWizard
calls it again on finish.
2004-01-24 Florian Simnacher <simnacher AT gmx DOT de>
* Added debugging output
* Separate class Backup and BackupProfile in two files
* Fixed a bug which stop konserve making backups after the first time
that now backup was necessary.
2004-01-18 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.10.1
* backupprofile.cpp: Fixed the bug reported by Bela-Andreas Bargel.
When backup profiles where created nothing happend, no
backups where made.
2004-01-07 Florian Simnacher <simnacher AT gmx DOT de>
* doc/konserve/index.docbook: Fixed missing package
2004-01-05 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.10
* README: Cleanups, updates.
* konserve/Makefile.am: Library creation is no longer necessary
* konserve/tips: Added new tips reflecting recent changes.
* doc/konserve/index.docbook: Updated section about drag and drop,
network transparency and the check if files are modified.
* konserve/main.cpp: Added author, name uppercase.
* konserve/backupprofile.cpp:
- Check, if the backup finished successfully.
- Refactoring.
- Use the date of the last backup, when checking, if files
have changed
- Make use of i18n arg correct
2004-01-01 Florian Simnacher <simnacher AT gmx DOT de>
* Email change and remove deprecated isMalformed
2003-12-31 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: Following links (at least once) seems to work
* konserve/backupprofile.cpp: Cleanups
2003-12-29 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/systemtraywidget.cpp: Drag and drop now works for remote
files (e.g. urls with some protocols + host...) too.
2003-12-27 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: The destination url now can be a remote
directory too. A name for the backup file will be generated
as it is already done for local backups.
2003-12-26 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: Applied patch from Janne Lhteenmki.
Now the file or directory is checked if some changes were
made. If not the backup is not made. I had to adjust the
patch a bit to make it work with files too.
* konserve/wizard.[h|cpp]: The help button in the wizard now starts
the help viewer.
2003-12-25 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/admin/ : Updated to a more recent version
* konserve/backupprofile.cpp: Corrected const_cast to avoid warning
2003-12-21 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/*.h *.cpp Removed useless begin comment entry
2003-12-14 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.9
* konserve/main.cpp: Added Kjell as code contributor
* doc/konserve/index.docbook: Added Docs about Drag-n-Drop
* konserve/main.cpp: Konserve no longer a KUniqueApplication just
for debugging purposes.
* konserve/backupprofile.cpp: Now making backups of local files and directories
and storing them in local files or directories works.
* konserve.cpp systemtraywidget.cpp systemtraywidget.h wizard.cpp wizard.h:
Added the Drag-N-Drop support patch from Kjell Morgenstern.
2003-12-13 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/*.ui: Adjusted size to make it fit into the
wizard window
* konserve/Makefile.am: libkonserve.a is no longer installed
* *.ui fixed (hopefully) missing include statements
* konserve/*.h *.cpp: Removed all AT in email addresses
2003-10-13 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/*.ui: Fixed missing include statements for the
implementation files
2003-09-30 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.8.2
* doc/konserve/index.docbook: Introduced a Frequently Asked Questions Chapter
2003-09-29 Florian Simnacher <simnacher AT gmx DOT de>
* README: Remark on configure options
* TODO: Removed obsolete entries
2003-09-20 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests/qdatetime_hacked.cpp: Removed include line
Thanks to Sigmund Gudvangen.
* konserve/backupurlwidget.ui: New include line for kurlrequester.h
2003-09-19 Florian Simnacher <simnacher AT gmx DOT de>
* doc/konserve/index.docbook: Added a missing id tag so that
the wizard page is named correctly.
* konserve/configurationdlg.cpp (and others): Changed the default
time interval to 1 day. Thanks to Werner Sturm for reporting
this flaw.
2003-09-17 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.8.1
* konserve/backupprofile.cpp: Introduced checks is the directory or the
file are readable. If a backup archive is overwritten by a
newer one, no confirmation dialog opens. The old archive is
silently overwritten.
2003-02-16 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.8
* konserve/tips: Added some tips
2002-12-26 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: Removed useless Q_ASSERT
* konserve/configurationdlgbase.ui: Played with the layouts. Now the
window is resizeable and the layout is done automatically.
2002-12-07 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: The tempfile in /tmp/* somewhat is removed
after the archive has been copyied to its proper location. No
more filling up the HD with trash tempfiles. The bug was reported
by Daniel Zimbelius, thanks to him.
2002-11-23 Florian Simnacher <simnacher AT gmx DOT de>
* README: Updated and corrected some typos
* konserve/tips: Added but content is still missing
* konserve/configurationdlg.cpp:
Fixed the add|remove|read|Profile-still-exists-bug.
2002-11-03 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/Makefile.am: Put everything in place to install/uninstall
the tips file.
* konserve/main.cpp: Simply added the statement to open
the tips window on startup
* konserve/tips: Here the tips will be entered
2002-10-09 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.h: Added source side network transparency
* konserve/archivecreator.cpp and dirtreewalker.cpp and headers
removed. Well, there the first two files I have hacked in
the very beginning of Konserve, then still called kmybackup,
go for good. Sniff :-(. I will shed a tear when the final
cvs remove ... && cvs commit comes. But they have indeed proofed
to be crappy handcrafted code. KDElibs provide much better things.
Unfortunately I had to invent the weel again, just to find out that
it is not round and others already have done better. But now enough
with being off topic.
* konserve/Makefile.am: Files removed
2002-10-03 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/Makefile.am: Ajusted to new automake/autoconf-settings
* Makefile.am: Ajusted to new automake/autoconf-settings
2002-09-27 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/systemtraywidget.cpp: std:: inserted
2002-09-26 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.7.1
* konserve/archivecreator.cpp and friends: fixing bogus cerr text output.
2002-09-24 Florian Simnacher <simnacher AT gmx DOT de>
* THIS IS VERSION 0.7
* konserve/finalwidget.ui: Typo fix.
2002-09-23 Florian Simnacher <simnacher AT gmx DOT de>
* NEWS: Updated for version 0.7
2002-09-22 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/identifierwidget.ui and others: Typo fixes.
* konserve/backupprofile.cpp: One-Time-Backup bugfix. Now One-Time-Backup making
does not interfere with the periodical creation.
2002-09-21 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/Makefile.am: Added Subdirs.
* This is the release candidate 1 (Konserve v0.7)
* configure.in.in and others: Some beautifying.
2002-09-20 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: fixed QString::null bug in extractArchiveEntry
* konserve/Makefile.am: Version update
* DESIGN.fig: Subject-to-change note.
* konserve/profilemanager.cpp: The evil save-all-on-exit hack.
This is necessary in order to save the LastBackup time.
* doc/konserve/index.docbook: Documentation update + extension
2002-09-17 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/archivecreator.cpp and lots of others: Updated standard headers.
2002-09-16 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/archivecreator.cpp and others: Revision dumping stuff removed.
* konserve/wizard.cpp: Widget beautifying. State of activCheckBox is used.
* konserve/profilemanager.cpp: No more asking when changes are applied.
* konserve/main.cpp: Description changed (thanks Benno).
* konserve/configurationdlgbase.ui: Keyshort cuts changed.
2002-09-12 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.cpp: Some error messages.
* konserve/backupprofile.cpp: Bugfix. isActivated is now read correctly
from the config file.
2002-09-08 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: If Restore is called, at first it is checked
if the url to be restored still exists and if so the action is aborted
and the user is informed. Otherwise a Restore is performed.
* konserve/configurationdlg.cpp: Beautifying
2002-09-04 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/profilemanager.cpp: Regular backup creation works now.
* konserve/wizard.cpp: Backup Profile activ added.
* konserve/configurationdlg.cpp: Data input widgets are reseted, when
no backup profile is selected.
2002-09-02 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.h (and others): Saving and rereading of the isActivated
flag now works.
2002-09-01 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.cpp: Bugfix. No crash, when changing the value
input widgets without a selected backup profile and then selecting
an input widget.
Now the apply button is enabled only if a backup profile identifier
is selected.
The Cancel Button no works as expected. When some data is changed, and
Close and then Cancel is pressed, we are back to the Preferences window.
This works now as often as you want.
* konserve/archivecreator.cpp and others: Header changes (once again, I had to
kill some time ;-).
* konserve/configurationdlg.cpp: Save of unsaved changes now works on Close->Yes.
Additionally, some debugging information is removed.
MyBackupProfileInfo: dumpInternal() output fix.
Beautifying.
2002-08-31 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.cpp: Bugfixes
* konserve/backupprofile.cpp: Readonly checking
* konserve/configurationdlg.[cpp|h]: Keeping trace off non saved changes
made be the user.
* konserve/configurationdlgbase.ui: connection removed
* konserve/profilemngrinterface.h: Silly comments ;-)
2002-08-23 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.cpp: Fixed GUI updating with not yet
saved but added backup profile identifier
* konserve/configurationdlg.cpp: Fixed missing data update on
backup profile removal.
2002-08-12 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: Restoring added
* konserve/identifierwidget.ui: Typo fix
* konserve/tests/backupprofiletest.cpp: restore tests added
* konserve/tests/testenv.cpp: restore test env added
2002-08-01 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/main.cpp: Copyright string fixed
* konserve/configurationdlgbase.ui: Tooltips
* README: Cosmetics.
* konserve/Makefile.am: kdDebug removed
2002-07-25 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlgbase.ui: Changed Close/Apply order
* konserve/konserve.cpp: Added KAboutBox.
2002-07-20 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.cpp: Button en-/disableing
* konserve/profilemanager.cpp et al.: Restoring from the GUI now seems to work.
2002-07-18 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests/profilemngrifacetest.cpp: Fucking test seems to work again
Now the Restore check is worked in.
2002-07-16 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlgbase.ui: Inserted Restore and About Button.
Also added a radio button for activ Profiles
* konserve/backupprofile.h: Finish the restore backend code
2002-07-12 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests/configuratortest.cpp: Compilable but broken
* konserve/tests/Makefile.am: testenv added
2002-07-08 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/profilemngrinterface.cpp: exists method set introduced. Thus, bug in
SystemTrayWidget is fixed.
* konserve/profilemanager.cpp: Refactoring
* konserve/configurationdlg.cpp: Adding and display in of new backupprofile works now.
Fixed the crash bug on selecting a null item in the listbox.
* konserve/backupprofile.cpp: Added new...ReadOnly method
* konserve/profilemngrinterface.h: No call of inserted, when inserted by myself
* DESIGN.fig: Updated to the new design
* konserve/profilemngrinterface.cpp: change method set readded
* konserve/configurationdlgbase.ui: Typo fixed
* konserve/profilemngrinterface.cpp: change method set removed (unneeded)
2002-07-07 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/wizard.cpp: Reset on Cancel and Finish implemented
* konserve/helper.h: revision added
* konserve/timeinterval.h (and others): Redone revision output
2002-07-04 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/konserve.cpp: Create ConfigurationDlg <-> ProfileManager connection
* konserve/configurationdlg.cpp: Moved lots of stuff from configurationdlgbase
to this class. So now it ist the subclassing approach.
* konserve/backupprofile.cpp: Beautifying.
* konserve/profilemanager.cpp: Some code beautifying
2002-06-29 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.h: Implemented caching of observed data.
* konserve/backupprofile.cpp: Readed read only copy of backupprofile
* konserve/backupprofile.h: CTOR public because of annouying warnings.
2002-06-28 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurator.cpp: Refactoring: Moving Method from BackupProfileBuilder
to BackupProfile and thus removing BackupProfileBuilder.
2002-06-27 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurator.h: Method removed.
* konserve/wizard.cpp: Dito.
* konserve/configurator.cpp: Dito
* konserve/wizard.cpp: Beautifying.
* konserve/systemtraywidget.cpp: Beautifying.
2002-06-26 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/profilemanager.cpp: Configurator handling code removed. Made ProfileManager
fullfill the Subject interface. Some refactoring: Unneeded method removed.
* konserve/konserve.h: Wizard and Configurator inserted.
* konserve/configurator.cpp: Make Configurator use the ProfileMngrInterface + slight
refactoring: variable and method renaming.
* konserve/configurationdlg.cpp: slotRemoveProfile moved from base class to this one.
* konserve/tests/profilemngrifacetest.cpp: Tests the slightly modfied interface.
* konserve/systemtraywidget.h: Reworked to fullfill the ProfileMngrInterface.
2002-06-24 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/konserve.h and others: Wizard build into program. The wizard works.
Started to make ConfigurationDlg to use the new ProfileMngrInterface.
It works, but the old one is still there.
2002-06-23 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: Check wether last backup time is valid or not
2002-06-22 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests/profilemngrifacetest.cpp: Test is now self-checking
* konserve/configurationdlg.cpp: kdDebug removed
2002-06-21 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests/profilemngrifacetest.cpp: No more signals/slots stuff in it
* konserve/tests/Makefile.am: tmp changes
* konserve/profilemngrinterface.cpp: Seems to work now
* konserve/Makefile.am: profilemngrinterface metafile removed
2002-06-19 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/profilemanager.cpp: (Bad state) Debugging messages + slots marked
* konserve/configurationdlgbase.ui: slotSaveProfile moved to derived class
* konserve/configurationdlg.h: Now more virtual inheritants
* konserve/configurationdlg.cpp: Is in a bad state, needs work
2002-06-18 Florian Simnacher <simnacher AT gmx DOT de>
* konserve builds again
* konserve/.cvsignore: Shut ups.
* konserve/tests/profilemngrifacetest.cpp: Added test for ProfileMngrInterface
* konserve/configurationdlg.cpp: Now subclassing approach is used for ConfigurationDlg
2002-06-17 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/profilemngrinterface.h: ProfileMngrInterface builds
* konserve/configurationdlg.ui.h: Use BackupProfileBuilder
* konserve/tests/profilemanagertest.cpp:
removeProfile is now self-checking
insertProfile check added
2002-06-16 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/archivecreator.cpp (Message): kdDebug statements removed
* konserve/tests/profilemanagertest.cpp (Repository): Compilable & working
2002-06-15 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/konserve.cpp: Now better readable.
2002-06-13 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/wizard.cpp: Is now prepared to create BackupProfiles
* konserve/wizard.h: Four pages added to the wizard + last page shows the
settings, the user has choosen.
* konserve/wizard1.png: And others,..., graphics added for the wizard pages
2002-06-10 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/wizard.h (Message): Wizard with first page added.
2002-06-09 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/Makefile.am: tests dir now seems to work
2002-06-08 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/tests (Message): Integrated Tests in a own directory with a new Makefile.am
2002-06-06 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/backupprofile.cpp: When a backup is made of a hidden file or dir
(for example $HOME/.kde) and a default name is generated, than the backup
name will be prefixed with a literal "dot". Thus the archive file is not
hidden.
* konserve/backupprofile.cpp: Network transparency for backups added
* konserve/archivecreator.h: Baseclass ArchiveCreatorBase and derivates introduced.
* konserve/backupprofile.h: Separation of BackupProfile/BackupProfileImpl introduced.
* konserve/*.cpp: kdDebug readded.
2002-06-05 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/configurationdlg.ui.h: Now set fixed to the correct side
* konserve/configurationdlg.ui: BackupProfile list and input widgets swapped
2002-06-01 Florian Simnacher <simnacher AT gmx DOT de>
* Version 0.6: public release
* doc/konserve/index.docbook: Dotfile note
2002-05-31 Florian Simnacher <simnacher AT gmx DOT de>
* Tagged Konserve v0.6
* doc/konserve/index.docbook: typo fixes and beautifying
2002-05-30 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/dirtreewalker.cpp: No hidden files are packed into the archive too
* konserve/archivecreator.cpp: mimetype HACK
2002-05-28 Florian Simnacher <simnacher AT gmx DOT de>
* TODO: Markus new ideas added
* Pre2 Version added for Markus
2002-05-26 Florian Simnacher <simnacher AT gmx DOT de>
* *.cpp *.h: Code beautifying
* index.docbook: Documentation beautifying
* .cvsignore: more shut ups in
2002-05-25 Florian Simnacher <simnacher AT gmx DOT de>
* index.docbook: typo fixes
* configure.in.in: Version 0.6pre1
* am_edit: 'make distcheck' hack again
* README/THANKS updates
2002-05-18 Florian Simnacher <simnacher AT gmx DOT de>
* configurationdlg.ui[.h]: The preferences window is not maximizable.
* configurationdlg.ui: ToolTips added
* NEWS added
* configurationdlg.ui.h: After a 'Close' in preferences all input widgets are reset
* configurationdlg.ui.h: bugfix: After 'Add' Profile 'Save' & 'Backup' are enabled
* configurationdlg.ui[.h]: Set Save button inactive when no profile is selected
* Administrativa and debug cleanups
* cleanups
2002-05-17 Florian Simnacher <simnacher AT gmx DOT de>
* configurator.cpp/backupprofile.cpp: BackupProfiles are activated according to
the config file on program start
* Prepared for Session Management
* Introduced 'Dump Internals' to the pop-up menu
* Administrativa
2002-05-15 Florian Simnacher <simnacher AT gmx DOT de>
* DESIGN.fig added
2002-05-13 Florian Simnacher <simnacher AT gmx DOT de>
* doc/konserve/index.docbook: V1.1 -> V1.0
(reported by neffl AT eikon.tum DOT de)
2002-05-12 Florian Simnacher <simnacher AT gmx DOT de>
* Quit->Close
* main.cpp: Made konserve a KUniqueApplication
2002-05-11 Florian Simnacher <simnacher AT gmx DOT de>
* If no backup profile is selected: clear widgets
* make distcheck is now supported (am_edit hack)
* Fixed reported typos.
* Makefile.am: Version is written to README and konserve.lsm automatically
* Caption of Preferences changed
2002-05-09 Florian Simnacher <simnacher AT gmx DOT de>
* Version 0.5: first public release
* systemtraywidget.cpp (paintEvent): fixed compiler warnings
* Documentation is now readable via 'Help'
* configurationdlg.ui: Adjusted KURLRequester size
* README: remark about BUGS added
* Documentation is now in docbook format
* doc/Makefile.am edited
2002-05-08 Florian Simnacher <simnacher AT gmx DOT de>
* Documentation written in txt format
* Lots of new entries to THANKS|TODO
* Typo fixes in website and README
2002-05-07 Florian Simnacher <simnacher AT gmx DOT de>
* The website is now up and prepared.
2002-05-06 Florian Simnacher <simnacher AT gmx DOT de>
* konserve: Icons from Bike added
2002-05-05 Florian Simnacher <simnacher AT gmx DOT de>
* Makefile.am: modified dist-hook so that konserve-*.tar.bz2 files are created
* README and THANKS added and filled
* Changed file header
* Pictures edited
* High Color icons added
* systemtraywidget.cpp (SystemTrayWidget): Added loading my own icon
* Makefile.dist -> Makefile.cvs
2002-05-04 Florian Simnacher <simnacher AT gmx DOT de>
* konserve/systemtraywidget.cpp: Load icons for standard menu entries
2002-05-02 Florian Simnacher <simnacher AT gmx DOT de>
* Removed unnecessary files
* profilemanager.cpp (getProfile): fixed constness bug (Version 0.4.2)
* Version 0.4.1
* bugfix: Timer problem in backupprofile
* Changed version in main.cpp
2002-05-01 Florian Simnacher <simnacher AT gmx DOT de>
* Version 0.4
* Added single profile backups from popup menu
* bugfix: Values are showen when a profile is selected
* Added Do Backup menu entry
* Version 0.3
* Adding and removing of profiles works.
Profiles are shown in the popup menu
* systemtraywidget.cpp Menu->Help now open the help reader
* konserve.cpp: Menu->Quit now exists the application
* Added ConfigurationDlg and Konserve
* Removed kmybackup.ui.h kmybackup.ui
* Integrate ProfileManager, ConfigurationDlg and SystemTrayWidget in Konserve
* main.cpp (main): Changed to start konserve in SystemTray
2002-04-30 Florian Simnacher <simnacher AT gmx DOT de>
* systemtraywidget.[h,cpp]: Added
2002-04-28 Florian Simnacher <simnacher AT gmx DOT de>
* KPanelApplet removed
2002-04-27 Florian Simnacher <simnacher AT gmx DOT de>
* kmybackup now is an applet
2002-04-25 Florian Simnacher <simnacher AT gmx DOT de>
* testing/dirtreewalkermain.cpp (main): QString::null bug fixed
* dirtreewalker.h (class DirTreeWalker): Is now a Dumpable
* Version 0.2
2002-04-24 Florian Simnacher <simnacher AT gmx DOT de>
* dirtreewalker.cpp (createFilesList): fixed missing slash bug
2002-04-23 Florian Simnacher <simnacher AT gmx DOT de>
* kmybackup.ui.h (slotRemoveProfile): Removing Profiles added
* dirtreewalker.cpp (recursiveFilesList): bugfix mbFirstTime
* configurator.cpp (Configurator): Config file consistency checks
2002-04-21 Florian Simnacher <simnacher AT gmx DOT de>
* Configurator: Read/Save "General" settings
* kmybackup.ui.h: QListBox now in extended selection mode#
* userName, userGroup, homeDir added/modified
* ArchiveCreator now uses Helper
2002-04-19 Florian Simnacher <simnacher AT gmx DOT de>
* Added kdDebug.sh script to enable/disable kdDebug statments
* Selected profiles now show their settings in the UI
* bugfix: Selection bug in QListBox fixed
2002-04-17 Florian Simnacher <simnacher AT gmx DOT de>
* Configurator: Access memeber added
* gui: Now the app config-file is loaded.
* ProfileManager: Saving/Reading Configuration implemented.
* ProfileManager: Methods for working with the gui implemented
* Configurator: Added
* Configurator: Member implemented (add is still lacking) and tested
* TimeInteral: More access member for config file saving
2002-04-14 Florian Simnacher <simnacher AT gmx DOT de>
* kmybackup (Repository): Added class TimeInterval
* ProfileManager: Readded
* Doing recuring backups parallel now works
2002-04-13 Florian Simnacher <simnacher AT gmx DOT de>
* ArchiveCreator: Now dumpable too.
* BackupProfile: TimeInterval introduced
* BackupProfile: Regular calling of doBackup() works
* Dumpable: Debugging output added/removed
2002-04-12 Florian Simnacher <simnacher AT gmx DOT de>
* kmybackup (kmybackup.ui/.ui.h) keditlistbox added
* kmybackup (kmybackup.ui/.ui.h) ProfileManger added
* Creating new profiles is now possible
2002-04-11 Florian Simnacher <simnacher AT gmx DOT de>
* fucking class Dumpable seems to work :-)
2002-04-11 Florian Simnacher <simnacher AT gmx DOT de>
* Dumpable added.
* BackupProfile is now dumpable
2002-04-09 Florian Simnacher <simnacher AT gmx DOT de>
* BackupProfile tested: doing recuring backups works
* created local testing dir for all testmain.cpp files
2002-04-08 Florian Simnacher <simnacher AT gmx DOT de>
* Default archive filename, if only a directory is given
for the target url
2002-04-07 Florian Simnacher <simnacher AT gmx DOT de>
* DirTreeWalker added
* ArchiveCreator added (needs more work)
* Creating a single file backup archive works
2002-03-30 Florian Simnacher <simnacher AT gmx DOT de>
* kmybackup stub application hacked
|