From a98fc362d31f7045ad648cca48a5a870f6c24abd Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Sun, 17 Jun 2007 05:15:20 +0000 Subject: [PATCH] Added icon for kanji timer and enabled the 'delete line' icon Originally committed to SVN as r1232. --- aegisub/bitmaps/kanji_timer.bmp | Bin 0 -> 1318 bytes aegisub/changelog.txt | 3 +-- aegisub/frame_main.cpp | 4 ++-- aegisub/res.rc | 1 + 4 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 aegisub/bitmaps/kanji_timer.bmp diff --git a/aegisub/bitmaps/kanji_timer.bmp b/aegisub/bitmaps/kanji_timer.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3ccad7a95fcb0f9267c34b9354e84b63f92d6b4a GIT binary patch literal 1318 zcmZvbEo)p+5Qg8vmaYi2F{{=zqBMG-5W9XMCOYo?g_w#}(S<_bxQMn;QIlV=s-hXa zFu6HBpEwfj&m$YXZmws3M|GI_5 zt;J#(=$UG{Tx$7qsktvO{Y`s?d@rQe_uyON1D&)n$2c9 zI5^PaedzEo^ieCtFW2|gZ>?@_^x^9_jEvT3o#sPmXohBJmRbx;8hS%-=ncK0=eCaC z(K|s$@8}G2bVqk|M{x8Y4&v}~HhRO~NMvj>h031JU@#aA27{rHU@#aA27|$1C`=d( z27|$1Fc=CQ27|$1Fc=I53p6+k4oi-RssIXO{yNQR==sX9G|U@Djie2hDgzH2lLkwJ zrOEo z9KSl+#dIhs9xWARNQ`1YmJCI*S~^Vd18chcj_lJnK;``8DJzpurF@ z1PlQ~zz{Ih=LCbp5HJJ`4g+autcM|B2p9qeQq$032p9r}03h&pk_8)sMU5PdxWN&X zJJ&S5)@L0bAM51gM5m{xIy*bl<>jR=E-rL+b*1%st?TP+-QM2n{{CJM4-dNAgg%|0 z^FLlt-TV*aK)#AHZ-${4|6Z)npy$ARlQ-+K*Je}kcDjwXkA~%s%W@OzxpH61nPkYG mdbtewEBWKbVN$Mt{fYuTuk0&rrl?8fuV+vB%kAmyw&5QRp1xrK literal 0 HcmV?d00001 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"