Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
N: Turkish translation
N: Ukrainian translation
C: update Dutch translation
C: update French translation
C: update Greek translation
C: update Russian translation
C: update Spanish translation
C: update Swedish translation
F: Configuration - fix table view if unsupported extension exists
  • Loading branch information
crestAT committed Sep 1, 2016
1 parent 6cebc0d commit d9a2d13
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 11 deletions.
9 changes: 3 additions & 6 deletions onebuttoninstaller/ext/onebuttoninstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,28 +140,25 @@ function log_display($loginfo) {
for ($k = 0; $k < count($unsupported); $k++) { // check for unsupported release / architecture / platforms
if (!check_min_release($unsupported[$k]) || ($unsupported[$k] == $g['arch']) || ($unsupported[$k] == $g['platform'])) {
echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}'> <img src='{$image_path}status_disabled.png' border='0' alt='' title='".gettext('Unsupported architecture/platform/release').': '.$unsupported[$k]."' /></td>\n";
break;
continue 2; // unsupported, therefore we leave and proceed to the next extension in the list
}
}
}
// check if extension is already installed (existing config.xml or postinit cmd entry)
$already_installed = false;
echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}' ";
echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}' ";
if ((isset($config[$result[2]])) || (log_get_status($result[2]) == 1)) {
// echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}'> <img src='{$image_path}status_enabled.png' border='0' alt='' title='".gettext('Enabled')."' /></td>\n";
echo "><img src='{$image_path}status_enabled.png' border='0' alt='' title='".gettext('Enabled')."' /";
$already_installed = true;
}
if (($already_installed === false) || isset($config['onebuttoninstaller']['re_install']) ) {
// data for installation
// echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}' title='".gettext('Select to install')."' >
echo "><input title='".gettext('Select to install')."' type='checkbox' name='name[".$j."][extension]' value='".$result[2]."' />
<input type='hidden' name='name[".$j."][truename]' value='".$result[0]."' />
<input type='hidden' name='name[".$j."][command1]' value='".$result[3]."' />
<input type='hidden' name='name[".$j."][command2]' value='".$result[4]."' />";
// </td>\n";
}
echo "</td>\n";
echo "</td>\n";
} // EOcount
else echo "<td {$loginfo['columns'][$i]['param']} class='{$loginfo['columns'][$i]['class']}'>" . $result[$loginfo['columns'][$i]['pmid']] . "</td>\n";
} //EObeta-check
Expand Down
Binary file modified onebuttoninstaller/locale-obi/de/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/el/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/es/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/fr/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/it/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/nl/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/ro/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/ru/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file modified onebuttoninstaller/locale-obi/sv/LC_MESSAGES/nas4free.mo
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion onebuttoninstaller/onebuttoninstaller-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
$v = "v0.3.2"; // extension version
$v = "v0.3.3"; // extension version
$appname = "OneButtonInstaller";

require_once("config.inc");
Expand Down
15 changes: 12 additions & 3 deletions onebuttoninstaller/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
Version Date Description
0.3.2 2016.08.25 N: configuration - add checkbox to enable the installation of extensions even if they are already installed
0.3.3 2016.09.01 N: Turkish translation
N: Ukrainian translation
C: update Dutch translation
C: update French translation
C: update Greek translation
C: update Russian translation
C: update Spanish translation
C: update Swedish translation
F: Configuration - fix table view if unsupported extension exists
0.3.2 2016.08.25 N: Configuration - add checkbox to enable the installation of extensions even if they are already installed
N: Swedish translation
C: update Greek translation
C: update German translation
0.3.1 2016.08.15 F: OBI installer - add checkbox to override restriction for extensions installation path
0.3 2016.08.14 N: configuration - checkbox to override restriction for extensions installation path
0.3 2016.08.14 N: Configuration - checkbox to override restriction for extensions installation path
(limited to a directory under /mnt/)
0.2 2016.08.09 N: configuration - enable/disable beta releases in extensions list
0.2 2016.08.09 N: Configuration - enable/disable beta releases in extensions list
N: check hardware platform to use midnightcommander on i386 too
F: disabling extension not possible, leads to an error message
0.1 2016.08.01 initial release
Expand Down
2 changes: 1 addition & 1 deletion onebuttoninstaller/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3

0 comments on commit d9a2d13

Please sign in to comment.