A few more fixes for pch-less compilation

Originally committed to SVN as r1263.
This commit is contained in:
Rodrigo Braz Monteiro 2007-06-19 06:04:47 +00:00
parent fd9f14573d
commit 4f4d67d7f7
5 changed files with 7 additions and 1 deletions

View File

@ -33,6 +33,8 @@
// Contact: mailto:jiifurusu@gmail.com // Contact: mailto:jiifurusu@gmail.com
// //
#include <wx/spinctrl.h>
#include <wx/tokenzr.h>
#include "auto4_auto3.h" #include "auto4_auto3.h"
#include "../auto3/auto3.h" #include "../auto3/auto3.h"
#include "options.h" #include "options.h"

View File

@ -81,10 +81,11 @@ Please visit http://aegisub.net to download latest version
o Added plain-text export (jfs) o Added plain-text export (jfs)
o Added support for reading ASS, SSA and SRT softsubs directly from Matroska files. (AMZ) o Added support for reading ASS, SSA and SRT softsubs directly from Matroska files. (AMZ)
o Fixed loading of SRT and TXT files, which were causing an empty line to appear at the start of the file. (AMZ) o Fixed loading of SRT and TXT files, which were causing an empty line to appear at the start of the file. (AMZ)
o Improved saving of SRT files. (AMZ)
o Added support for reading v4.00++ (ASS2) files. (AMZ) o Added support for reading v4.00++ (ASS2) files. (AMZ)
o Added very basic reading support for MPEG-4 Streaming Text (TTXT) subtitles. (AMZ) o Added very basic reading support for MPEG-4 Streaming Text (TTXT) subtitles. (AMZ)
o Added full read-write support for MicroDVD subtitles (the most common .sub format). (AMZ) o Added full read-write support for MicroDVD subtitles (the most common .sub format). (AMZ)
o Improved saving of SRT files. (AMZ) o Added support for writing Adobe Encore subtitles, both PAL and NTSC. (AMZ)
- Changes to main menu: - Changes to main menu:
o There are now new options, and most were moved around to have better organization. (AMZ/jfs) o There are now new options, and most were moved around to have better organization. (AMZ/jfs)
o General tweaks changes, such as better icons, and fixing of flickering and slowness. (AMZ) o General tweaks changes, such as better icons, and fixing of flickering and slowness. (AMZ)

View File

@ -43,6 +43,7 @@
/////////// ///////////
// Headers // Headers
#include <vector>
#include "dialog_kanji_timer.h" #include "dialog_kanji_timer.h"
#include "ass_file.h" #include "ass_file.h"
#include "ass_dialogue.h" #include "ass_dialogue.h"

View File

@ -44,6 +44,7 @@
#include <wx/listctrl.h> #include <wx/listctrl.h>
#include <wx/regex.h> #include <wx/regex.h>
#include <wx/checkbox.h> #include <wx/checkbox.h>
#include <vector>
#include "options.h" #include "options.h"
#include "kana_table.h" #include "kana_table.h"

View File

@ -40,6 +40,7 @@
//////////// ////////////
// Includes // Includes
#include <wx/wxprec.h> #include <wx/wxprec.h>
#include <wx/spinctrl.h>
#include "subs_edit_ctrl.h" #include "subs_edit_ctrl.h"