Skip to content

Commit

Permalink
1.67.1.08 ローカル変換時ファイル名マクロのバグ修正,表示微修正
Browse files Browse the repository at this point in the history
  • Loading branch information
orz- committed Jan 11, 2017
1 parent 93b8f6a commit 5a165c8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions frontend/src/saccubus/AutoPlay.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,10 @@ private void setPlayList(final File video) {
if(video!=null){
label.setText(video.getName());
label.setForeground(Color.blue);
label.setToolTipText(video.getName());
}else{
label.setText("");
label.setToolTipText(null);
}
label.setVisible(true);
}
Expand Down
8 changes: 5 additions & 3 deletions frontend/src/saccubus/ConvertWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,7 @@ private boolean convertOprionalThread(){
isOptionalTranslucent = false;
pathlist = detectFilelistFromOptionalThread(folder, optext);
if(pathlist == null || pathlist.isEmpty()){
sendtext(Tag + ": オプショナルスレッド・過去ログが存在しません。");
sendtext(Tag + ": ニコスコメント・過去ログが存在しません。");
log.println(gettext());
log.println("No optional thread.");
OptionalThreadFile = null;
Expand Down Expand Up @@ -1883,7 +1883,7 @@ private boolean convertOprionalThread(){
optext = NICOS_EXT;
OptionalThreadFile = Path.getReplacedExtFile(CommentFile, optext);
if(!OptionalThreadFile.exists()){
sendtext("オプショナルスレッドが存在しません。");
sendtext("ニコスコメントが存在しません。");
log.println(gettext());
log.println("No optional thread.");
OptionalThreadFile = null;
Expand Down Expand Up @@ -2206,9 +2206,11 @@ else if(convfilename.contains(Tag))
private File replaceFilenamePattern(File file, boolean economy, boolean dmc) {
String videoFilename = file.getPath();
if(VideoTitle==null){
log.println("bug! VideoTitle is Null.");
// log.println("bug! VideoTitle is Null.");
setVideoTitleIfNull(file.getName());
}
if(nicoCategory==null)
nicoCategory = "";
String canonical =
VideoTitle.replace(" ", " ").replaceAll(" +", " ").trim()
.replace(".", ".");
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/saccubus/MainFrame_AboutBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public class MainFrame_AboutBox extends JDialog implements ActionListener {

// String version = "ver1.22r(2008/04/27)";

public static final String rev = "1.67.1.07";
private static final String modefied = " (2017/01/10)";
public static final String rev = "1.67.1.08";
private static final String modefied = " (2017/01/12)";

String productHTML =
"<html>" +
Expand Down

0 comments on commit 5a165c8

Please sign in to comment.