forked from Github/Axter-Stash
1.1.4
Fixed Docker issue when displaying report on Docker having port forwarding configured.
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -2,10 +2,10 @@
|
|||||||
name: DupFileManager
|
name: DupFileManager
|
||||||
metadata:
|
metadata:
|
||||||
description: Manages duplicate files.
|
description: Manages duplicate files.
|
||||||
version: 1.1.3
|
version: 1.1.4
|
||||||
date: 2024-12-26 13:30:00
|
date: 2024-12-26 13:30:00
|
||||||
path: DupFileManager.zip
|
path: DupFileManager.zip
|
||||||
sha256: f1eb1ae42ebe02e2e320814b5c08cfd2ddb041d63ccc140ff68fdcf1b1849612
|
sha256: 54d9c8ca33bab0eaaa3eec695f0da47817c1adb02629c7818054423acdc93990
|
||||||
|
|
||||||
- id: filemonitor
|
- id: filemonitor
|
||||||
name: FileMonitor
|
name: FileMonitor
|
||||||
|
|||||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
name: DupFileManager
|
name: DupFileManager
|
||||||
description: Manages duplicate files.
|
description: Manages duplicate files.
|
||||||
version: 1.1.3
|
version: 1.1.4
|
||||||
url: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager
|
url: https://github.com/David-Maisonave/Axter-Stash/tree/main/plugins/DupFileManager
|
||||||
ui:
|
ui:
|
||||||
# css:
|
# css:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# DupFileManager: Ver 1.1.3 (By David Maisonave)
|
# DupFileManager: Ver 1.1.4 (By David Maisonave)
|
||||||
|
|
||||||
DupFileManager is a [Stash](https://github.com/stashapp/stash) plugin which manages duplicate files in the Stash system.
|
DupFileManager is a [Stash](https://github.com/stashapp/stash) plugin which manages duplicate files in the Stash system.
|
||||||
It has both **task** and **tools-UI** components.
|
It has both **task** and **tools-UI** components.
|
||||||
|
|||||||
@@ -74,6 +74,7 @@ class PluginDupFileManager extends StashPlugin{
|
|||||||
}
|
}
|
||||||
GetFile(Mode = "getReport") {
|
GetFile(Mode = "getReport") {
|
||||||
var results = this.RunPluginOperation({ "Target" : this.PageNo, "mode":Mode});
|
var results = this.RunPluginOperation({ "Target" : this.PageNo, "mode":Mode});
|
||||||
|
results = results.replace("var GraphQl_URL = ", "var OrigGQL_URL = ");
|
||||||
const strResults = JSON.stringify(results);
|
const strResults = JSON.stringify(results);
|
||||||
if (strResults.indexOf("INF: 'Error: Nothing to do!!!") > -1){
|
if (strResults.indexOf("INF: 'Error: Nothing to do!!!") > -1){
|
||||||
console.log("Ajax failed for function " + Mode +" and page " + this.PageNo + " with results = " + JSON.stringify(results));
|
console.log("Ajax failed for function " + Mode +" and page " + this.PageNo + " with results = " + JSON.stringify(results));
|
||||||
@@ -86,11 +87,9 @@ class PluginDupFileManager extends StashPlugin{
|
|||||||
|
|
||||||
var plugindupfilemanager = new PluginDupFileManager();
|
var plugindupfilemanager = new PluginDupFileManager();
|
||||||
const html = plugindupfilemanager.GetFile();
|
const html = plugindupfilemanager.GetFile();
|
||||||
|
var GraphQl_URL = plugindupfilemanager.GraphQl_URL;
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
$( "#report" ).append( html );
|
$( "#report" ).append( html );
|
||||||
//$( "#top_report_menu" ).remove();
|
|
||||||
//$( ".ID_NextPage_Top" ).remove();
|
|
||||||
//$( ".ID_NextPage_Bottom" ).remove();
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
@@ -103,5 +103,7 @@
|
|||||||
- On Stash installation using passwords or non-standard URL, the file.html link should be accessed from the advance menu or from the Stash->Tools->[DupFileManager Report Menu].
|
- On Stash installation using passwords or non-standard URL, the file.html link should be accessed from the advance menu or from the Stash->Tools->[DupFileManager Report Menu].
|
||||||
- Added fields remoteReportDirURL and js_DirURL to allow users to setup their own private or alternate remote path for javascript files.
|
- Added fields remoteReportDirURL and js_DirURL to allow users to setup their own private or alternate remote path for javascript files.
|
||||||
- On Stash installations having password, the Advance Menu can now be accessed from the Stash->Tools->[DupFileManager Report Menu].
|
- On Stash installations having password, the Advance Menu can now be accessed from the Stash->Tools->[DupFileManager Report Menu].
|
||||||
|
### 1.1.4
|
||||||
|
- Fixed Docker issue when displaying report on Docker having port forwarding configured.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user