Thomas Goyne
1a8fbf35f1
Improve lua stack trace display
2013-09-21 11:22:58 -07:00
Thomas Goyne
8fade74026
Actually trim whitespace when combining lines
...
regex_replace does not mutate the string in place.
2013-09-21 11:21:25 -07:00
Thomas Goyne
e315ceb236
Print the stack trace on lua errors
2013-09-21 09:44:44 -07:00
Thomas Goyne
d81e2f45ac
Add an option to ignore whitespace for the character counter
2013-09-20 07:43:33 -07:00
Thomas Goyne
ac09590389
Devirtualize OptionValue::GetName
2013-09-20 06:51:04 -07:00
Thomas Goyne
bd88cde436
Remove agi::OptionValue::GetDefault*
...
They aren't actually used for much of anything.
2013-09-20 06:51:04 -07:00
Thomas Goyne
cb549e5aa9
Significantly speed up dragging lots of vector clip control points
2013-09-18 16:18:38 -07:00
Thomas Goyne
8d5a54ff5e
Fix crash when smoothing freehand curves
2013-09-18 15:59:01 -07:00
Thomas Goyne
6a6c983f19
Add box selection to the move mode of the vector clip tool
...
Closes #1404 .
2013-09-18 15:52:48 -07:00
Thomas Goyne
c62ebf7e8b
Use std::to_wstring rather than wxString::Format("%d", ...)
...
std::to_wstring is significantly faster and is a bit shorter.
2013-09-18 08:32:30 -07:00
Thomas Goyne
64ecd29169
Switch to using an intrusive list for the visual tool features
...
Slightly improves performance and eliminates a bunch of really clunky
passing around and storing of iterators.
2013-09-17 16:23:36 -07:00
Thomas Goyne
b4ba31fe45
Bump dependency versions
2013-09-17 09:09:57 -07:00
Thomas Goyne
6cd6ee9845
Use auto more places
2013-09-17 07:51:07 -07:00
Thomas Goyne
0d50820178
Clean up BaseGrid a little
2013-09-17 07:51:06 -07:00
Thomas Goyne
e5afaf8a45
Handle subtitle lines pasted into the edit box
...
If the text being pasted can be parsed as ASS dialogue events, then do
so even if the edit box is focused since it's rather unlikely that
the user actually wants ASS subtitle events in their subs.
2013-09-16 11:02:20 -07:00
Thomas Goyne
5787ca4ae0
Cache widths of strings in SetColumnWidths
2013-09-16 10:43:56 -07:00
Thomas Goyne
079ccc728d
Significantly speed up resizing the window with large files open
...
SetColumnWidths can take a long time to run and the only column that can
change width on resize is the last one, so only update that.
2013-09-16 10:26:41 -07:00
Thomas Goyne
bb89378b7f
Skip empty lines in the kanji timer
2013-09-16 09:43:57 -07:00
Thomas Goyne
98048c135a
Shut up clang analyzer warning
2013-09-16 08:40:27 -07:00
Thomas Goyne
e72e183f27
Remove incorrect ! in check for changed calltip position
2013-09-16 07:58:06 -07:00
Thomas Goyne
af2028e971
Pass unique_ptrs around by value
2013-09-16 06:43:17 -07:00
Thomas Goyne
40a0d8b2f7
Actually delete the lines in AssFile's destructor
2013-09-15 16:58:04 -07:00
Thomas Goyne
bfc7f56e20
Only go back one line rather than two
2013-09-15 15:37:49 -07:00
Thomas Goyne
80c9f67ce8
Rewrite the auto-matcher for the karaoke timing copier
...
Operate on characters rather than bytes in the dialog so that it
actually works with Kanji.
Rewrite the auto-matcher to handle more cases and add unit tests for it.
2013-09-15 14:52:16 -07:00
Thomas Goyne
3e3bd37a26
Switch to using Bind for DialogKanjiTimer events
2013-09-14 08:26:59 -07:00
Thomas Goyne
1d7334c129
Disable the wxGTK accelerator workaround for wx 2.9.5
...
Unsurprisingly the munging around with the menu bar implementation
details has resulted in things breaking, but fortunately the problem it
was working around (#1314 ) appears to have been fixed entirely.
Closes #1628 .
2013-09-01 13:34:53 -07:00
Thomas Goyne
2a35763a8a
Add Backspace to the table of key names. Closes #1631 .
2013-09-01 12:27:42 -07:00
Thomas Goyne
51b21576cc
Support duplicate order numbers in Matroska files
...
Such files are pretty broken, but apparently other stuff allows it.
2013-08-26 17:25:26 -07:00
Thomas Goyne
f427c4574d
Revert "Don't invert horizontal scroll on the audio display on OS X"
...
This has been fixed upstream.
2013-08-20 12:20:37 -07:00
Thomas Goyne
0b210673f9
Zoom into the mouse's position in the audio display
...
Rather than pinning the time at the center of the audio display, pin the
time at the mouse's position since that's the area the user probably
cares about. If the mouse is not over the audio display (such as if the
user is adjusting the zoom via the sliders rather than the mouse wheel),
just use the center as it used to.
2013-08-20 12:11:39 -07:00
Thomas Goyne
1f5b98b11d
Bump ffmpeg and boost versions
2013-08-19 12:51:19 -07:00
Thomas Goyne
6c5adde19a
Fix wx compilation and silence a warning when compiling wx
2013-08-19 12:51:19 -07:00
Maxime Gauduin
0a2c0ab75e
wxStandardPaths is protected as of wxgtk 2.9.5
...
Closes #1625 , #1626 , #1627 .
2013-08-18 19:14:53 -07:00
Thomas Goyne
ae9f05d876
"Allow grid to take focus" -> "Focus grid on click"
...
The grid can still be focused via the keyboard, so the previous label
was misleading.
2013-08-17 15:10:17 -07:00
Thomas Goyne
f714d60a54
Build parser.cpp first
...
Shaves a few seconds off parallel builds with 4+ cores by avoiding
having everything else finish while it's still building.
2013-08-17 15:08:58 -07:00
Thomas Goyne
b68578f1d9
Eliminate a bogus limit of 100 for a bunch of rarely-used options
2013-08-17 15:06:07 -07:00
Thomas Goyne
dd6542c143
Use ForwardMouseWheelEvent rather than checking window bounds
2013-08-14 20:09:10 -07:00
tophf
c7aba2f54a
Also forward page up/down and home/end from the video slider to the subs grid
2013-08-14 20:06:16 -07:00
tophf
51edb4caca
Add support for the scroll wheel to the video slider
2013-08-14 20:05:48 -07:00
Thomas Goyne
9eca8c5733
Correct custom labels for buttons with standard IDs
2013-08-10 07:50:07 -07:00
Thomas Goyne
92887b53cf
Fix crash when pasting styles in the styles manager
2013-08-08 20:36:12 -07:00
Thomas Goyne
106fb663c7
Eliminate a pointless roundtrip through wxString when copying styles to the clipboard
2013-08-08 20:18:12 -07:00
tophf
74fbe22afe
Honor custom labels for buttons with standard IDs
2013-08-01 20:42:01 -07:00
Thomas Goyne
52d67accb4
Fix some issues with resampling drawings
...
The X scale/offset was being used for both X and Y coordinates.
Only non-negative integers were supported. xy-VSFilter and libass both
now support non-integer coordinates, and negative coordinates have of
course always been valid. Resampled coordinates are now rounded to
eighth-pixels rather than whole pixels.
2013-07-30 20:50:31 -07:00
Thomas Goyne
13d31d17ef
Return full paths from aegisub.dialog.open rather than just filenames
2013-07-21 16:38:32 -07:00
Thomas Goyne
5ebc2032d4
Fix test compilation
2013-07-13 09:50:21 -07:00
Thomas Goyne
c4dae9e783
Support reading keyframes files from ffmpeg/avconv
2013-07-13 08:40:57 -07:00
Thomas Goyne
d0779e7ed7
Make DialogTranslation::UpdateDisplay a bit less slow
2013-07-11 20:18:41 -07:00
Thomas Goyne
b9b804ff55
Fix selection preserving in SubsTextEditCtrl::SetTextTo
...
Calling GetReverseUnicodePosition on the selection positioning after
calling SetText resulted in the conversions between UTF-8 indices and
wxString indices just being a very slow no-op.
2013-07-10 18:03:17 -07:00
Thomas Goyne
8ab163cb5a
Make GetReverseUnicodePosition less horribly awful
2013-07-10 17:43:41 -07:00