It is. A lot of changes has been done to the supersearch for many reasons and one was : be ready to version 8.
Newsleecher V8 Beta Release - Timeline
Forum rules
IMPORTANT : Be sure to read the NewsLeecher forums policy before posting.
IMPORTANT : Be sure to read the NewsLeecher forums policy before posting.
Re: Newsleecher V8 Beta Release - Timeline
Scuba - NewsLeecher Support Team
The forum is only for NewsLeecher application issues.
The forum is only for NewsLeecher application issues.
Re: Newsleecher V8 Beta Release - Timeline
While I would dearly love to be proven wrong, I predict that there will be no V8 (beta or otherwise) before the end of March at the earliest.
Re: Newsleecher V8 Beta Release - Timeline
I think that the latest message in application indicate that changes are made to SuperSearch because Newsleecher v8 Beta is not in state to be published...
For me it's a try to keep active the Supersearch subscribtions but not a Newsleecher v8 Beta publication announce.
Re: Newsleecher V8 Beta Release - Timeline
How about January 5? That's the date Spiril posted a link to a beta, Newsleecher 8.0 Beta 1 unofficial forum release #4. Don't expect perfection. It's a beta, and an unofficial one at that. For me it often throws error messages, disconnects in the middle of a download and sometimes requires a shutdown and restart to continue. But when a SuperSearch Deobfuscated download succeeds, NL8 renames it and the directory it's saved to. With NL7 that has to be done manually. So try out the beta if you like but keep NL7 handy.
Del Mibbler
- Shalom2010
- Posts: 152
- Joined: Sun Apr 19, 2009 11:39 am
Re: Newsleecher V8 Beta Release - Timeline
Newsleecher 8.0 Beta 1 works fine here..just missing the 'Search Result Filter', then it would be usuable
Best Regards
Steven...Chigwell, Essex
Steven...Chigwell, Essex
Re: Newsleecher V8 Beta Release - Timeline
Mibbler wrote: ↑Sun Jan 20, 2019 3:38 amHow about January 5? That's the date Spiril posted a link to a beta, Newsleecher 8.0 Beta 1 unofficial forum release #4. Don't expect perfection. It's a beta, and an unofficial one at that. For me it often throws error messages, disconnects in the middle of a download and sometimes requires a shutdown and restart to continue. But when a SuperSearch Deobfuscated download succeeds, NL8 renames it and the directory it's saved to. With NL7 that has to be done manually. So try out the beta if you like but keep NL7 handy.
Thanks Spiril for Newsleecher 8.0 Beta 1 UFR4, unfortunately it has taken over one and a half years to release this to more Alpha_Beta testers



Re: Newsleecher V8 Beta Release - Timeline
I'd like to say that's great, but if it hasn't been posted as a publicly-available beta, then what's the point?
Re: Newsleecher V8 Beta Release - Timeline
Argonaute wrote: ↑Sat Jan 19, 2019 2:18 pmI think that the latest message in application indicate that changes are made to SuperSearch because Newsleecher v8 Beta is not in state to be published...
For me it's a try to keep active the Supersearch subscribtions but not a Newsleecher v8 Beta publication announce.
No it's also for a version 8.
Scuba - NewsLeecher Support Team
The forum is only for NewsLeecher application issues.
The forum is only for NewsLeecher application issues.
Re: Newsleecher V8 Beta Release - Timeline
it will be...
Scuba - NewsLeecher Support Team
The forum is only for NewsLeecher application issues.
The forum is only for NewsLeecher application issues.
Re: Newsleecher V8 Beta Release - Timeline
My license needs to be renewed, but I'm reluctant, because last time you told me that the new version 8 would be released quickly, that was one year ago. I will renew my license once version 8 with improvements is released.
"A long time customer"
"A long time customer"
Re: Newsleecher V8 Beta Release - Timeline
Must be for some users only... There is no Beta since 2016
Re: Newsleecher V8 Beta Release - Timeline
For those who are using Newsleecher v7 with a product like NZBdrone, you can use the following powershell script to unobfuscate the downloaded files.
You must configure Newsleecher to copy and keep the nzb files to a protected location and the folders variables, and perhaps the files extensions, in the header of the script :
-BEGIN-
$ROOT_PATH="D:\DOWN\"
$MKV_PATH=$ROOT_PATH+"Extractions\"
$NZB_PATH=$ROOT_PATH+"Imported\"
$MKV_SPEC="*.mkv"
$NZB_SPEC="*.nzb"
function Get-Filename
{
Param(
[parameter(mandatory=$false)]
[string]$Filespec = ".\*.nzb",
[parameter(mandatory=$true)]
[string]$Pattern
)
$FileInfo = Get-ChildItem -Recurse $Filespec | Where-Object { Select-String $Pattern $_ -Quiet }
if([string]::IsNullOrEmpty($FileInfo) -eq $false) {
$RetValue = $FileInfo.Name.Remove($FileInfo.Name.LastIndexOf('.'))
} else {
$RetValue = $null
}
$RetValue
}
$MkvFilesSpec = $MKV_PATH+$MKV_SPEC
$NzbFilesSpec = $NZB_PATH+$NZB_SPEC
$MkvFiles = Get-ChildItem -Path $MkvFilesSpec
foreach($File in $MkvFiles) {
$FoundFileName = $null
$ParentFilePath = Convert-Path($File.PSParentPath)
$OriginalFileName = $File.Basename
$FoundFileName = Get-Filename -Filespec $NzbFilesSpec -Pattern $OriginalFileName
if([string]::IsNullOrEmpty($FoundFileName) -eq $false) {
[string]$NewFileName = $ParentFilePath+"\"+$FoundFileName+$File.Extension
$NewFileName
$File.MoveTo($NewFileName)
}
}
-END-
You must configure Newsleecher to copy and keep the nzb files to a protected location and the folders variables, and perhaps the files extensions, in the header of the script :
-BEGIN-
$ROOT_PATH="D:\DOWN\"
$MKV_PATH=$ROOT_PATH+"Extractions\"
$NZB_PATH=$ROOT_PATH+"Imported\"
$MKV_SPEC="*.mkv"
$NZB_SPEC="*.nzb"
function Get-Filename
{
Param(
[parameter(mandatory=$false)]
[string]$Filespec = ".\*.nzb",
[parameter(mandatory=$true)]
[string]$Pattern
)
$FileInfo = Get-ChildItem -Recurse $Filespec | Where-Object { Select-String $Pattern $_ -Quiet }
if([string]::IsNullOrEmpty($FileInfo) -eq $false) {
$RetValue = $FileInfo.Name.Remove($FileInfo.Name.LastIndexOf('.'))
} else {
$RetValue = $null
}
$RetValue
}
$MkvFilesSpec = $MKV_PATH+$MKV_SPEC
$NzbFilesSpec = $NZB_PATH+$NZB_SPEC
$MkvFiles = Get-ChildItem -Path $MkvFilesSpec
foreach($File in $MkvFiles) {
$FoundFileName = $null
$ParentFilePath = Convert-Path($File.PSParentPath)
$OriginalFileName = $File.Basename
$FoundFileName = Get-Filename -Filespec $NzbFilesSpec -Pattern $OriginalFileName
if([string]::IsNullOrEmpty($FoundFileName) -eq $false) {
[string]$NewFileName = $ParentFilePath+"\"+$FoundFileName+$File.Extension
$NewFileName
$File.MoveTo($NewFileName)
}
}
-END-
Re: Newsleecher V8 Beta Release - Timeline
I just renewed so hopefully there will be update.
Re: Newsleecher V8 Beta Release - Timeline
That's great but for us neophytes how do I use the script?
Argonaute wrote: ↑Wed Feb 06, 2019 5:40 pmFor those who are using Newsleecher v7 with a product like NZBdrone, you can use the following powershell script to unobfuscate the downloaded files.
You must configure Newsleecher to copy and keep the nzb files to a protected location and the folders variables, and perhaps the files extensions, in the header of the script :
-BEGIN-
$ROOT_PATH="D:\DOWN\"
$MKV_PATH=$ROOT_PATH+"Extractions\"
$NZB_PATH=$ROOT_PATH+"Imported\"
$MKV_SPEC="*.mkv"
$NZB_SPEC="*.nzb"
function Get-Filename
{
Param(
[parameter(mandatory=$false)]
[string]$Filespec = ".\*.nzb",
[parameter(mandatory=$true)]
[string]$Pattern
)
$FileInfo = Get-ChildItem -Recurse $Filespec | Where-Object { Select-String $Pattern $_ -Quiet }
if([string]::IsNullOrEmpty($FileInfo) -eq $false) {
$RetValue = $FileInfo.Name.Remove($FileInfo.Name.LastIndexOf('.'))
} else {
$RetValue = $null
}
$RetValue
}
$MkvFilesSpec = $MKV_PATH+$MKV_SPEC
$NzbFilesSpec = $NZB_PATH+$NZB_SPEC
$MkvFiles = Get-ChildItem -Path $MkvFilesSpec
foreach($File in $MkvFiles) {
$FoundFileName = $null
$ParentFilePath = Convert-Path($File.PSParentPath)
$OriginalFileName = $File.Basename
$FoundFileName = Get-Filename -Filespec $NzbFilesSpec -Pattern $OriginalFileName
if([string]::IsNullOrEmpty($FoundFileName) -eq $false) {
[string]$NewFileName = $ParentFilePath+"\"+$FoundFileName+$File.Extension
$NewFileName
$File.MoveTo($NewFileName)
}
}
-END-