floele Posted February 25, 2018 Report Share Posted February 25, 2018 (edited) Changes in Beta 1: +Allow forced evaluation of custom columns by prefixing the name with "!" +When accessing an FTP directory (path ending with /) list directory contents +New option: Default user agent. Replaced all previous default user agents with a new one. Changes in Beta 2: +Added "clear log" feature in log window +Allow non-binary downloads (text/html) *Now requires .NET 4.5.2 (instead of 4.5) Ketarin-1.8.10.1.zip Edited October 28, 2018 by floele Link to comment Share on other sites More sharing options...
MAPJe71 Posted February 26, 2018 Report Share Posted February 26, 2018 Quote +Allow forced evaluation of custom columns by prefixing the name with "!" What is "name" referring to? The name of the column, the name of the variable used in the columns value? Can the prefix be combined with a function e.g. "{!countSetup:ps}"? Link to comment Share on other sites More sharing options...
floele Posted March 1, 2018 Author Report Share Posted March 1, 2018 It's the name of the column. Link to comment Share on other sites More sharing options...
Etz Posted May 27, 2018 Report Share Posted May 27, 2018 Looks like something has changed with this beta, for example this powershell script does not work anymore (worked fine on previous versions): $PortableAppsPath = [System.Environment]::ExpandEnvironmentVariables($GlobalVars.item('portable').cachedcontent) $WShell = New-Object -ComObject WScript.Shell $Executables = (Get-ChildItem (Join-Path $PortableAppsPath $App.Name) -Filter '*.exe' -Recurse) if ($Executables.Count -gt 1) { $ShortCutPath = (Join-Path $([System.Environment]::ExpandEnvironmentVariables($GlobalVars.item('shortcuts').cachedcontent)) $App.Name) if (-Not(Test-Path $ShortCutPath -PathType Container)) { New-Item $ShortCutPath -ItemType Directory -Force } } else { $ShortCutPath = [System.Environment]::ExpandEnvironmentVariables($GlobalVars.item('shortcuts').cachedcontent) } foreach ($Executable in $Executables) { $ShortCut = $WShell.CreateShortcut("$ShortCutPath\$($Executable.BaseName).lnk") $Shortcut.TargetPath = $Executable.FullName $Shortcut.WorkingDirectory = (Join-Path $PortableAppsPath $App.Name) $Shortcut.IconLocation = $Executable.FullName $Shortcut.Save() } It does not give any meaningful error either, simply throws: Script can not be executed. Value does not fall into expected range. Link to comment Share on other sites More sharing options...
floele Posted June 1, 2018 Author Report Share Posted June 1, 2018 Are you sure it's actually related to the Ketarin update? There shouldn't be anything different with the new version in this regard. Link to comment Share on other sites More sharing options...
Ambimind Posted June 2, 2018 Report Share Posted June 2, 2018 @Etz What errors does Ketarin log show? Tried the script with slight modifications, to account for assumption not met by my system, without issue. Functional modifications : Finds executables in current app dir, rather than dir specified in "portable". Tested as an app\job specific script, not global. Global variable shortcuts = C:\ $PortableAppsPath = (Get-Item $app.CurrentLocation).DirectoryName $WShell = New-Object -ComObject WScript.Shell $Executables = Get-ChildItem (Get-Item $app.CurrentLocation).DirectoryName -Filter '*.exe' -Recurse if ($Executables.Count -gt 1) { $ShortCutPath = Join-Path $globalvars.'shortcuts'.CachedContent $app.Name if (-Not(Test-Path $ShortCutPath -PathType Container)) { New-Item $ShortCutPath -ItemType Directory -Force } } else { $ShortCutPath = Join-Path $globalvars.'shortcuts'.CachedContent $app.Name } foreach ($Executable in $Executables) { $ShortCut = $WShell.CreateShortcut("$ShortCutPath\$($Executable.BaseName).lnk") $Shortcut.TargetPath = $Executable.FullName $Shortcut.WorkingDirectory = (Join-Path $PortableAppsPath $App.Name) $Shortcut.IconLocation = $Executable.FullName $Shortcut.Save() } Link to comment Share on other sites More sharing options...
Etz Posted June 2, 2018 Report Share Posted June 2, 2018 @Ambimind Log does not show any errors, it just refused to run by throwing popup message: Script can not be executed. Value does not fall into expected range. @floele nevermind, looks like it was some kind of temporary issue, started to work by itself again. Probably something got screwed on my system. Link to comment Share on other sites More sharing options...
floele Posted October 28, 2018 Author Report Share Posted October 28, 2018 Now added beta 2. Will make this a final release if there are no complaints. Link to comment Share on other sites More sharing options...
shawn Posted October 28, 2018 Report Share Posted October 28, 2018 awesome! I feel like this release is all about my requests. Thanks, @floele! Link to comment Share on other sites More sharing options...
Knightmare Posted October 29, 2018 Report Share Posted October 29, 2018 I'm excited for the new version! Link to comment Share on other sites More sharing options...
jokerfool Posted February 7, 2019 Report Share Posted February 7, 2019 Anything new in the pipeline? Link to comment Share on other sites More sharing options...
floele Posted February 10, 2019 Author Report Share Posted February 10, 2019 Didn't plan anything in particular yet. I'm going to check the UserEcho suggestions though for upcoming enhancements. Link to comment Share on other sites More sharing options...
Etz Posted May 26, 2019 Report Share Posted May 26, 2019 Looks like something changed on Filehippo as all downloads from there started to suddenly fail: Steam FileHippo ID 'steam' does not exist. Origin FileHippo ID 'origin' does not exist. Acrylic Wi-Fi Home FileHippo ID 'acrylic-wifi-home' does not exist. Audacity FileHippo ID 'audacity' does not exist. WinSCP FileHippo ID 'winscp' does not exist. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now