Skip to content

Commit

Permalink
bump version to 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadas committed Jun 26, 2020
1 parent 0aa3ca2 commit c7a4c43
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# muCommander

[![Version](http://img.shields.io/badge/version-0.9.5-blue.svg?style=flat)](https://github.com/mucommander/mucommander/releases/tag/nightly)
[![Version](http://img.shields.io/badge/version-0.9.6-blue.svg?style=flat)](https://github.com/mucommander/mucommander/releases/tag/nightly)
[![License](http://img.shields.io/badge/License-GPL-blue.svg)](http://www.gnu.org/copyleft/gpl.html)
[![Build Status](https://travis-ci.org/mucommander/mucommander.svg)](https://travis-ci.org/mucommander/mucommander)
[![Coverity Scan](https://scan.coverity.com/projects/3642/badge.svg)](https://scan.coverity.com/projects/3642)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -19,7 +19,7 @@ plugins {

allprojects {
group = 'org.mucommander'
version = '0.9.5'
version = '0.9.6'
ext.release = 'snapshot'
configurations {
compileOnly.extendsFrom comprise
Expand Down
25 changes: 6 additions & 19 deletions package/readme.txt
Expand Up @@ -6,7 +6,7 @@


------------------
muCommander v0.9.5
muCommander v0.9.6
------------------

muCommander is a lightweight, cross-platform file manager with a dual-pane interface.
Expand All @@ -28,33 +28,20 @@ If you're having problems launching muCommander, make sure the JAVA_HOME environ
where your Java runtime is installed.


What's new since v0.9.4 ?
What's new since v0.9.5 ?
-----------------------

New features:
- New file-search functionality.
Default shortcuts are Control+F (opens find dialog) and Shift+Control+F (no dialog).
- Added a PDF viewer.
-

Improvements:
- The 'Move to trash' operation does not require changes to privacy protection on macOS anymore.
- Preserve file's (Spotlight) comment and user tags when copying local files on macOS.
- Exclude OSGi-cli from packaging to avoid the creation of .osgiaas_cli_history file on shutdown.
- Added a new icon for the virtual bookmarks file system (bookmark://).
- Package the 'portable' version packaged as zip archive rather than "tarball".
- Accelerate system files filtering on macOS.
- The non-bundled version for Windows looks for a JRE also in JAVA_HOME.
- Detect new versions of the GNOME desktop environment in which GNOME_DESKTOP_SESSION_ID is not set.
-

Localization:
-
-

Bug fixes:
- The license is presented in the license dialog.
- Added back missing quote characters in various dialogs (e.g., doesnt -> doesn't).
- The up-to-date perferences are reflected in the file tables on every change.
- System files are filtered out when the 'Show system files' preference is deselected on macOS.
- Shortcuts to dialogs of popular file protocols (e.g., SFTP, SMB) are back in the drive popup buttons.
-

Known issues:
- Mac OS X: "muCommander damaged and cannot be opened" may appear after downloading muCommander from the browser. This
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mucommander/main/muCommander.java
Expand Up @@ -277,7 +277,7 @@ public static void main(String[] args) throws Exception
configProps.computeIfAbsent("mucommander.app.dir", key -> new File(codeParentFolder, "app").getAbsolutePath());

final String appDir = configProps.get("mucommander.app.dir");
configProps.computeIfAbsent("felix.auto.start.2", key -> "file:" + new File(appDir, "mucommander-core-0.9.5.jar").getAbsolutePath());
configProps.computeIfAbsent("felix.auto.start.2", key -> "file:" + new File(appDir, "mucommander-core-0.9.6.jar").getAbsolutePath());
configProps.computeIfAbsent(Constants.FRAMEWORK_STORAGE, key -> new File(codeParentFolder, "felix-cache").getAbsolutePath());

// Copy framework properties from the system properties.
Expand Down

0 comments on commit c7a4c43

Please sign in to comment.