Skip to content

Commit

Permalink
Version 2.0.1
Browse files Browse the repository at this point in the history
Fixed #111
  • Loading branch information
Real-Gecko committed Jul 16, 2016
1 parent 990d7a2 commit 6328089
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [2.0.1] - 2016-07-17
- Fixed #111

## [2.0.0] - 2016-05-27
### Fixed
- Fixed #104
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ Features modern GUI with the help of numerous JS and CSS libraries. Makes file m

##Installation:
Package for installation through Webmin interface
For [**Linux**](https://github.com/Real-Gecko/filemin/raw/master/distrib/filemin-1.1.2.linux.wbm.gz) distributions and for [**FreeBSD**](https://github.com/Real-Gecko/filemin/raw/master/distrib/filemin-1.1.2.freebsd.wbm.gz).
For [**Linux**](https://github.com/Real-Gecko/filemin/raw/master/distrib/filemin-2.0.1.linux.wbm.gz) distributions and for [**FreeBSD**](https://github.com/Real-Gecko/filemin/raw/master/distrib/filemin-2.0.1.freebsd.wbm.gz).

[**Ubuntu**](https://github.com/Real-Gecko/filemin/raw/master/distrib/webmin-filemin_1.1.2_all.deb) and [**Debian**](https://github.com/Real-Gecko/filemin/raw/master/distrib/webmin-filemin_1.1.2_all.deb) users may prefer to install with
[**Ubuntu**](https://github.com/Real-Gecko/filemin/raw/master/distrib/webmin-filemin_2.0.1_all.deb) and [**Debian**](https://github.com/Real-Gecko/filemin/raw/master/distrib/webmin-filemin_2.0.1_all.deb) users may prefer to install with

`dpkg -i webmin-filemin_1.1.2_all.deb`.
`dpkg -i webmin-filemin_2.0.1_all.deb`.

Note that _dpkg_ way simply updates module without creating concurrent versions like installation from Webmin interface do.

## Update
As of version 1.1.0 Filemin automatically checks for udpate and offers to install it if available.
However currently Webmin itself bundles outdated 0.9 branch of the module and new version of Filemin is always downgraded with Webmin update.
To avoid the issue version 2.0.0 of Filemin install additional Filemin Updater module. Just click "Filemin Updater" option in "Others" menu of Webmin to reinstall Filemin.
To avoid the issue version 2.0.1 of Filemin install additional Filemin Updater module. Just click "Filemin Updater" option in "Others" menu of Webmin to reinstall Filemin.

##Note for FreeBSD users.
FreeBSD users are recommended to install _shared-mime-info_ package.
Expand Down
Binary file removed distrib/filemin-2.0.0.cdn.linux.wbm.gz
Binary file not shown.
Binary file removed distrib/filemin-2.0.0.freebsd.wbm.gz
Binary file not shown.
Binary file removed distrib/filemin-2.0.0.linux.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.0.1.cdn.linux.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.0.1.freebsd.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.0.1.linux.wbm.gz
Binary file not shown.
Binary file removed distrib/webmin-filemin_2.0.0_all.deb
Binary file not shown.
Binary file added distrib/webmin-filemin_2.0.1_all.deb
Binary file not shown.
8 changes: 7 additions & 1 deletion filemin-lib.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# filemin-lib.pl

BEGIN { push(@INC, ".."); };
BEGIN {
push(@INC, "..");
my $sp = __FILE__;
$sp =~ s!^(.*/)[^/]*$!\1!;
push(@INC, "$sp/lib");
};

use WebminCore;
&init_config();
use Encode qw(decode encode);
Expand Down
2 changes: 1 addition & 1 deletion module.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ desc=Filemin File Manager
os_support=*-linux freebsd
name=Filemin
longdesc=Fast and light file manager written in perl
version=2.0.0
version=2.0.1
webmin=1
usermin=1
longdesc_pl.UTF-8=Szybki i lekki menadżer plików napisany w perl
Expand Down

0 comments on commit 6328089

Please sign in to comment.