Thread: [User feedback required] Packagizer ignores package name setting
View Single Post
  #6  
Old 21.04.2021, 20:10
laxarus laxarus is offline
Modem User
 
Join Date: Aug 2020
Posts: 3
Default

Quote:
Originally Posted by Jiaz View Post
@laxarus: I could not find any recent change for Package names and the extension sets the current site name as package name (that's desired behaviour by the "download with JDownloader" extension).
package names can be set by plugins/packagizer rules or in this case, by the source/extension
Hmm, that is weird.
The ruleset is really simple, it only sets package name and download destination. It sets the download destination correctly but fails to set the package name. Instead it sets the package name as the currently focused tab name (not even the download tab name) on the firefox.

The website is e-hentai.org for gallery downloads.
The ruleset is below.
Code:
[ {
  "filetypeFilter" : {
    "enabled" : true,
    "audioFilesEnabled" : false,
    "matchType" : "IS",
    "useRegex" : false,
    "hashEnabled" : false,
    "videoFilesEnabled" : false,
    "docFilesEnabled" : false,
    "subFilesEnabled" : false,
    "exeFilesEnabled" : false,
    "archivesEnabled" : true,
    "imagesEnabled" : false,
    "customs" : null
  },
  "downloadDestination" : "X:\\Gulibu\\Downloading\\Manga",
  "originFilter" : {
    "enabled" : false,
    "matchType" : "IS",
    "origins" : [ ]
  },
  "autoExtractionEnabled" : false,
  "hosterURLFilter" : {
    "enabled" : true,
    "matchType" : "CONTAINS",
    "regex" : "hath.network",
    "useRegex" : false
  },
  "onlineStatusFilter" : {
    "enabled" : true,
    "matchType" : "IS",
    "onlineStatus" : "ONLINE"
  },
  "chunks" : 2,
  "created" : 1605819910083,
  "sourceURLFilter" : {
    "enabled" : false,
    "matchType" : "CONTAINS",
    "regex" : "",
    "useRegex" : false
  },
  "conditionFilter" : {
    "enabled" : false,
    "matchType" : "IS_TRUE",
    "conditions" : [ ]
  },
  "iconKey" : "linkgrabber",
  "testUrl" : "",
  "enabled" : true,
  "valid" : true,
  "packagenameFilter" : {
    "enabled" : false,
    "matchType" : "CONTAINS",
    "regex" : "",
    "useRegex" : false
  },
  "filenameFilter" : {
    "enabled" : false,
    "matchType" : "CONTAINS",
    "regex" : "",
    "useRegex" : false
  },
  "name" : "EH Rules (copy)",
  "matchAlwaysFilter" : {
    "enabled" : false
  },
  "packageName" : "Manga",
  "pluginStatusFilter" : {
    "enabled" : false,
    "matchType" : "IS",
    "pluginStatus" : "PREMIUM"
  },
  "filesizeFilter" : {
    "enabled" : false,
    "from" : 0,
    "matchType" : "BETWEEN",
    "to" : 0
  }
} ]
Reply With Quote