Skip to content

Commit

Permalink
Actually fix #141
Browse files Browse the repository at this point in the history
  • Loading branch information
Real-Gecko committed Apr 6, 2018
1 parent 3febed1 commit 82e1de3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log
## [2.2.3] - 2018-04-06
- Actually fix [#141](https://github.com/Real-Gecko/Filemin/issues/141) already.

## [2.2.2] - 2018-03-13
### Fixed
- Fixed [#141](https://github.com/Real-Gecko/Filemin/issues/141) - updater will keep Filemin flavour in own config.
Expand Down
Binary file modified filemin-updater.bsd.tar.gz
Binary file not shown.
Binary file modified filemin-updater.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion filemin-updater/index.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if($remote_user eq 'root' & $vc) {
&error('WHAT???');
}
# my $url = "https://github.com/Real-Gecko/filemin/raw/master/distrib/filemin-$remote.$os.wbm.gz";
my $url = "https://github.com/Real-Gecko/Filemin/releases/download/$version/filemin-$version.$os.$flavour.wbm.gz";
my $url = "https://github.com/Real-Gecko/Filemin/releases/download/$remote/filemin-$remote.$os.$flavour.wbm.gz";
my $tempfile = transname();
my ($host, $port, $page, $ssl) = &parse_http_url($url);
&http_download($host, $port, $page, $tempfile, undef, \&progress_callback, $ssl);
Expand Down
2 changes: 1 addition & 1 deletion filemin-updater/module.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ desc=Filemin Updater
os_support=*-linux freebsd
name=Filemin Updater
longdesc=Filemin updater
version=1.0.2
version=1.0.3
webmin=1
2 changes: 1 addition & 1 deletion index.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if($remote_user eq 'root' & $vc & !$usermin) {
} else {
my %updater_info = &get_module_info('filemin-updater');
$installed = version->parse($updater_info{'version'});
$latest = version->parse('1.0.2');
$latest = version->parse('1.0.3');
if ($installed < $latest) {
print "Updating updater<br>";
$irv = &webmin::install_webmin_module("$module_root_directory/unauthenticated/filemin-updater.tar.gz");
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.2.2
version=2.2.3
webmin=1
usermin=1
flavour=full
Expand Down

0 comments on commit 82e1de3

Please sign in to comment.