diff --git a/aegisub/bitmaps/kanji_timer.bmp b/aegisub/bitmaps/kanji_timer.bmp new file mode 100644 index 000000000..3ccad7a95 Binary files /dev/null and b/aegisub/bitmaps/kanji_timer.bmp differ diff --git a/aegisub/changelog.txt b/aegisub/changelog.txt index e38719afb..7ed8a4177 100644 --- a/aegisub/changelog.txt +++ b/aegisub/changelog.txt @@ -88,7 +88,6 @@ Please visit http://aegisub.net to download latest version - Various fixes to better handle paths/file names with non-ANSI characters on Windows (jfs/AMZ) - Misc. fixes for building on Linux (Azzy, equinox, jfs) - libass support for subtitles on UNIX (Azzy) -- Redesigned the FexTracker configuration window (jfs) - Framegrabs from the video now also includes framenumber in the filename (jfs) - Added an option to automatically save the files whenever you change anything. (AMZ) - Added global hotkey for Video Play (default Ctrl+P). (AMZ) @@ -129,7 +128,7 @@ Please visit http://aegisub.net to download latest version - Commiting text now commits times as well. (AMZ) - Fixed display of end frames on the subtitles grid, when set to frame mode. (demi) - Treat comments inside {}'s as plain text, not as overrides; Also, don't assume override blocks start with a backslash, even if they probably should (Dansolo) -- Removed FexTracker due to licensing problems; there are plans to implement a new motion tracker in its place +- Removed FexTracker due to licensing problems; there are plans to implement a new motion tracker in its place (jfs) = 1.10 beta - 2006.08.07 =========================== diff --git a/aegisub/frame_main.cpp b/aegisub/frame_main.cpp index af8abefed..aeaf22292 100644 --- a/aegisub/frame_main.cpp +++ b/aegisub/frame_main.cpp @@ -311,7 +311,7 @@ void FrameMain::InitMenu() { subtitlesMenu->Append(InsertParent); AppendBitmapMenuItem(subtitlesMenu,MENU_DUPLICATE,wxString(_("&Duplicate Lines")) + _T("\t") + Hotkeys.GetText(_T("Grid duplicate rows")),_("Duplicate the selected lines"),wxBITMAP(blank_button)); AppendBitmapMenuItem(subtitlesMenu,MENU_DUPLICATE_NEXT_FRAME,wxString(_("&Duplicate and shift by 1 frame")) + _T("\t") + Hotkeys.GetText(_T("Grid duplicate and shift one frame")),_("Duplicate lines and shift by one frame"),wxBITMAP(blank_button)); - AppendBitmapMenuItem(subtitlesMenu,MENU_DELETE,wxString(_("Delete Lines")) + _T("\t") + Hotkeys.GetText(_T("Grid delete rows")),_("Delete currently selected lines"),wxBITMAP(blank_button)); + AppendBitmapMenuItem(subtitlesMenu,MENU_DELETE,wxString(_("Delete Lines")) + _T("\t") + Hotkeys.GetText(_T("Grid delete rows")),_("Delete currently selected lines"),wxBITMAP(delete_button)); subtitlesMenu->AppendSeparator(); wxMenu *JoinMenu = new wxMenu; wxMenuItem *JoinParent = new wxMenuItem(subtitlesMenu,Menu_Subtitles_Join,_("Join Lines"),_T(""),wxITEM_NORMAL,JoinMenu); @@ -339,7 +339,7 @@ void FrameMain::InitMenu() { AppendBitmapMenuItem(timingMenu,Menu_Edit_Shift, _("S&hift Times...") + wxString(_T("\t")) + Hotkeys.GetText(_T("Shift times")), _("Shift subtitles by time or frames"),wxBITMAP(shift_times_toolbutton)); AppendBitmapMenuItem(timingMenu,Menu_Edit_Sort, _("Sort by Time"), _("Sort all subtitles by their start times"),wxBITMAP(sort_times_button)); AppendBitmapMenuItem(timingMenu,Menu_Tools_Timing_Processor,_("Timing Post-Processor..."), _("Runs a post-processor for timing to deal with lead-ins, lead-outs, scene timing and etc."), wxBITMAP(timing_processor_toolbutton)); - AppendBitmapMenuItem (timingMenu,Menu_Tools_Kanji_Timer,_("Kanji Timer..."),_("Open Kanji timer"),wxBITMAP(blank_button)); + AppendBitmapMenuItem (timingMenu,Menu_Tools_Kanji_Timer,_("Kanji Timer..."),_("Open Kanji timer"),wxBITMAP(kanji_timer_button)); timingMenu->AppendSeparator(); AppendBitmapMenuItem(timingMenu,Menu_Subs_Snap_Start_To_Video, _("Snap Start to Video") + wxString(_T("\t")) + Hotkeys.GetText(_T("Set Start To Video")), _("Set start of selected subtitles to current video frame"), wxBITMAP(substart_to_video)); AppendBitmapMenuItem(timingMenu,Menu_Subs_Snap_End_To_Video, _("Snap End to Video") + wxString(_T("\t")) + Hotkeys.GetText(_T("Set End to Video")), _("Set end of selected subtitles to current video frame"), wxBITMAP(subend_to_video)); diff --git a/aegisub/res.rc b/aegisub/res.rc index 7ec459198..70d7887c4 100644 --- a/aegisub/res.rc +++ b/aegisub/res.rc @@ -83,6 +83,7 @@ forums_button BITMAP "bitmaps/forums.bmp" about_button BITMAP "bitmaps/about.bmp" exit_button BITMAP "bitmaps/exit.bmp" sort_times_button BITMAP "bitmaps/sort_times.bmp" +kanji_timer_button BITMAP "bitmaps/kanji_timer.bmp" button_play BITMAP "bitmaps/button_play.bmp" button_stop BITMAP "bitmaps/button_stop.bmp"