This commit is contained in:
crestAT
2018-09-19 07:41:57 +02:00
parent 83f6711b2b
commit 696e2768f2
23 changed files with 9 additions and 66 deletions

17
.gitattributes vendored
View File

@@ -1,17 +0,0 @@
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

47
.gitignore vendored
View File

@@ -1,47 +0,0 @@
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
# =========================
# Operating System Files
# =========================
# OSX
# =========================
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

View File

@@ -25,7 +25,7 @@
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
$v = "v0.4"; // extension version
$v = "v0.4.0.1"; // extension version
$appName = "OneButtonInstaller";
$configName = "onebuttoninstaller";

View File

@@ -246,6 +246,7 @@ if (isset($_POST['install'], $_POST['name'])) {
} // EOforeach
} // EOinstall
$configuration = ext_load_config("ext/onebuttoninstaller/onebuttoninstaller.conf"); // to prevent collisions with installed extension definitions
// extensions list file handling for => manual update | auto update | missing file | file older than 24 hours
if (isset($_POST['update']) || ($configuration['auto_update'] && !isset($_POST['install'])) || !is_file("{$configuration['rootfolder']}/extensions.txt") || filemtime("{$configuration['rootfolder']}/extensions.txt") < time() - 86400) {
$return_val = mwexec("fetch -o {$configuration['rootfolder']}/extensions.txt https://raw.github.com/crestAT/nas4free-onebuttoninstaller/master/onebuttoninstaller/extensions.txt", false);

View File

@@ -1,4 +1,10 @@
Version Date Description
0.4.0.1 2018.09.19 F: false 'new version' messages after installation of extensions
C: update German translation
C: update Greek translation
C: update Swedish translation
C: update Ukrainian translation
0.4 2018.08.15 N: Ncurses Disk Usage (ncdu) shell app
N: use dedicated config file
N: check and warn if on LiveUSB/LiveCD

View File

@@ -1 +1 @@
0.4
0.4.0.1