krename-users Mailing List for KRename (Page 10)
Brought to you by:
domseichter,
stonki
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(5) |
Feb
|
Mar
(13) |
Apr
(9) |
May
(5) |
Jun
(16) |
Jul
(10) |
Aug
(1) |
Sep
(1) |
Oct
(12) |
Nov
(20) |
Dec
(6) |
2003 |
Jan
(2) |
Feb
(27) |
Mar
(17) |
Apr
(26) |
May
(27) |
Jun
(37) |
Jul
(18) |
Aug
(14) |
Sep
(3) |
Oct
(10) |
Nov
(15) |
Dec
(5) |
2004 |
Jan
(21) |
Feb
(12) |
Mar
(14) |
Apr
(12) |
May
(15) |
Jun
(4) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2005 |
Jan
(9) |
Feb
(9) |
Mar
(5) |
Apr
(3) |
May
(2) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(5) |
Nov
(4) |
Dec
|
2006 |
Jan
(1) |
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
(1) |
Jul
(3) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(8) |
Mar
|
Apr
(2) |
May
(2) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(10) |
Nov
|
Dec
(4) |
2009 |
Jan
|
Feb
(2) |
Mar
(6) |
Apr
(3) |
May
(17) |
Jun
(6) |
Jul
(1) |
Aug
|
Sep
(7) |
Oct
(6) |
Nov
(4) |
Dec
(5) |
2010 |
Jan
|
Feb
|
Mar
(8) |
Apr
(1) |
May
(8) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(7) |
Oct
(2) |
Nov
|
Dec
|
2011 |
Jan
(3) |
Feb
(6) |
Mar
(1) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(6) |
Nov
(1) |
Dec
|
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
(2) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2017 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Dominik S. <dom...@we...> - 2005-01-12 21:53:05
|
Allready fix in CVS as discussed in private mail with J=F6rg. CU Dom Am Wednesday, 12. January 2005 00:31 schrieb joe...@ep...: > Hi, > > I found a bug in DatePlugin.cpp which suppress capitals in date/time form= at > strings. > (krename-3.0.3rc2) > > QString DatePlugin::processFile(BatchRenamer* b, int i, QString token, int > ) > { > if( !supports( token ) ) > return QString::null; > > ----> token =3D token.lower(); > if( token.startsWith( getPattern() ) ) > token =3D token.mid( getPattern().length(), token.length() - > getPattern().length() ); > > > QDate d =3D QDate::currentDate(); > QTime t =3D QTime::currentTime(); > QString tmp, text; > QString format =3D "dd-MM-yyyy"; > if( token.contains( ";" ) ) > { > format =3D token.section( ';', 1, 1 ); > token =3D token.section( ';', 0, 0 ); > } > > ----> it should be placed here > > Regards > > J=F6rg > > > > > ________________________________________ > http://www.epost.de - das Kommunikationsportal der Deutschen Post > > > > > ------------------------------------------------------- > The SF.Net email is sponsored by: Beat the post-holiday blues > Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. > It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt > _______________________________________________ > Krename-users mailing list > Kre...@li... > https://lists.sourceforge.net/lists/listinfo/krename-users =2D-=20 ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: <joe...@ep...> - 2005-01-11 23:31:45
|
Hi, I found a bug in DatePlugin.cpp which suppress capitals in date/time form= at strings. (krename-3.0.3rc2) QString DatePlugin::processFile(BatchRenamer* b, int i, QString token, in= t ) { if( !supports( token ) ) return QString::null; ----> token =3D token.lower(); if( token.startsWith( getPattern() ) ) token =3D token.mid( getPattern().length(), token.length() - getP= attern().length() ); QDate d =3D QDate::currentDate(); QTime t =3D QTime::currentTime(); QString tmp, text; QString format =3D "dd-MM-yyyy"; if( token.contains( ";" ) ) { format =3D token.section( ';', 1, 1 ); token =3D token.section( ';', 0, 0 ); } ----> it should be placed here Regards J=F6rg ________________________________________ http://www.epost.de - das Kommunikationsportal der Deutschen Post |
From: Dominik S. <dom...@we...> - 2005-01-09 13:48:02
|
Hi all, The KRename handbook was updated for the upcoming 3.0.3 release and is ready for download in our documentation section. The KRename gives a short introduction into KRename. Most features are described and a few examples make using KRename easier. Comments as well as addtions to the handbook are of course welcome. Get it from the webpage: http://www.krename.net CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2005-01-07 14:26:20
|
Hi all, The second and last release candidate is ready for download now. Please test this release as much as you can and give us your feedback. This release contains updated translations for many languages. KRename is now more responsive when renaming large amounts of files. The instant undo function works now more reliable and date formating is now easier as you can specify the date format after a semi colon for certain tokens: [date;yyyy-MM-dd]. Sorting files is now possible by using a number in the filename. http://www.krename,net , Your source for renaming :-) CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: jedd <je...@pr...> - 2004-11-16 15:46:02
|
I'm not subscribed to the list - so please CC me. This sounds like a FAQ .. so long as A means asked, not answered. The last reference in the forum was from some dude promising to deliver a sid deb package in October. Last year. Hmmm. apt-get.org doesn't show any hits. Anyone got a secret URL they're willing to share? (And yes, I tried compiling from source, but it wasn't quite the spectacular success that I'd hoped for.) Cheers, Jedd. -- jedd == jedd at progsoc dot org "The unemployment queue is no longer just for philosophy majors - useful people are now being affected too." -- Kent Brockman, The Simpsons. |
From: Dominik S. <dom...@we...> - 2004-08-08 08:58:00
|
Hi, KRename 3.0.2 was released today. This version adds a Bosnian translation and most other translations were updated. Additionally this version fixes a grave bug which was introduced in KRename 3.0.1, which could case random numbering under certain circumstances. Upgrading is strongly recommended. Downloads are available in source and binary packages. Please report as usuall all problem with this version. http://www.krename.net CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2004-07-18 12:35:40
|
Hi all, KRename 3.0.1 is out! This releases fixes a memory leak, introduces a Russian and Polish translation, adds find and replace as well as renaming the file extension to the beginners mode and it is now possible again to create symbolic links from KRename. Additionally KRename has now support for more than one custom counter in a filename. ##{1;4} adds a new counter to the filename with one leading zero, a start value of 1 and stepping value of 4. If someone can create binary packages for this release I am happy to upload them to KRename.net. Unfortunately this will most likely happen on the next weekend as I do not have an internet connection during weekdays. http://www.krename.net CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2004-07-11 09:09:51
|
Hi all, KRename is finally available through CVS on Sourceforge. See http://sourceforge.net/cvs/?group_id=42805 for details on how to get the source. If you are interested in the latest improvements of KRename, this is your chance to get them immediately before any release! And creating patches for KRename to fix bugs and add new features is easier, too now ;-). CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2004-07-04 14:31:09
|
Hi Andreas, What's wrong with the current preview KRename has? From your description I do not see a difference to what Krename already has. Maybe you missed the preview on the bottom of the KRename window (maybe the second column has moved out of the visible screen space) CU Dom Am Freitag, 2. Juli 2004 20:49 schrieb Andreas Scherf: > Hello, > what about a preview window for previewing the complete dir with all files > and the renamed ones ... (while working recursive : all files). Maybee with > a two columned table (left column original -> right one after renaming) > > Greetings: > Andreas -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Art B. <abu...@uw...> - 2004-07-02 23:04:45
|
Is there anyway to format the number returned by the [mp3Tracknumber] from the MP3 library? Because it ends up returning number like '1' which is alright until you have more than 9 mp3s, because then we you sort the list '10' comes before '2'. Perhaps (if it hasn't been implemented already) values could be passed to the function like [function(argument)] and for [mp3Tracknumber()] that argument could be the number of digits to pad to? I am not on the mailing list. -- |
From: Art B. <abu...@uw...> - 2004-07-02 22:23:10
|
Sorry, I reread the PDF and found the answer. I don't don't know how I missed it the first time. -- |
From: Andreas S. <sc...@we...> - 2004-07-02 18:21:06
|
Hello, what about a preview window for previewing the complete dir with all files and the renamed ones ... (while working recursive : all files). Maybee with a two columned table (left column original -> right one after renaming) Greetings: Andreas -- Andreas Scherf ICQ: 52910964 sc...@we... |
From: Dominik S. <dom...@we...> - 2004-06-29 23:13:30
|
Hi, You can finally download KRename 3.0.0 from www.krename.net ! :-) I appended the complete ChangeLog! Thanks to everyone who helped to get this release out and make it as good as it is! CU Dom Changes from KRename 2.8.x to KRename 3.0.0 =========================================== KIO-Slave Support: KRename supports now the KIO-Slave technology of KDE. As a reason it is no problem for KRename to rename files on a remote server with fish://, to rename files on your ftp server or to rename your samba shares using the smb:// io-slave. DCOP Scripting: This is the first version of KRename which can be fully controlled from the commandline. Additional to the the commandline options, there is now a powerful DCOP interface. Using DCOP you can create scripts for many tasks which do use KRename. You can even use KRename's parser allone, without the other parts of KRename. Usabillity: Thanks to the kde-usabillity mailinglist, we made lot's of useabillity improvements, resulting in the easiest to use KRename ever. The most notably change is the new beginners/wizard mode, which is much easier to use compared to the more complex, but more powerful, tabbed mode. User visible strings where changed in favour if easier to understand ones, button orders where changed to the KDE default, dialog layouts where optimized and much more... A few examples: -Every renaming action can be undone, because of the new auto-undo feature, which works even for remote files. -A powerful beginners mode, which allows you to construct new filenames without having to know KRenames syntax. -Plugins got easier, too. Most of them do not have to be enabled before you can use them. All KFilePlugins are instantly available to use. -The annyoing "Do you really want to quit KRename?" message box was removed. -KRename will ask now to create not existing directories instead of complaining. -We fixed the enabled/disabled state of many buttons -There is now only one button to add files, directories and directory names -The file extension configuration got much easier, as it can be done from the main dialog. -The preferences dialog got cleaned up. KRename Commands: A few new tokens where also introduced to access different properties of a file, i.e. [user], [group], [modificationdate], [creationdate] and [accessdate]. Another new token is the [length] token, returning the length of the current filename. This token is very powerful as you can also substract numbers from this value (e.g.: [length-2]) and use the result to construct a new sub string [2-[length-2]]. The sub string token got more powerful, too. It can not only create sub strings of the input filename, but also of all other strings (e.g. the title of an mp3 file): [2-8{[mp3title]}]. All tokens returning numbers can format those numbers now. An example is the [mp3tracknumber] command which returns "7" in our case, but we need "07" to get a good looking filename. Easy with the new KRename feature, just use [##mp3tracknumber] as token and you'll get "07" returned. Speed - KRename is faster: We were able to improve the speed of KRename in many smaller cases. For example the loading of file preview is much faster now compared to previous versions. Sorting of files uses a fater algorithm now. And a few other small things where improved. In future versions we also want to address the long loading times of KRename. The startup time can be greatly reduced if you disable the loading of KDE's File Plugins (which takes about 80% of KRename's startup time). Bugs: Yes - even KRename contained some bugs ;-). And we fixed them. If you had problems with one of them in previous releases, you might want to give KRename a try again: -Regular expressions are finally working correctly -Fixed the [date] token -Fixed creation of directories, containing characters like '&' or '%', during renaming -Fixed the main window size, scrollbars are now always visible And that's not all of course! KRename got many detail fixes and smaller improvements - far to many to mention them all in this ChangeLog. -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2004-06-17 17:07:11
|
Hi, I am always interested in rpms. Just send it over (via private mail). The preview problem you experienced should be fixed in rc3. Adding was perhaps so slow, because KRename generated all thumnails during adding which might take some time. CU Dom Am Samstag, 12. Juni 2004 13:16 schrieb mark volkert: > Hi, > > I just tried the latest rc and it looks good. Last weekend I took a lot of > pictures on a party. Nearly 100 jpg's with 11 MB. > > I added all files with the entry in my service menu. The adding process > was very slow. When I pressed "preview" the window gets white and the app > was busy for time. After it came back I disabled and enabled the preview > again. Now the thumbs were present. > > Are you interested on an rpm for SuSE 9.0 with KDE 3.2.3? > > Cheers > > Mark -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: Dominik S. <dom...@we...> - 2004-06-14 12:44:39
|
Hi, Another release candidate is available for download. We fixed a bug with templates that create multiple directories in this release and made some great useabillity improvements thanks to a a usabillity study by Jan Muehlig from Relevantive. Please test this release and give us your feedback to make KRename even better. Why did I not ask for binary packages? Well, I am short on time (as usual) and wanted KRename to get out. But if you can provide binaries I will surely upload them as soon as I get them. CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: mark v. <mar...@ra...> - 2004-06-12 11:16:34
|
=2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I just tried the latest rc and it looks good. Last weekend I took a lot of= =20 pictures on a party. Nearly 100 jpg's with 11 MB. I added all files with the entry in my service menu. The adding process wa= s=20 very slow. When I pressed "preview" the window gets white and the app was=20 busy for time. After it came back I disabled and enabled the preview again.= =20 Now the thumbs were present. Are you interested on an rpm for SuSE 9.0 with KDE 3.2.3? Cheers Mark =2D --=20 Ein Betriebssystem sie zu knechten, sie alle zu finden, Ins Dunkle zu treiben und ewig zu binden, Im Lande Microsoft, wo die blauen Schirme drohen. (Bill Gates - Herr der Rechner) =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQFAyuYMexMp+p7KgQ8RAiAeAJ945p2Ajhg7Je8Ef2fqSIpqFGWNewCeO0ja UOnzmJyK8c/kmhoc6VRNwvE=3D =3DjmYP =2D----END PGP SIGNATURE----- |
From: Stefan O. <Su...@st...> - 2004-05-29 06:25:52
|
Dom, I think some good comments.... =2D--------- Weitergeleitete Nachricht ---------- Subject: Re: Krename 3.0.0 RC2 Date: Freitag, 28. Mai 2004 00:43 =46rom: Mikolaj Machowski <mi...@wp...> To: kde...@kd... Dnia czwartek, 27 maja 2004 07:31, Stefan Onken napisa=B3: > Hi, > > We released today KRename 3.0.0rc2. You may find here: > http://www.krename.net > > From the release notes: > " > Thanks to the kde-useabillity list we were able to improve the > useabillity of this version ernormous. The new designed beginners > mode is much easier to use now, an automatic instant undo feature > makes your life easier and many more smaller useability > improvements went into this release. A few bugs were fixed, too. > " > > Thanks... Thanks too :) At least for me this is really smooth now. Alas, still some rough edges: a) When right clicking in directory (without selected files) KRename adds all images recursively. It is rather uncommon thing. As special feature why not, but default behaviour? b) Button Sort in first tab. Thanks for description of state but two issues: - [Sort (Ascending)] Are () needed? They make button looks heavy. [Sort: Ascending] looks better. krename/kmylistbox.cpp: 658 - from: string =3D " (" + string + ")"; to: string =3D ": " + string; - When changing sort type size of button is changing, and with it whole window layout. Awwwww. c) Last tab, wizard mode: =2D top part (Filename:, Number:) is misaligned comparing to lower part - strange, short line just below menubar. =2D In legends Filename:, Number:, : is redundant. =2D But : could be added after 'Number of digits' label in 'Number' d) Don't understand now how to add directory :( e) In KFileDialog, Add Hidden Directories checkbox should be indented to show dependency on 'Add subdirectories recursively' f) Undo is great! But it doesn't remove created directories. They should be removed or short message should be given: 'It is possible new directory was created during previous operation. You should remove it manually'. Perfection is hard! :) m. =2D- LaTeX + Vim =3D http://vim-latex.sourceforge.net/ Learn Touch Typing with Vim: http://www.vim.org Script #461 vim.pl - http://skawina.eu.org/mikolaj VimGDB - http://skawina.eu.org/mikolaj/vimgdb _______________________________________________ kde-usability mailing list kde...@kd... https://mail.kde.org/mailman/listinfo/kde-usability =2D------------------------------------------------------ =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |
From: Dominik S. <dom...@we...> - 2004-05-26 21:14:59
|
Hi, We released today KRename 3.0.0rc2 for download. Thanks to the kde-useabillity list we were able to improve the useabillity of this version ernormous. The new designed beginners mode is much easier to use now, an automatic instant undo feature makes your life easier and many more smaller useabillity improvements went into this release. A few bugs were fixed, too. So this release should be worth a download! Please get this version and give it a try. Report also all problem you encounter to our mailing list. CU Dom -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing KDE Mass Mailer - http://www.kmassmailer.net - Mass mailing for KDE SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE ********************************************************************** |
From: support <su...@st...> - 2004-05-13 09:12:25
|
Pro-Software writes: > Wir erklären hiermit, dass die E-mail Adresse auf die wir diese Anfrage geschickt haben sich nicht in den von der Firma ProSoftware verkauften Datenbeständen befindet. my mistake. I accidently thought that this mail was a enquiry to distribute krename.... cu stonki |
From: Pro-Software <of...@wo...> - 2004-05-13 07:25:31
|
Sehr geehrte Damen und Herren,=0D =0D wir m=F6chten Sie hiermit anfragen ob Sie uns die Zusendung des Angebots = der Firma ProSoftware betreffs E-mailkatalogen deutscher Firmen einschlie= sslich Software erlauben.=0D Im Fall Ihrer Zusage senden Sie uns eine E-mail unter: =0D of...@pr... mit dem Thema: ZUSAGE=0D =0D Vielen Dank=0D Pro-Software=0D --=0D Wir erkl=E4ren hiermit, dass die E-mail Adresse auf die wir diese Anfrag= e geschickt haben sich nicht in den von der Firma ProSoftware verkauften = Datenbest=E4nden befindet.=0D ------------------------------------=0D Pro-Software=0D http://www.pro-software.co.uk/de/=0D oder=0D http://www.worldmailing.info=0D ------------------------------------ |
From: Stefan O. <Su...@st...> - 2004-05-09 15:48:56
|
Website www.krename.net =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 1) In download section there are no immediate links to=20 download =A0sections in description. Have to go to the panel part.=20 Irritating. =3D=3D> FIXED 2004-05-07 2) =A0In Features part features are in blue. Usually this color=20 is=A0reserved for links. Avoid using it - especially in lists it is=20 confusing. =3D=3D> FIXED 2004-05-07 Program: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 1) When opening first time advanced view I don't see whole main area=20 and , had to resize window to see it all. Problem existed in File=20 and Filename tabs. =A0The same in some Command plugins (Permissions).=20 Situation can be only worse with localizations... 2) File tab in advanced view - Sort button: I don't see current=20 choice. Is [ =A0Sort =A0] =A0 Should be: =A0 Sort: [Ascending] =A0 or=20 [Sort =A0Ascending] 3) File tab in adv. view - Preview of images: Should be aligned, =20 all file names should begin in the same disctance from left side, plus small margin between images =3D=3D> FIXED 2004-05-09 4) =A0Order of 'main' buttons in advanced view - is: Cancel, Finish,=20 Help. Should be: Help, Finish, Cancel. =A0Hmm. Looks like a bug. In=20 wizard mode order is OK. =3D=3D> FIXED 2004-05-09 5) =A0Filename tab - Functions... dialog doesn't use kstdguiitems=20 for=A0Add, Close buttons. 6) =A0WHAT I MOST HATE IN LINUX PROGRAMS - Directory doesn't=20 exist. =A0[OK] =A0Make offer to create one! =A0kdelibs thing? =A0BTW. Isn't= =20 consensus 'real' directories are now known as folders? (wording in=20 Destination tab) =3D=3D> FIXED 2004-05-09 7) Progress - dialog: Close button isn't kstdguiitem, should be on=20 the right side. And, hmm, how to say it... Program doesn't work=20 ^_^. Ah. I see. In destination tab I specified dir as "~/st/ren",=20 without / at the end =A0and files were renamed to reffilename. Clear=20 bug, it should be more tolerant for such things. =3D=3D> FIXED 2004-05-09 8) Also when I choose Rename Unprocessed Files Again... it doesn't=20 work. (with Processed Files it works) =3D=3D> FIXED 2004-05-09 9) In plugins part should be short explanat This plugin adds =A0support for belowmentioned tokens to renaming (or similar). 10) Undo actions/scripts should be made automatically, not as=20 an=A0extra option. By Default with a undo script, but setting=20 11) OGG info plugin (and other music formats) - shouldn't it be=20 standardized across KDE? All media apps using renaming features=20 should use the same format for renaming files if possible. 12) =A0Similar thing for image formats. Why not use/adjust=20 ImageMagick=A0format of comments? =3D=3D> NOT POSSIBLE (Krename has nothing to do with the =20 ImageMagick=A0syntax) 13) =A0Is in wizard mode Plugins step necessary, for 99% of not=20 Power=A0Users wont use it and I understand all commands are available =A0through Functions...=20 Definitely clean up the wizard. The purpose of the wizard is to be=20 easy to use. The plugins page should be gone, and maybe reduce the=20 other pages a bit, if possible. I think Files tab isn't necessary=20 in wizard mode. Files can be rearranged also in last tab. 14) context menu in last tab: if default action for double click is=20 'Rename manually' this should be the first position in context=20 menu.=20 =3D=3D> FIXED 2004-05-09 15) because you can preview graphic files (and other) with=20 context=A0menu IMO Files tab in wizard mode is redundant. This way=20 you can reduce number of tabs to 2 in 'newbie' mode. 16) In wizard mode should be Easy Mode... triggered by default? This=20 is the most complicated part and not PU should be faced with Easy=20 Mode immediately. 17) Why Finish button in two modes has two icons? 18) =A0More tooltips like this for Easy Mode... are always welcome. 19) Definitely clean up the wizard. The purpose of the wizard is to=20 be easy to use. The plugins page should be gone, and maybe reduce=20 the =A0other pages a bit, if possible. 20 ) The Help button appears to do nothing. If there is no help=20 just remove the button.=20 21) Numbering - it should start with 1, 0 is geeky thing - 'normal'=20 users don't grok it. 22) Although I spoke of an idea for the future, I was restless this=20 evening and decided to do a mockup of KRename in a single window. =46iles are at: http://www2.gvsu.edu/~abreschm/krename-mockup.ui http://www2.gvsu.edu/~abreschm/krename-mockup-basic.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-1.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-2.png 23) horizontal scrollbar not initially visible - only after resizing=20 window =3D=3D> SEE 1) 24) - Add Files / Add Directory / Rename Directory. Inconsistent naming convention: add vs rename. They finally do the same, namely adding files/folders. 25) Add Files / Add Directory Add Files makes it possible to mark several items, Add Directory doesn't. Of course "Add directory" implies that only one directory=20 may be added. Nonetheless there's no obvious way to add several=20 directories at the same time. 26) Add Files By marking directories the contents of directories is added. The =A0same functionality is offered by "Add Directory". Suggestion: Drop "Add Directory" 27) Suggestion: Drop "Add Directory" =3D=3D> SEE 26) 28) Remove Files=20 Also removes selected directories. One might think that=20 "Remove =A0Files" removes all the files whilst "Remove all" removes=20 all entries. There's no indication that "Remove Files" is only=20 valid for selected entries. Suggestion: Rename "Remove Files" to e.g "Remove Selected" or the=20 like. 29) I doubt "Trash" and its contents should be a valid target for=20 renaming. 30) Displaying the number of files is nice, but what's its=20 purpose? =A0Why would anyone check the number of files added: "Hell,=20 there's one file/directory too many, I have to reduce the number of =20 entries" or "I wanted to add 50, now there are 52 entries"? I'm not=20 sure whether his feedback makes sense. 31) Clicking "Preview" offers the option "Display name". When=20 unchecking "Display name" and after that unchecking and checking=20 "Preview" again "Display name" is checked. Maybe the=20 setting =A0should be remembered. 32) Tooltip in "Move selected" ends with "." Tooltips "Move up" /=20 "Move down" don't. It just stroke my mind... 33) Clicking "Next" is possible though there are no files selected.=20 34) Text Label says "Files", but also directories are listed. 35) Offering a (greyed) "< Back" button in the initial window is=20 somewhat irritating. It should not appear until "Next >" was=20 hit =A0once. cu stonki =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |
From: Stefan O. <Su...@st...> - 2004-05-09 14:05:37
|
Website www.krename.net =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 1) In download section there are no immediate links to=20 download =A0sections in description. Have to go to the panel part.=20 Irritating. =3D=3D> FIXED 2004-05-07 2) =A0In Features part features are in blue. Usually this color=20 is=A0reserved for links. Avoid using it - especially in lists it is=20 confusing. =3D=3D> FIXED 2004-05-07 Program: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 1) When opening first time advanced view I don't see whole main area=20 and , had to resize window to see it all. Problem existed in File=20 and Filename tabs. =A0The same in some Command plugins (Permissions).=20 Situation can be only worse with localizations... 2) File tab in advanced view - Sort button: I don't see current=20 choice. Is [ =A0Sort =A0] =A0 Should be: =A0 Sort: [Ascending] =A0 or=20 [Sort =A0Ascending] 3) File tab in adv. view - Preview of images: Should be aligned, =20 all file names should begin in the same disctance from left side, plus small margin between images 4) =A0Order of 'main' buttons in advanced view - is: Cancel, Finish,=20 Help. Should be: Help, Finish, Cancel. =A0Hmm. Looks like a bug. In=20 wizard mode order is OK. 5) =A0Filename tab - Functions... dialog doesn't use kstdguiitems=20 for=A0Add, Close buttons. 6) =A0WHAT I MOST HATE IN LINUX PROGRAMS - Directory doesn't=20 exist. =A0[OK] =A0Make offer to create one! =A0kdelibs thing? =A0BTW. Isn't= =20 consensus 'real' directories are now known as folders? (wording in=20 Destination tab) 7) Progress - dialog: Close button isn't kstdguiitem, should be on=20 the right side. And, hmm, how to say it... Program doesn't work=20 ^_^. Ah. I see. In destination tab I specified dir as "~/st/ren",=20 without / at the end =A0and files were renamed to reffilename. Clear=20 bug, it should be more tolerant for such things. 8) Also when I choose Rename Unprocessed Files Again... it doesn't=20 work. (with Processed Files it works) 9) In plugins part should be short explanat This plugin adds =A0support for belowmentioned tokens to renaming (or similar). 10) Undo actions/scripts should be made automatically, not as=20 an=A0extra option. By Default with a undo script, but setting=20 11) OGG info plugin (and other music formats) - shouldn't it be=20 standardized across KDE? All mmedia apps using renaming features=20 should use the same format for renaming files if possible. 12) =A0Similar thing for image formats. Why not use/adjust=20 ImageMagick=A0format of comments? 13) =A0Is in wizard mode Plugins step necessary, for 99% of not=20 Power=A0Users wont use it and I understand all commands are available =A0through Functions...=20 Definitely clean up the wizard. The purpose of the wizard is to be=20 easy to use. The plugins page should be gone, and maybe reduce the=20 other pages a bit, if possible. I think Files tab isn't necessary=20 in wizard mode. Files can be rearranged also in last tab. 14) context menu in last tab: if default action for double click is=20 'Rename manually' this should be the first position in context=20 menu.=20 15) because you can preview graphic files (and other) with=20 context=A0menu IMO Files tab in wizard mode is redundant. This way=20 you can reduce number of tabs to 2 in 'newbie' mode. 16) In wizard mode should be Easy Mode... triggered by default? This=20 is the most complicated part and not PU should be faced with Easy=20 Mode immediately. 17) Why Finish button in two modes has two icons? 18) =A0More tooltips like this for Easy Mode... are always welcome. 19) Definitely clean up the wizard. The purpose of the wizard is to=20 be easy to use. The plugins page should be gone, and maybe reduce=20 the =A0other pages a bit, if possible. 20 ) The Help button appears to do nothing. If there is no help=20 just remove the button.=20 21) Numbering - it should start with 1, 0 is geeky thing - 'normal'=20 users don't grok it. 22) Although I spoke of an idea for the future, I was restless this=20 evening and decided to do a mockup of KRename in a single window. =46iles are at: http://www2.gvsu.edu/~abreschm/krename-mockup.ui http://www2.gvsu.edu/~abreschm/krename-mockup-basic.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-1.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-2.png 23) horizontal scrollbar not initially visible - only after resizing=20 window 24) - Add Files / Add Directory / Rename Directory. Inconsistent naming convention: add vs rename. They finally do the same, namely adding files/folders. 25) Add Files / Add Directory Add Files makes it possible to mark several items, Add Directory doesn't. Of course "Add directory" implies that only one directory=20 may be added. Nonetheless there's no obvious way to add several=20 directories at the same time. 26) Add Files By marking directories the contents of directories is added. The =A0same functionality is offered by "Add Directory". 27) Suggestion: Drop "Add Directory" 28) Remove Files=20 Also removes selected directories. One might think that=20 "Remove =A0Files" removes all the files whilst "Remove all" removes=20 all entries. There's no indication that "Remove Files" is only=20 valid for selected entries. Suggestion: Rename "Remove Files" to e.g "Remove Selected" or the=20 like. 29) I doubt "Trash" and its contents should be a valid target for=20 renaming. 30) Displaying the number of files is nice, but what's its=20 purpose? =A0Why would anyone check the number of files added: "Hell,=20 there's one file/directory too many, I have to reduce the number of =20 entries" or "I wanted to add 50, now there are 52 entries"? I'm not=20 sure whether his feedback makes sense. 31) Clicking "Preview" offers the option "Display name". When=20 unchecking "Display name" and after that unchecking and checking=20 "Preview" again "Display name" is checked. Maybe the=20 setting =A0should be remembered. 32) Tooltip in "Move selected" ends with "." Tooltips "Move up" /=20 "Move down" don't. It just stroke my mind... 33) Clicking "Next" is possible though there are no files selected.=20 34) Text Label says "Files", but also directories are listed. 35) Offering a (greyed) "< Back" button in the initial window is=20 somewhat irritating. It should not appear until "Next >" was=20 hit =A0once. cu stonki =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |
From: Stefan O. <Su...@st...> - 2004-05-09 01:16:09
|
=2D--------- Weitergeleitete Nachricht ---------- Subject: Re: Test of programs Date: Samstag, 8. Mai 2004 18:44 =46rom: Florian Graessle <flo...@un...> To: KDE Usability Project <kde...@kd...> On Fri, 7 May 2004 07:59:59 +0100 Stefan Onken <Su...@st...> wrote: > May I ask here to test the program and give us some feedback > about the usability ? > > http://www.krename.net Here are some notes I made while having a look at the "Files" dialogue (in wizard mode). Some things may have already been mentioned by others. =2D horizontal scrollbar not initially visible - only after resizing window =2D Add Files / Add Directory / Rename Directory. Inconsistent naming convention: add vs rename. They finally do the same, namely adding files/folders. =2D Add Files / Add Directory Add Files makes it possible to mark several items, Add Directory doesn't. Of course "Add directory" implies that only one directory may be added. Nonetheless there's no obvious way to add several directories at the same time. =2D Add Files By marking directories the contents of directories is added. The same functionality is offered by "Add Directory". Suggestion: Drop "Add Directory" =2D Remove Files Also removes selected directories. One might think that "Remove Files" removes all the files whilst "Remove all" removes all entries. There's no indication that "Remove Files" is only valid for selected entries. Suggestion: Rename "Remove Files" to e.g "Remove Selected" or the like. =2D I doubt "Trash" and its contents should be a valid target for renaming. =2D Displaying the number of files is nice, but what's its purpose? Why would anyone check the number of files added: "Hell, there's one file/directory too many, I have to reduce the number of entries" or "I wanted to add 50, now there are 52 entries"? I'm not sure whether his feedback makes sense. =2D Clicking "Preview" offers the option "Display name". When unchecking "Display name" and after that unchecking and checking "Preview" again "Display name" is checked. Maybe the setting should be remembered. =2D Tooltip in "Move selected" ends with "." Tooltips "Move up" / "Move down" don't. It just stroke my mind... =2D Clicking "Next" is possible though there are no files selected. =2D Text Label says "Files", but also directories are listed. =2D Offering a (greyed) "< Back" button in the initial window is somewhat irritating. It should not appear until "Next >" was hit once. =46lorian _______________________________________________ kde-usability mailing list kde...@kd... https://mail.kde.org/mailman/listinfo/kde-usability =2D------------------------------------------------------ =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |
From: Stefan O. <Su...@st...> - 2004-05-08 08:19:31
|
Am Samstag, 8. Mai 2004 08:55 schrieb Jamethiel Knorth: > Although I spoke of an idea for the future, I was restless this > evening and decided to do a mockup of KRename in a single window. > Files are at: thanks for all your feedback. I will discuss it this week with my=20 mate (Dominik), who is doing the programming. Some of your comments=20 are already added (like the comments on the website), some we will=20 definitely add to krename. With some suggestion I do not 100%=20 agree, but I think thats normal in case of usuabilty. Thanks a lot for your help, I really appreciate it.=20 cu stonki =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |
From: Stefan O. <Su...@st...> - 2004-05-08 08:14:41
|
=2D--------- Weitergeleitete Nachricht ---------- Subject: Re: Test of programs (krename) Date: Samstag, 8. Mai 2004 08:55 =46rom: "Jamethiel Knorth" <jam...@ho...> To: kde...@kd... >From: "Jamethiel Knorth" <jam...@ho...> >Date: Fri, 07 May 2004 22:51:45 -0400 > >>From: Mikolaj Machowski <mi...@wp...> >>Date: Fri, 7 May 2004 22:50:01 +0200 >> >>Dnia pi=B1 7. maja 2004 20:25, Jamethiel Knorth napisa=B3: >> > And, not a comment on this version, but an idea for the >> > future: >> > >> > If this can be cleaned up a bit more, this would be nice to >> > sort of >> >>work >> >> > into Konqueror. When I have multiple files selected, I should >> > have the Rename option replaced with Rename Multiple and be >> > able to load up some GUI to do it with. Currently, this is a >> > little too complex for the average user, so it would need some >> > changes. >> >>Maybe as KPart similar to kfind? > >I was thinking either as that, or just as a modal dialog. I prefer > it as a modal dialog, because you don't really have cause to stay > in it after its action completes, and you shouldn't just be > leaving it for a while. I wish it could be modal to just one tab. > And, on that note, I need to start a new thread. Although I spoke of an idea for the future, I was restless this evening and decided to do a mockup of KRename in a single window. Files are at: http://www2.gvsu.edu/~abreschm/krename-mockup.ui http://www2.gvsu.edu/~abreschm/krename-mockup-basic.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-1.png http://www2.gvsu.edu/~abreschm/krename-mockup-advanced-2.png Naturally, it's a little cluttered due to being in a single page as opposed to four (although there would be a bit moved into dialogs). I'm not entirely happy with it, but I never am. _________________________________________________________________ Stop worrying about overloading your inbox - get MSN Hotmail Extra Storage! http://join.msn.com/?pgmarket=3Den-us&page=3Dhotmail/es2&ST=3D1/go/onm00 200362ave/direct/01/ _______________________________________________ kde-usability mailing list kde...@kd... https://mail.kde.org/mailman/listinfo/kde-usability =2D------------------------------------------------------ =2D-=20 www.stonki.de: the more I see, the more I know....... www.proftpd.de: Deutsche ProFTPD Dokumentation www.krename.net: Der Batch Renamer f=FCr KDE www.kbarcode.net: Die Barcode Solution f=FCr KDE |