Krusader 2.6.0 "Stiff Challenges" released

65 views
Skip to first unread message

A. Bikadorov

unread,
Apr 12, 2017, 12:26:43 PM4/12/17
to krusader-users, krusad...@googlegroups.com, krusade...@googlegroups.com, kde-anno...@kde.org

The Krusader Krew is pleased to announce a new version of the Krusader file manager!

It contains mostly bugfixes but also some new features and reworks.

Highlights:
- Fixed krarc protocol being used too much
- Reintroducing system tray icon
- JobMan toolbar as replacement for queue manager
- Security improvements regarding kdesu and root mode

Download:
https://download.kde.org/stable/krusader/2.6.0/krusader-2.6.0.tar.xz.mirrorlist

Changelog:
https://cgit.kde.org/krusader.git/tree/ChangeLog

Our website:
https://krusader.org


Enjoy,
The Krusader Krew

Andrew Gaydenko

unread,
Apr 12, 2017, 1:38:51 PM4/12/17
to krusader-users, krusad...@googlegroups.com, krusade...@googlegroups.com
Congratulations!

The Krusader way is remarkable and unusual one in software world: to be the best during so long years!

 

 

benny Perth

unread,
Jan 20, 2018, 2:20:52 AM1/20/18
to krusader-users
Have been using Krusader for yonks now. Back in version 2.4.0-beta1 I wanted the locked tabs to look like Total Commander. Downloaded the source and made changes to do such. Also made a second fix but can't remember what that one was. Remember getting a response from the developer but my code wasn't implemented. So have been using my version since then. Of course, over time and many new distros, it has missed the new features and has had its own problems. Each time I upgrade to a new distro (usually Kubuntu), I checked the latest Krusader and until this version didn't see a reason to upgrade. Then I discovered that the much better looking lock on the tabs didn't actually stop the tab from being closed. So reckoned it was time to make my own version again based on 2.6.0. Lots of problems getting it to build correctly. They were mainly getting cmake to work and some dependencies not installed. The eventual solution was doing the cmake from /krusader and not /krusader/build.

So I've been successful in getting a working version that only closes tabs if they are unlocked. Unless I'm missing something totally obvious, the locked condition wasn't being checked. So changed the code in PanelManager::SlotCloseTab(int) as follows:

    ListPanel *oldp;
    ListPanel *panel = _currentPanel;

    // do not remove tab if locked!
    if (!panel->gui->isLocked()) {
       qWarning() << "PanelManager::slotCloseTab() - closing tab" << index << panel->gui->isLocked();
//       if (index == _tabbar->currentIndex())
//           slotChangePanel(_tabbar->removeCurrentPanel(oldp), false);
//       else
      _tabbar->removePanel(index, oldp); //this automatically changes the current panel

      _stack->removeWidget(oldp);
      deletePanel(oldp);
      tabsCountChanged();
      } else {
        qWarning() << "PanelManager::slotCloseTab() - not closing tab" << index << panel->gui->isLocked();
      }


benny

Reply all
Reply to author
Forward
0 new messages