* cosmetics
This commit is contained in:
parent
39b6d93940
commit
cdfafe0337
|
@ -110,7 +110,7 @@ class RenameListCellRenderer extends DefaultFancyListCellRenderer {
|
||||||
setText(isSelected || matchProbablity < 1 ? formatPath(path) : colorizePath(path, true));
|
setText(isSelected || matchProbablity < 1 ? formatPath(path) : colorizePath(path, true));
|
||||||
|
|
||||||
String ext = getExtension(path);
|
String ext = getExtension(path);
|
||||||
typeRenderer.setText(ext != null ? ext.toLowerCase() : "NO EXTENSION");
|
typeRenderer.setText(ext != null ? ext.toLowerCase() : "MISSING EXTENSION");
|
||||||
if (file.isDirectory()) {
|
if (file.isDirectory()) {
|
||||||
typeRenderer.setText("Folder");
|
typeRenderer.setText("Folder");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1392,6 +1392,7 @@ TCPA
|
||||||
TDF
|
TDF
|
||||||
tdl
|
tdl
|
||||||
TDR
|
TDR
|
||||||
|
TEAM-KAI
|
||||||
TeamRV
|
TeamRV
|
||||||
TeGijA
|
TeGijA
|
||||||
TEKATE
|
TEKATE
|
||||||
|
|
|
@ -43,7 +43,7 @@ if ($mode != 's') {
|
||||||
</form>
|
</form>
|
||||||
<img src="images/money.png" style="float:left; margin:5px 10px 5px 5px; width:48px; height:48px" />
|
<img src="images/money.png" style="float:left; margin:5px 10px 5px 5px; width:48px; height:48px" />
|
||||||
<p style="margin: 13px 20px">
|
<p style="margin: 13px 20px">
|
||||||
Shutter at the thought of how many hours and days of time FileBot has saved you?
|
Shudder at the thought of how many hours and days of time FileBot has saved you?
|
||||||
You can show your appreciation and <b>support for future development</b> by donating.
|
You can show your appreciation and <b>support for future development</b> by donating.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@ args.each{ _log.fine("Argument: $it") }
|
||||||
args.findAll{ !it.exists() }.each{ throw new Exception("File not found: $it") }
|
args.findAll{ !it.exists() }.each{ throw new Exception("File not found: $it") }
|
||||||
|
|
||||||
// check user-defined pre-condition
|
// check user-defined pre-condition
|
||||||
if (tryQuietly{ ut_state != ut_state_allow }) {
|
if (tryQuietly{ ut_state ==~ ut_state_allow }) {
|
||||||
throw new Exception("Invalid state: ut_state = $ut_state (expected $ut_state_allow)")
|
throw new Exception("Invalid state: ut_state = $ut_state (expected $ut_state_allow)")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue