Git commit 3e5698105aa426db106cde86ebaf63c421b9bc5e by Nikita Melnichenko. Committed on 26/04/2018 at 03:38. Pushed by melnichenko into branch 'master'.
Cleaned up old auxiliary files, updated references and fixed layout in docs * .reviewboardrc is no longer needed as we use Phabricator * porting_todo.txt is no longer needed as porting to KF5 is complete * createdist.sh is obsolete as we use create_tarball_kf5.rb * Renamed SVNNEWS to NEWS as it seems to be a useful extended summary of the new features * Updated broken links * Updated references and fixed layout in docs * Small change of wording and layout in TODO, NEWS, ChangeLog files Differential Revision: https://phabricator.kde.org/D12486 D +0 -4 .reviewboardrc M +1 -1 ChangeLog R +25 -7 NEWS [from: SVNNEWS - 098% similarity] M +2 -2 TODO D +0 -46 createdist.sh M +2 -2 doc-extras/ChangeLog M +21 -29 doc/features.docbook D +0 -20 porting_todo.txt https://commits.kde.org/krusader/3e5698105aa426db106cde86ebaf63c421b9bc5e diff --git a/.reviewboardrc b/.reviewboardrc deleted file mode 100644 index 3a807490..00000000 --- a/.reviewboardrc +++ /dev/null @@ -1,4 +0,0 @@ -REVIEWBOARD_URL = "https://git.reviewboard.kde.org" -REPOSITORY = 'git://anongit.kde.org/krusader' -BRANCH = 'master' -TARGET_GROUPS = 'krusader' diff --git a/ChangeLog b/ChangeLog index 6e0a8689..ff9c8fda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,3 @@ - 2.6.0 "Stiff Challenges" ========================= @@ -43,6 +42,7 @@ CHANGED: Duplicate tab settings when duplicating tabs CHANGED: Some fixes and simpifying startup settings. + 2.5.0 "Clear Skies" ========================= diff --git a/SVNNEWS b/NEWS similarity index 98% rename from SVNNEWS rename to NEWS index 9bd81cc9..4866f1ca 100644 --- a/SVNNEWS +++ b/NEWS @@ -1,11 +1,14 @@ ------------------------------------------------------------------------ -- Krusader SVNNEWS +- Krusader NEWS ------------------------------------------------------------------------ -- This file is only intended for krusader-svn. -- It should contain a brief description of new features. In some way an -- extension to the ChangeLog. +- This file should contain a brief description of new features. +- In some way an extension to the ChangeLog. ------------------------------------------------------------------------ + + +-------------------------------- 2.3.0 New Horizons -------------------- + New feature: QuickFilter: - "QuickFilter" action (default shortcut CTRL+i) shows and focuses quickfilter - when quickfilter is focused: Return sets focus to panel @@ -15,7 +18,9 @@ New feature: dbus interface: org.krusader.Instance.openUrl(QString url) - path: /Instances/<instance> - if there is already a tab open with that url, it is activated, otherwise a new tab is opened in the active panel --------------------------------- 2.2.0-SVN Dekade ---------------------- + + +-------------------------------- 2.2.0 Dekade -------------------------- Reorganize Konfigurator: "Look & Feel" page becomes "Panel" - @@ -63,9 +68,9 @@ New feature: thumbnails for the listviews - new action "Show Previews" which can also be found in mainmenu > view - toggleable separately per view --------------------------------- 2.1.0-SVN Rusty Clutch ---------------- +-------------------------------- 2.1.0 Rusty Clutch -------------------- New feature: better trash implementation - 2 new actions: trash bin -> to open and empty trash (by default it's on the toolbar) @@ -77,7 +82,8 @@ New feature: better trash implementation - the trash bin can be emptied --------------------------------- 2.0.0 stable "Mars pathfinder" ------- + +-------------------------------- 2.0.0 stable "Mars pathfinder" -------- Change: alt+letter shortcuts had collisions with dynamically assigned hotkeys Old shortcut New shortcut Function @@ -136,6 +142,8 @@ New feature: Queue manager is much more useful. http://www.krusader.org/phpBB/viewtopic.php?t=810 + + -------------------------------- 2.0.0-beta1 --------------------------- New feature: Krusader is able to send e-mails by thunderbird @@ -160,7 +168,9 @@ New feature: new synchronizer shortcuts - ALT + Delete : mark for delete + -------------------------------- 1.80.0 -------------------------------- + UserActions: Expander: Many fixes, better error handling, sensible %_Each&-handling. Finally I managed to implement Jiri's 100k patch for the useractions. This patch handles the Each-placeholder much better @@ -253,6 +263,8 @@ New archive handling: writes out the error messages of the archiver archive type autodetection by its header (first 512 byte) + + -------------------------------- 1.70.0 -------------------------------- New global calculate space function: @@ -280,6 +292,8 @@ Jump-Back: position. It's also possible to set the current directory manually as Jump-Back-Point. + + -------------------------------- 1.60.0 -------------------------------- Useraction: new placeholder: %_ListFile()% @@ -373,6 +387,8 @@ total commander in a single click? no problem! Mouse selection modes is back! check out the Look'N'Feel section + + -------------------------------- 1.51 ---------------------------------- The long awaited feature: Fn keys can be changed to different shortcuts @@ -382,6 +398,8 @@ at all. Pressing ctrl-up arrow from the panel, jumps to the origin bar + + -------------------------------- 1.50 ---------------------------------- Human-readable file sizes is implemented (located in look&feel->panel) diff --git a/TODO b/TODO index 2af98b5e..cd277772 100644 --- a/TODO +++ b/TODO @@ -5,10 +5,10 @@ The online BUG list of Krusader can be found on: https://bugs.kde.org/buglist.cgi?product=krusader When you like to report a bug, please read first the next URL for further instructions: -http://www.krusader.org/documentation/faq_general.html#faqg_bug_report +https://krusader.org/report-bugs/index.html TODO ==== -- The tasks that can be seen on https://phabricator.kde.org/project/board/79/ +ToDo tasks are tracked on https://phabricator.kde.org/project/board/79/ diff --git a/createdist.sh b/createdist.sh deleted file mode 100755 index badeea81..00000000 --- a/createdist.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -VERSION=`cat CMakeLists.txt | grep 'set(VERSION' | awk -F '"' '{print $2; }'` -DIST_NAME="krusader-${VERSION}" -OUTPUT_FILE_NAME="${DIST_NAME}.tar.gz" - -rm -rf __KrDist__ -mkdir __KrDist__ -mkdir __KrDist__/$DIST_NAME - -echo 'try SVN listing...' -if svn status -v >__KrDist__/svnfiles; then - FILES=`cat __KrDist__/svnfiles | grep -v '^\? ' | awk '{print $NF;}'` -fi - -if [ -z "$FILES" ]; then - echo 'try git listing...' - if git ls-files >__KrDist__/gitfiles; then - FILES=`cat __KrDist__/gitfiles` - fi -fi - -if [ -z "$FILES" ]; then - echo "Something went wrong! Can't find version controlled source files" - exit 1 -fi - -echo 'Copying files for disting...' -for FILE2 in $FILES; -do - if [ ! -d $FILE2 ]; then - target_dir="__KrDist__/$DIST_NAME/`dirname $FILE2`" - if [ ! -d $target_dir ]; then mkdir -p $target_dir; fi - cp -p $FILE2 $target_dir; - fi -done - -echo 'Creating the tar.gz archive...' -cd __KrDist__ -tar cvfz ../$OUTPUT_FILE_NAME $DIST_NAME >/dev/null -cd .. - -echo 'Removing temporary files...' -rm -rf __KrDist__ - -echo 'OK.' diff --git a/doc-extras/ChangeLog b/doc-extras/ChangeLog index 4b8a5813..23d1d0df 100644 --- a/doc-extras/ChangeLog +++ b/doc-extras/ChangeLog @@ -1,9 +1,9 @@ The Krusader Handbook ChangeLog ------------------------------- -2.4.0 "" +2.5.0 "Clear Skies" ========================== -Date: 201?-??-?? +Date: 2016-10-22 ADDED: Add information on removal of Synchronizer and on how to reenable it. FIXED: Bug #298346 diff --git a/doc/features.docbook b/doc/features.docbook index 966f98ab..989a361a 100644 --- a/doc/features.docbook +++ b/doc/features.docbook @@ -24,10 +24,12 @@ <note> <para>The most important features and improvements are highlighted here, it would make this list too long if we were to - include - <emphasis>all</emphasis> the features and improvements. You will - discover even more features in this documentation and in the - <ulink url="https://commits.kde.org/krusader?path=ChangeLog"><filename>ChangeLog</filename></ulink> file.</para> + include <emphasis>all</emphasis> the features and improvements. + You will discover even more features in this documentation and in the + <ulink url="https://commits.kde.org/krusader?path=ChangeLog"><filename>ChangeLog</filename></ulink> + and + <ulink url="https://commits.kde.org/krusader?path=NEWS"><filename>NEWS</filename></ulink> + files.</para> </note> <para> <itemizedlist> @@ -280,9 +282,6 @@ <listitem> <para><link linkend="useractions">UserActions</link></para> </listitem> -<!-- <listitem> - <para><link linkend="javascript_console">JavaScript console</link></para> - </listitem> disabled due to KrJS does not compile (cannot find kjsembed from kdelibs--> <listitem> <para><link linkend="konfig-color">Color Profiles</link></para> </listitem> @@ -291,7 +290,8 @@ </listitem> </itemizedlist> Download and upload your favourite &krusader; extensions at - <ulink url="https://store.kde.org/">store.kde.org</ulink>.</para> + <ulink url="https://store.kde.org/">store.kde.org</ulink>. + </para> </listitem> </itemizedlist> </para> @@ -411,7 +411,6 @@ </itemizedlist> </para> - <para> <itemizedlist> <title>New features in the &krusader;-2.0.0 "Mars Pathfinder" @@ -459,11 +458,6 @@ <para>The quick search, select and filter bar supports regular expressions for matching files. </para> </listitem> - <listitem> - <para>For more features, please read the - <ulink url="https://commits.kde.org/krusader?path=ChangeLog"><filename>ChangeLog</filename></ulink> and - <ulink url="https://commits.kde.org/krusader?path=SVNNEWS"><filename>SVNNEWS</filename></ulink>.</para> - </listitem> </itemizedlist> </para> @@ -486,19 +480,17 @@ </itemizedlist> </para> - <para><note><para> - If you are using a <link linkend="krusader_devel">development</link> or - <link linkend="krusader_git">Git</link> version, it is possible that the latest - new features are not yet in the "The &krusader; Handbook". - Please read the - <ulink url="https://commits.kde.org/krusader?path=ChangeLog">Changelog</ulink> - file online or in the &krusader; - sources to find out more about the new features. - For a brief description, please read the - <ulink url="https://commits.kde.org/krusader?path=SVNNEWS">SVNNEWS</ulink> - file online - or in the &krusader; sources. - <link linkend="faqg_wish">User feedback</link> and - <link linkend="faqg_bug_report">Bug reports</link> are always welcome! - </para></note></para></chapter> + If you are using a <link linkend="krusader_devel">development</link> or + <link linkend="krusader_git">Git</link> version, it is possible that the latest + new features are not yet in the "The &krusader; Handbook". + Please read the + <ulink url="https://commits.kde.org/krusader?path=ChangeLog">Changelog</ulink> + file online or in the &krusader; sources to find out more about the new features. + For a brief description, please read the + <ulink url="https://commits.kde.org/krusader?path=NEWS">NEWS</ulink> + file online or in the &krusader; sources. + <link linkend="faqg_wish">User feedback</link> and + <link linkend="faqg_bug_report">Bug reports</link> are always welcome! +</para></note></para> +</chapter> diff --git a/porting_todo.txt b/porting_todo.txt deleted file mode 100644 index 9cc4304b..00000000 --- a/porting_todo.txt +++ /dev/null @@ -1,20 +0,0 @@ - - porting to kde plasma - todos - ============================= - - -1 - rewrite CMakeLists rules / variables - -all rules were rewritten in a Qt5/KF5 way; I didn't changed yet the variables in -'target_link_libraries', just commented out; btw, with a fast 'cmake', all flags -should be generated (flags.make files) - -2 - change properly all include - -ok, I think I've done it, not sure it's 100% correct, we'll find at compile -time; I choose to use the full include path (QtCore/QFile, e.g.) because it will -be easier to get the qt5/kf5 packages involved - -next... - -3 - new headers... new methods \ No newline at end of file
