Skip to content

Commit 403d801

Browse files
authored
Merge pull request #202 from HaveAGitGat/dev
1.108
2 parents 3926f0e + 75922ca commit 403d801

File tree

9 files changed

+216
-302
lines changed

9 files changed

+216
-302
lines changed

imports/ui/App.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import TabPlugins from './plugins/tab_Plugins.jsx';
2222
import TabSearch from './tab_Search.jsx';
2323
import TabTranscoding from './transcoding/tab_Transcoding.jsx';
2424
import TabBackups from './tab_Backups.jsx';
25-
import TabHire from './tab_Hire.jsx';
2625

2726
const tabs = [
2827
{path: '/tdarr/', text: 'Tdarr', component: TabTranscoding},
@@ -34,7 +33,6 @@ const tabs = [
3433
{path: '/logs/', text: 'Logs', component: TabLog},
3534
{path: '/help/', text: 'Help', component: TabHelp},
3635
{path: '/backups/', text: 'Backups', component: TabBackups},
37-
{path: '/hire/', text: 'Hire', component: TabHire},
3836
{path: '/', text: 'Dev', component: TabDev},
3937

4038
];
@@ -47,7 +45,7 @@ export default AppRouter = () => {
4745

4846
const [currentVersion, setVersion] = React.useState('');
4947

50-
const [newVersion, setNewVersion] = React.useState(1.107);
48+
const [newVersion, setNewVersion] = React.useState(1.108);
5149

5250

5351

imports/ui/libraries/tab_Libraries.jsx

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,28 @@ class App extends Component {
8686
expanded:true,
8787
navItemSelected:"navSourceFolder",
8888
pluginID:'',
89-
pluginIDs:[{
89+
pluginIDs:[
90+
{
9091
_id:"Tdarr_Plugin_lmg1_Reorder_Streams",
9192
checked:true,
9293
source:"Community",
9394
priority:0,
94-
}],
95+
},
96+
{
97+
_id:"Tdarr_Plugin_MC93_Migz1FFMPEG_CPU",
98+
checked:true,
99+
source:"Community",
100+
priority:1,
101+
},
102+
{
103+
_id:"Tdarr_Plugin_MC93_Migz1FFMPEG",
104+
checked:false,
105+
source:"Community",
106+
priority:2,
107+
},
108+
109+
110+
],
95111
pluginValid:false,
96112
pluginCommunity:true,
97113
handbrake:true,

imports/ui/styles/main.scss

Lines changed: 36 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -440,42 +440,63 @@ input[type="text"]
440440
justify-content: center;
441441
}
442442

443+
444+
.workerContainer{
445+
display: 'inline-block';
446+
border-radius: 5px;
447+
width:400px;
448+
margin:1em;
449+
}
450+
451+
452+
.workerContainerItems{
453+
padding:1em 2em;
454+
455+
}
456+
443457
.workerItemsGrid{
444458
display: grid;
445459
grid-template-columns: repeat(4, 1fr);
446-
margin:1em;
460+
text-align: left;
461+
447462
}
448463

449-
.workerContainer{
450-
display: 'inline-block';
464+
.workerDetailsGrid{
465+
display: grid;
466+
grid-template-columns: repeat(2, 1fr);
467+
text-align: left;
451468

452-
border-radius: 5px;
453-
width:400px;
454469
}
455470

471+
.workerGrid-item {
472+
473+
margin: 0 1em;
474+
padding: 0 0 0 0;
475+
}
476+
477+
table.workerDetailTable td {
478+
color: black;
479+
}
480+
481+
.workerBreakLine{
482+
word-break: break-all;
483+
}
484+
485+
456486
.borderStyleGeneral{
457487
border: 2px solid black;
458488
border-radius: 5px;
459489
background-color:#373737;
460-
margin:1em;
461-
padding:1em;
462-
463490
}
464491
.borderStyleTranscode{
465492
border: 2px solid #66ccff;
466493
border-radius: 5px;
467494
background-color:#373737;
468-
margin:1em;
469-
padding:1em;
470-
471495
}
472496
.borderStyleHealthCheck{
473497
border: 2px solid #4CAF50;
474498
border-radius: 5px;
475-
background-color:#373737;
476-
margin:1em;
477-
padding:1em;
478-
499+
background-color:#373737;
479500
}
480501

481502

@@ -1304,14 +1325,7 @@ table.scheduleTable tr:hover {
13041325
}
13051326
}
13061327

1307-
table.workerDetailTable td {
13081328

1309-
1310-
color: black;
1311-
vertical-align: text-top;
1312-
1313-
1314-
}
13151329

13161330
.introText{
13171331

imports/ui/tab_Dev.jsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,26 @@ export default class App extends Component {
123123

124124
<LatestDevNotes />
125125

126+
<p> Beta v1.107 release [4th April 2020]:
127+
128+
<br />Changes:
129+
130+
<br />-[New] tdarr_aio ffmpeg updated to 4.2.2 with libaom enabled
131+
<br />-[New] Small UI changes and help info updates
132+
<br />-[New] Folder watch: Option to use file system events (FSE) instead of polling (try if polling causes high CPU/disk IO). FSE may not work with all drives/shares.
133+
<br />-[New] HandBrake and FFmpeg binary paths passed to plugins
134+
<br />-[Improvement] Error shown if problem with reading plugin
135+
<br />-[Improvement] New files appended with '.partial' while copying to source to prevent app/services scanning temp file
136+
<br />-[Improvement] Logs saved to txt file (inside Tdarr/Logs) instead of DB
137+
<br />-[Fix] Detect if files are replaced with file of same file name+extension
138+
<br />-[Fix] Limit transcode error logs to 200 lines (Sometimes 70,000+ lines which causes DB issues)
139+
<br />-[Fix] Info log added for post-processing plugins
140+
<br />-[Fix] Prevent corrupt item causing whole backup restore process to stop
141+
<br />
142+
<br />
143+
144+
</p>
145+
126146
<p> Beta v1.106 release [20th March 2020]:
127147

128148
<br />Changes:

imports/ui/tab_Dev_latest.jsx

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,15 @@ export default class App extends Component {
2929

3030
<div>
3131

32-
<p> Beta v1.107 release [4th April 2020]:
32+
<p> Beta v1.108 release [18th April 2020]:
3333

3434
<br />Changes:
3535

36-
<br />-[New] tdarr_aio ffmpeg updated to 4.2.2 with libaom enabled
37-
<br />-[New] Small UI changes and help info updates
38-
<br />-[New] Folder watch: Option to use file system events (FSE) instead of polling (try if polling causes high CPU/disk IO). FSE may not work with all drives/shares.
39-
<br />-[New] HandBrake and FFmpeg binary paths passed to plugins
40-
<br />-[Improvement] Error shown if problem with reading plugin
41-
<br />-[Improvement] New files appended with '.partial' while copying to source to prevent app/services scanning temp file
42-
<br />-[Improvement] Logs saved to txt file (inside Tdarr/Logs) instead of DB
43-
<br />-[Fix] Detect if files are replaced with file of same file name+extension
44-
<br />-[Fix] Limit transcode error logs to 200 lines (Sometimes 70,000+ lines which causes DB issues)
45-
<br />-[Fix] Info log added for post-processing plugins
46-
<br />-[Fix] Prevent corrupt item causing whole backup restore process to stop
36+
<br />-[New] Add default plugins to new libraries
37+
<br />-[Improvement] Check other properties to calculate bitrate
38+
<br />-[Improvement] Reduce worker spawn rate
39+
<br />-[Improvement] Change process priority from "Below normal" to "Low" when switch enabled (Win)
40+
<br />-[Fix] Prevent folder watcher re-adding already scanned files
4741
<br />
4842
<br />
4943

imports/ui/tab_Hire.jsx

Lines changed: 0 additions & 92 deletions
This file was deleted.

0 commit comments

Comments
 (0)