Skip to content

Commit

Permalink
Merge pull request #202 from HaveAGitGat/dev
Browse files Browse the repository at this point in the history
1.108
  • Loading branch information
HaveAGitGat authored Apr 18, 2020
2 parents 3926f0e + 75922ca commit 403d801
Show file tree
Hide file tree
Showing 9 changed files with 216 additions and 302 deletions.
4 changes: 1 addition & 3 deletions imports/ui/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import TabPlugins from './plugins/tab_Plugins.jsx';
import TabSearch from './tab_Search.jsx';
import TabTranscoding from './transcoding/tab_Transcoding.jsx';
import TabBackups from './tab_Backups.jsx';
import TabHire from './tab_Hire.jsx';

const tabs = [
{path: '/tdarr/', text: 'Tdarr', component: TabTranscoding},
Expand All @@ -34,7 +33,6 @@ const tabs = [
{path: '/logs/', text: 'Logs', component: TabLog},
{path: '/help/', text: 'Help', component: TabHelp},
{path: '/backups/', text: 'Backups', component: TabBackups},
{path: '/hire/', text: 'Hire', component: TabHire},
{path: '/', text: 'Dev', component: TabDev},

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

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

const [newVersion, setNewVersion] = React.useState(1.107);
const [newVersion, setNewVersion] = React.useState(1.108);



Expand Down
20 changes: 18 additions & 2 deletions imports/ui/libraries/tab_Libraries.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,28 @@ class App extends Component {
expanded:true,
navItemSelected:"navSourceFolder",
pluginID:'',
pluginIDs:[{
pluginIDs:[
{
_id:"Tdarr_Plugin_lmg1_Reorder_Streams",
checked:true,
source:"Community",
priority:0,
}],
},
{
_id:"Tdarr_Plugin_MC93_Migz1FFMPEG_CPU",
checked:true,
source:"Community",
priority:1,
},
{
_id:"Tdarr_Plugin_MC93_Migz1FFMPEG",
checked:false,
source:"Community",
priority:2,
},


],
pluginValid:false,
pluginCommunity:true,
handbrake:true,
Expand Down
58 changes: 36 additions & 22 deletions imports/ui/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -440,42 +440,63 @@ input[type="text"]
justify-content: center;
}


.workerContainer{
display: 'inline-block';
border-radius: 5px;
width:400px;
margin:1em;
}


.workerContainerItems{
padding:1em 2em;

}

.workerItemsGrid{
display: grid;
grid-template-columns: repeat(4, 1fr);
margin:1em;
text-align: left;

}

.workerContainer{
display: 'inline-block';
.workerDetailsGrid{
display: grid;
grid-template-columns: repeat(2, 1fr);
text-align: left;

border-radius: 5px;
width:400px;
}

.workerGrid-item {

margin: 0 1em;
padding: 0 0 0 0;
}

table.workerDetailTable td {
color: black;
}

.workerBreakLine{
word-break: break-all;
}


.borderStyleGeneral{
border: 2px solid black;
border-radius: 5px;
background-color:#373737;
margin:1em;
padding:1em;

}
.borderStyleTranscode{
border: 2px solid #66ccff;
border-radius: 5px;
background-color:#373737;
margin:1em;
padding:1em;

}
.borderStyleHealthCheck{
border: 2px solid #4CAF50;
border-radius: 5px;
background-color:#373737;
margin:1em;
padding:1em;

background-color:#373737;
}


Expand Down Expand Up @@ -1304,14 +1325,7 @@ table.scheduleTable tr:hover {
}
}

table.workerDetailTable td {


color: black;
vertical-align: text-top;


}

.introText{

Expand Down
20 changes: 20 additions & 0 deletions imports/ui/tab_Dev.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,26 @@ export default class App extends Component {

<LatestDevNotes />

<p> Beta v1.107 release [4th April 2020]:

<br />Changes:

<br />-[New] tdarr_aio ffmpeg updated to 4.2.2 with libaom enabled
<br />-[New] Small UI changes and help info updates
<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.
<br />-[New] HandBrake and FFmpeg binary paths passed to plugins
<br />-[Improvement] Error shown if problem with reading plugin
<br />-[Improvement] New files appended with '.partial' while copying to source to prevent app/services scanning temp file
<br />-[Improvement] Logs saved to txt file (inside Tdarr/Logs) instead of DB
<br />-[Fix] Detect if files are replaced with file of same file name+extension
<br />-[Fix] Limit transcode error logs to 200 lines (Sometimes 70,000+ lines which causes DB issues)
<br />-[Fix] Info log added for post-processing plugins
<br />-[Fix] Prevent corrupt item causing whole backup restore process to stop
<br />
<br />

</p>

<p> Beta v1.106 release [20th March 2020]:

<br />Changes:
Expand Down
18 changes: 6 additions & 12 deletions imports/ui/tab_Dev_latest.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,15 @@ export default class App extends Component {

<div>

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

<br />Changes:

<br />-[New] tdarr_aio ffmpeg updated to 4.2.2 with libaom enabled
<br />-[New] Small UI changes and help info updates
<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.
<br />-[New] HandBrake and FFmpeg binary paths passed to plugins
<br />-[Improvement] Error shown if problem with reading plugin
<br />-[Improvement] New files appended with '.partial' while copying to source to prevent app/services scanning temp file
<br />-[Improvement] Logs saved to txt file (inside Tdarr/Logs) instead of DB
<br />-[Fix] Detect if files are replaced with file of same file name+extension
<br />-[Fix] Limit transcode error logs to 200 lines (Sometimes 70,000+ lines which causes DB issues)
<br />-[Fix] Info log added for post-processing plugins
<br />-[Fix] Prevent corrupt item causing whole backup restore process to stop
<br />-[New] Add default plugins to new libraries
<br />-[Improvement] Check other properties to calculate bitrate
<br />-[Improvement] Reduce worker spawn rate
<br />-[Improvement] Change process priority from "Below normal" to "Low" when switch enabled (Win)
<br />-[Fix] Prevent folder watcher re-adding already scanned files
<br />
<br />

Expand Down
92 changes: 0 additions & 92 deletions imports/ui/tab_Hire.jsx

This file was deleted.

Loading

0 comments on commit 403d801

Please sign in to comment.