Commit Graph

17849 Commits

Author SHA1 Message Date
niksedk
81349967dd Fix for crash in Batch convert - thx pcspeak :)
Fix #7241
2023-08-15 22:30:08 +02:00
niksedk
6a80c278a3 Minor refact 2023-08-15 19:32:38 +02:00
niksedk
b3bd422260 Testing for CUDA - thx Purfview :)
See https://github.com/Purfview/whisper-standalone-win/issues/58#issuecomment-1679221536
2023-08-15 19:14:02 +02:00
niksedk
50f6fe1925 Draw file association image in dark mode 2023-08-15 18:11:28 +02:00
niksedk
580b15a37e Update Korean translation - thx domddol :) 2023-08-15 17:19:36 +02:00
Nikolaj Olsson
13598aba6c
Merge pull request #7240 from hugok79/patch-103
Update pt-PT.xml
2023-08-15 11:04:32 -04:00
Nikolaj Olsson
9b21ecc0c2
Merge pull request #7239 from bovirus/main
Update italian language
2023-08-15 11:03:46 -04:00
Nikolaj Olsson
deafd47829
Merge pull request #7107 from PMitsakis/main
Translation update
2023-08-15 11:03:22 -04:00
Nikolaj Olsson
be66b55650
Merge pull request #7103 from nkh0472/patch-90
Update zh-Hans.xml
2023-08-15 11:02:47 -04:00
Hugo Carvalho
383431681d
Update pt-PT.xml 2023-08-15 15:55:58 +01:00
Hugo Carvalho
5a95c66b31
Update pt-PT.xml
For commit: 3db6b1e8fb
2023-08-15 15:50:58 +01:00
bovirus
a563f0f8d1
Update italian language 2023-08-15 16:41:06 +02:00
niksedk
1e3d18f8c3 Update msg box res icons 2023-08-15 15:36:05 +02:00
niksedk
da7fb8c18a Fix close result - thx forapreder :)
Fix #7237
2023-08-15 15:03:30 +02:00
niksedk
3db6b1e8fb Update nuget 2023-08-15 14:46:31 +02:00
niksedk
5d1597c6e0 Add Faster Whisper CUDA libs download - thx Perfview :)
See https://github.com/Purfview/whisper-standalone-win/issues/58#issuecomment-1678479859
2023-08-15 13:47:11 +02:00
niksedk
35b2a21d17 Work on #7222 2023-08-14 20:36:16 +02:00
niksedk
d4c8d13205 Fix ASSA change resolution for inline margins - thx Nagutos :)
Working on #7225
2023-08-14 16:15:42 +02:00
niksedk
d6d46b9bca Minor UI/dark theme stuff 2023-08-14 14:43:45 +02:00
niksedk
55346e86b7 Improve check 2023-08-13 20:42:35 +02:00
niksedk
ed75e62a93 Add word + fix typo 2023-08-13 20:37:41 +02:00
niksedk
25679779fc Update Purview Whisper-Faster r145.1 2023-08-13 19:57:55 +02:00
niksedk
40d14db375 Minor UI fix 2023-08-13 16:27:36 +02:00
niksedk
81f580d534 Minor UI stuff 2023-08-13 16:17:55 +02:00
Ivandro Jao
b4b3be0f6e Refactor HTML diff generation into separate class
This change extracts HTML diff generation into its own class, HtmlDiffGenerator, from FixCommonErrors form. The main reason for this is to improve code modularity and maintainability. Additionally, it helps to maintain the single responsibility principle by separating the error fixing and HTML diff generation concerns. Now, HTML diff generation is more reusable and testable on its own.
2023-08-13 09:49:10 +01:00
nkh0472
24272c1163
Update zh-Hans.xml 2023-08-13 15:17:12 +08:00
niksedk
739494c0e6 Minor fixes for tab-stop/focus 2023-08-13 07:58:10 +02:00
Ivandro Jao
76226e7dc8 Fix language check in AdvancedTextBox
An error was noticed in the language check within AdvancedTextBox.cs where it was checking for "en " (with an extra whitespace) which always returned false and thus the condition inside never executed. This commit removes the unwanted whitespace to fix the condition check for English language ("en").
2023-08-12 22:02:59 +01:00
Ivandro Jao
273210dd33 Refactor LoadDictionariesAsync method in AdvancedTextBox
Modified the LoadDictionariesAsync method to directly return a new Task. This eliminates the need for async/await and simplifies code while maintaining functionality.
2023-08-12 22:02:59 +01:00
Ivandro Jao
08fb6dca6c Refactor dictionary availability check in AdvancedTextBox
Extracted the logic checking dictionary availability into a separate method "IsDictionaryAvailable". This aims to improve code readability and modularity, thereby promoting better maintainability. Instead of having the logic embedded in the InitializeLiveSpellCheck method, it's now in its own method that can be used elsewhere if needed.
2023-08-12 22:02:59 +01:00
niksedk
e1690ff3e7 Minor UI fixes 2023-08-12 21:32:08 +02:00
niksedk
9f4340dbfa Minor UI fixes 2023-08-12 21:09:45 +02:00
niksedk
04f8d66e29 Minor UI fixes 2023-08-12 20:42:55 +02:00
Ivandro Jao
c0a11d02e4 "Refactor WebVTT subtitle format handling code
This commit streamlines the treatment of extra spaces and number identification within the WebVTT subtitle format handling implementation. The function `RemoveWeirdRepeatingHeader` now utilizes the more efficient `FixExtraSpaces` method. The number identification in the loop has been modified to use `IsDigit` from the `CharUtils` class for better readability and consistency across the code base."
2023-08-12 18:17:28 +01:00
Ivandro Jao
c206ee7bb5 Optimize line break removal in WebVTT format
Removed a loop that repeatedly checked for and removed consecutive line breaks from a text string in the WebVTT subtitle format implementation. This was replaced with a single function call to `RemoveRecursiveLineBreaks()`, which improves code readability and computational efficiency.
2023-08-12 18:15:31 +01:00
Ivandro Jao
a4219d2a10 Optimize WebVTT subtitles header generation.
The change ensures that the "WEBVTT" title line is always followed by a newline, regardless of whether the subtitle header is present or not. This guarantees correct formatting adhering to WebVTT subtitle spec rules.
2023-08-12 18:14:26 +01:00
niksedk
8b3db1fafb Minor UI fixes 2023-08-11 20:23:22 +02:00
niksedk
b50a509919 Minor fix for bilingual split - thx leon :)
Fix #7220
2023-08-11 17:53:49 +02:00
niksedk
d257776412 use whisper_log.tdt 2023-08-10 21:21:48 +02:00
Μητσάκης Παναγιώτης
3086af75e7
Ditto 2023-08-10 19:01:47 +03:00
niksedk
8b84d6248b Minor work on combobox 2023-08-10 17:59:01 +02:00
Μητσάκης Παναγιώτης
def3a408e6
Merge branch 'SubtitleEdit:main' into main 2023-08-10 18:56:34 +03:00
niksedk
ff262b1ea7 Work on combobox/dark-theme 2023-08-10 17:44:05 +02:00
niksedk
03b70b0fcd Minor UI fix for "Fix common errors" 2023-08-09 18:34:41 +02:00
niksedk
af8a299e1a More combobox
Fix #7228
2023-08-09 17:44:10 +02:00
niksedk
39b42b1517 Fix for new combobox - the jmaraujouy :)
Fix #7228
2023-08-09 17:31:11 +02:00
niksedk
43692374b7 Use custom msgbox 2023-08-09 16:43:45 +02:00
niksedk
1c2130a4f5 Testing msgbox 2023-08-09 06:43:37 +02:00
niksedk
37ce5d48d8 Work on dark msgbox 2023-08-08 20:20:12 +02:00
niksedk
1c354d8259 Fix typo in French translaton - thx Nagutos :)
Related to #7225
2023-08-08 20:16:04 +02:00