repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
StockSharp/StockSharp | 501 | issue_to_patch | Add GPU calculator for Percentage Volume Oscillator | ## Summary
- add GPU parameter/result types and calculator for the Percentage Volume Oscillator indicator
- implement an ILGPU kernel that computes short/long EMA values and the PVO output across candle series
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in the execution environment... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 6e355872baa259665169cf8eef7b9572e81f0a07 | diff --git a/Algo.Gpu/Indicators/GpuPercentageVolumeOscillatorCalculator.cs b/Algo.Gpu/Indicators/GpuPercentageVolumeOscillatorCalculator.cs
new file mode 100644
index 0000000000..2d8e612b5b
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPercentageVolumeOscillatorCalculator.cs
@@ -0,0 +1,341 @@
+namespace StockSharp.Algo.G... | [
"Algo.Gpu/Indicators/GpuPercentageVolumeOscillatorCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 502 | issue_to_patch | Add GPU calculator for PercentagePriceOscillatorSignal | ## Summary
- add GPU parameter/result structs for PercentagePriceOscillatorSignal
- implement ILGPU kernel and calculator to compute PPO values with signal line and expose indicator values
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | bb53d92142704df72b7312d56aac555664a689a6 | diff --git a/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorSignalCalculator.cs b/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorSignalCalculator.cs
new file mode 100644
index 0000000000..8879663a1a
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorSignalCalculator.cs
@@ -0,0 +1,364 @@
+namespace St... | [
"Algo.Gpu/Indicators/GpuPercentagePriceOscillatorSignalCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 503 | issue_to_patch | Add GPU PPO histogram calculator | ## Summary
- add GPU parameter, result, and calculator implementations for Percentage Price Oscillator Histogram
- map GPU outputs back into complex indicator values with PPO and signal states
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet command not available in container)*
------
https://chatgp... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 8f8831f174c2e34081926b406103debb85db4826 | diff --git a/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorHistogramCalculator.cs b/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorHistogramCalculator.cs
new file mode 100644
index 0000000000..07e0a04e48
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPercentagePriceOscillatorHistogramCalculator.cs
@@ -0,0 +1,345 @@
+nam... | [
"Algo.Gpu/Indicators/GpuPercentagePriceOscillatorHistogramCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 504 | issue_to_patch | Add GPU PPO calculator | ## Summary
- add GPU calculator implementation for Percentage Price Oscillator including parameter struct and ILGPU kernel
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/tasks/task_e_68e2653968e48323ac2640276499e72e | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 7f30b568fd382ff99dfe4d2aa7318ae40fa7816f | diff --git a/Algo.Gpu/Indicators/GpuPpoCalculator.cs b/Algo.Gpu/Indicators/GpuPpoCalculator.cs
new file mode 100644
index 0000000000..a183d51ee5
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPpoCalculator.cs
@@ -0,0 +1,233 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU Percentage... | [
"Algo.Gpu/Indicators/GpuPpoCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 507 | issue_to_patch | Add GPU calculator for Parabolic SAR indicator | ## Summary
- add a GPU parameter struct and calculator for the Parabolic SAR indicator
- implement an ILGPU kernel that iterates candles to mirror the CPU Parabolic SAR logic across series and parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: `dotnet` command not available in container)*
----... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 4d823d5f6f58d104e9e9ab3252fd8c86c1996fb3 | diff --git a/Algo.Gpu/Indicators/GpuParabolicSarCalculator.cs b/Algo.Gpu/Indicators/GpuParabolicSarCalculator.cs
new file mode 100644
index 0000000000..e3dfe255dc
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuParabolicSarCalculator.cs
@@ -0,0 +1,377 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Para... | [
"Algo.Gpu/Indicators/GpuParabolicSarCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 506 | issue_to_patch | Add GPU calculator for PassThrough indicator | ## Summary
- add GPU parameter struct for the pass-through indicator
- implement a GPU calculator and kernel that mirror PassThroughIndicator behavior
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not installed in container)*
------
https://chatgpt.com/codex/tasks/task_e_68e2652f12188323a87241a3c... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 9e58baa6cfe201d35bc9ba729c7f21d220cd9940 | diff --git a/Algo.Gpu/Indicators/GpuPassThroughCalculator.cs b/Algo.Gpu/Indicators/GpuPassThroughCalculator.cs
new file mode 100644
index 0000000000..15a51a86ee
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPassThroughCalculator.cs
@@ -0,0 +1,153 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Paramet... | [
"Algo.Gpu/Indicators/GpuPassThroughCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 505 | issue_to_patch | Add GPU calculator for Peak indicator | ## Summary
- add GPU parameter and result structs tailored for the Peak indicator
- implement a GPU kernel and calculator that evaluate Peak values from candle high prices
- convert GPU results back to ZigZag indicator values while filtering non-peak extrema
## Testing
- not run (dotnet CLI is not available in the exe... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | f491987dd14fb6f758c56c514f10a1754c8f1ef6 | diff --git a/Algo.Gpu/Indicators/GpuPeakCalculator.cs b/Algo.Gpu/Indicators/GpuPeakCalculator.cs
new file mode 100644
index 0000000000..e19022a367
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuPeakCalculator.cs
@@ -0,0 +1,320 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU Peak ca... | [
"Algo.Gpu/Indicators/GpuPeakCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 509 | issue_to_patch | Add GPU Optimal Tracking calculator | ## Summary
- add GPU parameter struct for Optimal Tracking and expose GPU calculator implementation
- implement ILGPU kernel and host orchestration mirroring the Optimal Tracking indicator logic
## Testing
- not run (not requested)
------
https://chatgpt.com/codex/tasks/task_e_68e2652005e88323bccea42aaaada093 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 8194e352e3f63069789ab06e92d026c7d9748ddf | diff --git a/Algo.Gpu/Indicators/GpuOptimalTrackingCalculator.cs b/Algo.Gpu/Indicators/GpuOptimalTrackingCalculator.cs
new file mode 100644
index 0000000000..2ab66df531
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuOptimalTrackingCalculator.cs
@@ -0,0 +1,204 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+... | [
"Algo.Gpu/Indicators/GpuOptimalTrackingCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 510 | issue_to_patch | Add GPU calculator for OnBalanceVolumeMean indicator | ## Summary
- add GPU parameter struct for On Balance Volume Mean
- implement GPU calculator that reuses precomputed OBV values and outputs SMA-style results
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not installed in environment)*
------
https://chatgpt.com/codex/tasks/task_e_68e2651b5c0c83239... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 884e7548fa1650cb267d8ddf45044ed1626b5507 | diff --git a/Algo.Gpu/Indicators/GpuObvmCalculator.cs b/Algo.Gpu/Indicators/GpuObvmCalculator.cs
new file mode 100644
index 0000000000..0dd4706908
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuObvmCalculator.cs
@@ -0,0 +1,202 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU On Bala... | [
"Algo.Gpu/Indicators/GpuObvmCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 511 | issue_to_patch | Add GPU calculator for On-Balance Volume indicator | ## Summary
- add a GPU parameter struct and calculator for the On-Balance Volume indicator
- implement the ILGPU kernel and host-side orchestration to compute OBV results for multiple series
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not installed in container)*
------
https://chatgpt.com/code... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | b5114ba1804debb2a3557ffbe2c8f9c9d97f8cdf | diff --git a/Algo.Gpu/Indicators/GpuOnBalanceVolumeCalculator.cs b/Algo.Gpu/Indicators/GpuOnBalanceVolumeCalculator.cs
new file mode 100644
index 0000000000..a260ed0692
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuOnBalanceVolumeCalculator.cs
@@ -0,0 +1,161 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+... | [
"Algo.Gpu/Indicators/GpuOnBalanceVolumeCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 520 | issue_to_patch | Add GPU Momentum Pinball calculator | ## Summary
- add GPU parameter struct for Momentum Pinball
- implement GPU Momentum Pinball calculator and ILGPU kernel handling multi-series inputs
## Testing
- dotnet build StockSharp/Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/tasks/task_e_68e264e66b688323... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | b953af2e722b821466cdd306ac39551365cf96e2 | diff --git a/Algo.Gpu/Indicators/GpuMomentumPinballCalculator.cs b/Algo.Gpu/Indicators/GpuMomentumPinballCalculator.cs
new file mode 100644
index 0000000000..1b6bfcd918
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMomentumPinballCalculator.cs
@@ -0,0 +1,194 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+... | [
"Algo.Gpu/Indicators/GpuMomentumPinballCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 512 | issue_to_patch | Add GPU calculator for Nick Rypock Trailing Reverse indicator | ## Summary
- add GPU parameter struct for Nick Rypock Trailing Reverse (NRTR)
- implement GPU calculator and ILGPU kernel to process NRTR across series and parameter sets
## Testing
- not run (dotnet CLI not available in environment)
------
https://chatgpt.com/codex/tasks/task_e_68e2650f52a48323b17c9167366c3264 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | b68aaa8f4bdcd949b07ab3b3f9b46502838573ad | diff --git a/Algo.Gpu/Indicators/GpuNickRypockTrailingReverseCalculator.cs b/Algo.Gpu/Indicators/GpuNickRypockTrailingReverseCalculator.cs
new file mode 100644
index 0000000000..1ae9388a8a
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuNickRypockTrailingReverseCalculator.cs
@@ -0,0 +1,242 @@
+namespace StockSharp.Algo.Gpu.... | [
"Algo.Gpu/Indicators/GpuNickRypockTrailingReverseCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 514 | issue_to_patch | Add GPU Moving Average Ribbon calculator | ## Summary
- add GPU parameter, result, and calculator implementations for the Moving Average Ribbon indicator
- extend the GPU project to allow unsafe blocks so ribbon averages can be stored inline
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not installed in container)*
------
https://chatgpt.... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 9d025afacbbcfe47fbce1df56551bc90d52c0106 | diff --git a/Algo.Gpu/Algo.Gpu.csproj b/Algo.Gpu/Algo.Gpu.csproj
index 891952838c..e086bb5a98 100644
--- a/Algo.Gpu/Algo.Gpu.csproj
+++ b/Algo.Gpu/Algo.Gpu.csproj
@@ -1,11 +1,15 @@
-<Project Sdk="Microsoft.NET.Sdk">
- <Import Project="..\common_target_net.props" />
-
- <ItemGroup>
- <PackageReference Include="IL... | [
"Algo.Gpu/Algo.Gpu.csproj",
"Algo.Gpu/Indicators/GpuMovingAverageRibbonCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 513 | issue_to_patch | Add GPU calculator for Negative Volume Index indicator | ## Summary
- add GPU parameter struct and calculator for the Negative Volume Index indicator
- flatten input candles and run ILGPU kernel to emit sequential NVI values per series
## Testing
- ⚠️ `dotnet build Algo.Gpu/Algo.Gpu.csproj` *(fails: `dotnet` CLI not available in container)*
------
https://chatgpt.com/codex... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 259f799f5db4b86bf2bd69a5338d7f28aa979f05 | diff --git a/Algo.Gpu/Indicators/GpuNegativeVolumeIndexCalculator.cs b/Algo.Gpu/Indicators/GpuNegativeVolumeIndexCalculator.cs
new file mode 100644
index 0000000000..2427792040
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuNegativeVolumeIndexCalculator.cs
@@ -0,0 +1,160 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+///... | [
"Algo.Gpu/Indicators/GpuNegativeVolumeIndexCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 516 | issue_to_patch | Add GPU MACD signal indicator calculator | ## Summary
- add GPU parameter/result structures for the MACD with signal indicator
- implement a GPU calculator that flattens series, launches a sequential ILGPU kernel, and rebuilds results for each parameter set
- port MACD and signal EMA calculations to the kernel to produce complex indicator values compatible with... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | d93197f85e434286512d8bf058fa1d1a66a6ce0a | diff --git a/Algo.Gpu/Indicators/GpuMacdSignalCalculator.cs b/Algo.Gpu/Indicators/GpuMacdSignalCalculator.cs
new file mode 100644
index 0000000000..25a3fbe920
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMacdSignalCalculator.cs
@@ -0,0 +1,318 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter s... | [
"Algo.Gpu/Indicators/GpuMacdSignalCalculator.cs"
] | [
{
"comment": "**<sub><sub></sub></sub> Preserve MACD values before signal EMA forms**\n\nThe GPU result conversion returns an empty `MovingAverageConvergenceDivergenceSignalValue` whenever either `Macd` or `Signal` is `NaN` (lines 88‑95). During the... | true | ||
StockSharp/StockSharp | 515 | issue_to_patch | Add GPU Moving Average Crossover calculator | ## Summary
- add GPU parameter struct for Moving Average Crossover indicator
- implement ILGPU kernel and calculator to compute crossover signals across series and parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/tasks/task... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 012f47258707b255c9fa3ff412d8288844f1ea0c | diff --git a/Algo.Gpu/Indicators/GpuMovingAverageCrossoverCalculator.cs b/Algo.Gpu/Indicators/GpuMovingAverageCrossoverCalculator.cs
new file mode 100644
index 0000000000..c7ccb77d2c
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMovingAverageCrossoverCalculator.cs
@@ -0,0 +1,193 @@
+namespace StockSharp.Algo.Gpu.Indicator... | [
"Algo.Gpu/Indicators/GpuMovingAverageCrossoverCalculator.cs"
] | [
{
"comment": "**<sub><sub></sub></sub> Use distinct price sources for fast and slow MAs**\n\nThe kernel extracts a single `priceType` from `GpuMovingAverageCrossoverParams` and applies it to both the short and long averages. `MovingAverageCrossover`... | true | ||
StockSharp/StockSharp | 518 | issue_to_patch | Add GPU calculator for MACD histogram indicator | ## Summary
- add GPU parameter and result structures for the MACD histogram indicator
- implement a GPU calculator and ILGPU kernel for MACD histogram processing
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: `dotnet` command not available in container)*
------
https://chatgpt.com/codex/tasks/task_e_68e2... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 43a2e22942a9d64104928a63b68641d566805076 | diff --git a/Algo.Gpu/Indicators/GpuMacdHistogramCalculator.cs b/Algo.Gpu/Indicators/GpuMacdHistogramCalculator.cs
new file mode 100644
index 0000000000..afacf85534
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMacdHistogramCalculator.cs
@@ -0,0 +1,331 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Pa... | [
"Algo.Gpu/Indicators/GpuMacdHistogramCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 517 | issue_to_patch | Add GPU MACD indicator calculator | ## Summary
- add GPU MACD parameter struct and calculator for MovingAverageConvergenceDivergence
- implement ILGPU kernel to compute MACD values across multiple series and parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/ta... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 1c31901c07d2ea124158126a50fab0ee2ffaf4dd | diff --git a/Algo.Gpu/Indicators/GpuMacdCalculator.cs b/Algo.Gpu/Indicators/GpuMacdCalculator.cs
new file mode 100644
index 0000000000..f8fcc99909
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMacdCalculator.cs
@@ -0,0 +1,231 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU MACD ca... | [
"Algo.Gpu/Indicators/GpuMacdCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 519 | issue_to_patch | Add GPU calculator for Money Flow Index | ## Summary
- add GPU parameter struct and calculator for the Money Flow Index indicator
- implement GPU kernel that computes positive/negative money flows with sliding sums and returns GPU indicator results
## Testing
- `dotnet build Algo.Gpu/Algo.Gpu.csproj` *(fails: dotnet not available in environment)*
------
http... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | f8a0bf8813f106f723d42953d71e643aaf043697 | diff --git a/Algo.Gpu/Indicators/GpuMoneyFlowIndexCalculator.cs b/Algo.Gpu/Indicators/GpuMoneyFlowIndexCalculator.cs
new file mode 100644
index 0000000000..c49114c4b1
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMoneyFlowIndexCalculator.cs
@@ -0,0 +1,213 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+//... | [
"Algo.Gpu/Indicators/GpuMoneyFlowIndexCalculator.cs"
] | [
{
"comment": "**<sub><sub></sub></sub> Return 0 when money-flow ratio is neutral**\n\nThe kernel special-cases `ratio == 1f` by returning `0f`. When positive and negative money flows are equal, the Money Flow Index formula should produce 50 (`100 − ... | true | ||
StockSharp/StockSharp | 540 | issue_to_patch | Add GPU Keltner Channels calculator | ## Summary
- add a GPU calculator for the Keltner Channels indicator, including parameter and result structs
## Testing
- not run (dotnet CLI not available in container)
------
https://chatgpt.com/codex/tasks/task_e_68e264818dec8323807b0c5286c3c5c3 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 1dc3d5bece986216ada6920f788bb3f45787774c | diff --git a/Algo.Gpu/Indicators/GpuKeltnerChannelsCalculator.cs b/Algo.Gpu/Indicators/GpuKeltnerChannelsCalculator.cs
new file mode 100644
index 0000000000..531be62726
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuKeltnerChannelsCalculator.cs
@@ -0,0 +1,317 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+... | [
"Algo.Gpu/Indicators/GpuKeltnerChannelsCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 538 | issue_to_patch | Add GPU calculator for the KST indicator | ## Summary
- add a Know Sure Thing GPU parameter/result types mirroring the CPU indicator state
- implement a GPU calculator and ILGPU kernel to compute KST and signal lines across multiple series
## Testing
- not run (dotnet CLI not available in container)
------
https://chatgpt.com/codex/tasks/task_e_68e2648ba2308... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 4e64d158e06f01be0448ba624e4ba3adbe9bc349 | diff --git a/Algo.Gpu/Indicators/GpuKnowSureThingCalculator.cs b/Algo.Gpu/Indicators/GpuKnowSureThingCalculator.cs
new file mode 100644
index 0000000000..452aa9aeb6
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuKnowSureThingCalculator.cs
@@ -0,0 +1,443 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+using System.Reflecti... | [
"Algo.Gpu/Indicators/GpuKnowSureThingCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 539 | issue_to_patch | Add GPU Klinger Volume Oscillator calculator | ## Summary
- add GPU parameter/result structs and calculator for the Klinger Volume Oscillator indicator
- implement ILGPU kernel and result conversion to mirror CPU indicator behaviour
## Testing
- not run (dotnet not available in container)
------
https://chatgpt.com/codex/tasks/task_e_68e26486dc848323a454617bac88... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 735487a75c341a73331a513d8aa650ae0fc00ed6 | diff --git a/Algo.Gpu/Indicators/GpuKlingerVolumeOscillatorCalculator.cs b/Algo.Gpu/Indicators/GpuKlingerVolumeOscillatorCalculator.cs
new file mode 100644
index 0000000000..38388be06a
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuKlingerVolumeOscillatorCalculator.cs
@@ -0,0 +1,299 @@
+namespace StockSharp.Algo.Gpu.Indica... | [
"Algo.Gpu/Indicators/GpuKlingerVolumeOscillatorCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 536 | issue_to_patch | Add GPU calculator for LinearReg indicator | ## Summary
- add GPU parameter struct mirroring LinearReg configuration for GPU usage
- implement a GPU calculator and ILGPU kernel to evaluate linear regression predictions across multiple series and parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | e7d2fbc64142400c14a41c8486e29ed51101a676 | diff --git a/Algo.Gpu/Indicators/GpuLinearRegCalculator.cs b/Algo.Gpu/Indicators/GpuLinearRegCalculator.cs
new file mode 100644
index 0000000000..20ff4b1e6f
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLinearRegCalculator.cs
@@ -0,0 +1,197 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set ... | [
"Algo.Gpu/Indicators/GpuLinearRegCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 537 | issue_to_patch | Add GPU calculator for Laguerre RSI indicator | ## Summary
- add GPU parameter struct to pass gamma and price type for Laguerre RSI
- implement Laguerre RSI GPU calculator and kernel to process multiple series/parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet command not found in container)*
------
https://chatgpt.com/codex/tasks/ta... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | cebe0b66411c09845bef489e457d0ddcac94bb82 | diff --git a/Algo.Gpu/Indicators/GpuLaguerreRsiCalculator.cs b/Algo.Gpu/Indicators/GpuLaguerreRsiCalculator.cs
new file mode 100644
index 0000000000..9f575e7424
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLaguerreRsiCalculator.cs
@@ -0,0 +1,225 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Paramete... | [
"Algo.Gpu/Indicators/GpuLaguerreRsiCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 534 | issue_to_patch | Add GPU calculator for Linear Regression R-squared indicator | ## Summary
- add GPU parameter struct for Linear Regression R-squared inputs
- implement ILGPU calculator and kernel to compute LinearRegRSquared values across series and parameters
## Testing
- not run
------
https://chatgpt.com/codex/tasks/task_e_68e2649f1484832387832aaf28e12d08 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 5eb99690e95e7c601e27323f5961b0162aab7ebe | diff --git a/Algo.Gpu/Indicators/GpuLinearRegRSquaredCalculator.cs b/Algo.Gpu/Indicators/GpuLinearRegRSquaredCalculator.cs
new file mode 100644
index 0000000000..de0263262e
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLinearRegRSquaredCalculator.cs
@@ -0,0 +1,210 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summ... | [
"Algo.Gpu/Indicators/GpuLinearRegRSquaredCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 535 | issue_to_patch | Add GPU calculator for Linear Regression Forecast indicator | ## Summary
- add a GPU parameter struct for the Linear Regression Forecast indicator
- implement the ILGPU-based calculator and kernel to compute forecasts across candle series and parameter sets
## Testing
- not run
------
https://chatgpt.com/codex/tasks/task_e_68e26499ddc0832391296cb18c13bf76 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | a27d06def19518f0bbdd405d7cd373323250671b | diff --git a/Algo.Gpu/Indicators/GpuLinearRegressionForecastCalculator.cs b/Algo.Gpu/Indicators/GpuLinearRegressionForecastCalculator.cs
new file mode 100644
index 0000000000..ec5e5ce50b
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLinearRegressionForecastCalculator.cs
@@ -0,0 +1,188 @@
+namespace StockSharp.Algo.Gpu.Ind... | [
"Algo.Gpu/Indicators/GpuLinearRegressionForecastCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 533 | issue_to_patch | Add GPU LinearRegSlope calculator | ## Summary
- add a GPU parameter struct for LinearRegSlope and map indicator settings
- implement a GPU calculator and kernel for LinearRegSlope including buffering and result reconstruction
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: command not found)*
------
https://chatgpt.com/codex/tasks/task_e_6... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | c36f93fed5c139c2e33aade4caba2eb4a731b826 | diff --git a/Algo.Gpu/Indicators/GpuLinearRegSlopeCalculator.cs b/Algo.Gpu/Indicators/GpuLinearRegSlopeCalculator.cs
new file mode 100644
index 0000000000..41e58e2213
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLinearRegSlopeCalculator.cs
@@ -0,0 +1,183 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+///... | [
"Algo.Gpu/Indicators/GpuLinearRegSlopeCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 532 | issue_to_patch | Add GPU Lowest indicator calculator | ## Summary
- add GPU parameter struct and calculator for the Lowest indicator
- implement ILGPU kernel and data reshaping logic to compute per-series minima on the GPU
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet is not available in the environment)*
------
https://chatgpt.com/codex/tasks/task_e... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 7726b9bb899571238165a71da86c76592dec3599 | diff --git a/Algo.Gpu/Indicators/GpuLowestCalculator.cs b/Algo.Gpu/Indicators/GpuLowestCalculator.cs
new file mode 100644
index 0000000000..1e8be49201
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLowestCalculator.cs
@@ -0,0 +1,164 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU L... | [
"Algo.Gpu/Indicators/GpuLowestCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 531 | issue_to_patch | Add GPU lunar phase indicator calculator | ## Summary
- add a GPU calculator and params struct for the LunarPhase indicator
- compute the lunar phase index for each candle within an ILGPU kernel and return GPU-friendly results
## Testing
- not run (dotnet CLI unavailable in container)
------
https://chatgpt.com/codex/tasks/task_e_68e264ae54ac8323a63d07ce3eaf... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 86be3564490f1a9a98ccf7d190faab32ee54d475 | diff --git a/Algo.Gpu/Indicators/GpuLunarPhaseCalculator.cs b/Algo.Gpu/Indicators/GpuLunarPhaseCalculator.cs
new file mode 100644
index 0000000000..e8d94452b3
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuLunarPhaseCalculator.cs
@@ -0,0 +1,163 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter s... | [
"Algo.Gpu/Indicators/GpuLunarPhaseCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 529 | issue_to_patch | Add GPU calculator for Market Meanness Index indicator | ## Summary
- add GPU parameter definition and calculator for the Market Meanness Index indicator
- implement ILGPU kernel that reproduces the indicator logic across multiple series and parameter sets
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet CLI is not available in the execution environment)*
... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | bc0c0056e2ab9d31824f9a6b0ae0771c977f7842 | diff --git a/Algo.Gpu/Indicators/GpuMarketMeannessIndexCalculator.cs b/Algo.Gpu/Indicators/GpuMarketMeannessIndexCalculator.cs
new file mode 100644
index 0000000000..84a157fafc
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMarketMeannessIndexCalculator.cs
@@ -0,0 +1,206 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+///... | [
"Algo.Gpu/Indicators/GpuMarketMeannessIndexCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 530 | issue_to_patch | Add GPU Market Facilitation Index calculator | ## Summary
- add a GPU calculator for Market Facilitation Index with its parameter struct and ILGPU kernel
## Testing
- not run (dotnet CLI unavailable in container)
------
https://chatgpt.com/codex/tasks/task_e_68e264b2b728832397454963a0c67df0 | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 376969f580a0f4151c9837135626c166d1685feb | diff --git a/Algo.Gpu/Indicators/GpuMarketFacilitationIndexCalculator.cs b/Algo.Gpu/Indicators/GpuMarketFacilitationIndexCalculator.cs
new file mode 100644
index 0000000000..a07302b8f7
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMarketFacilitationIndexCalculator.cs
@@ -0,0 +1,144 @@
+namespace StockSharp.Algo.Gpu.Indi... | [
"Algo.Gpu/Indicators/GpuMarketFacilitationIndexCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 528 | issue_to_patch | Add GPU calculator for Mass Index | ## Summary
- add GPU parameter struct for Mass Index and map indicator options
- implement GPU Mass Index calculator and kernel with ratio scratch buffer
## Testing
- not run (dotnet not available in container)
------
https://chatgpt.com/codex/tasks/task_e_68e264bd58ec8323b772d51e1f77abae | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | e1e6ba33a5cfcad3a8857c8d103ce16098ee4eba | diff --git a/Algo.Gpu/Indicators/GpuMassIndexCalculator.cs b/Algo.Gpu/Indicators/GpuMassIndexCalculator.cs
new file mode 100644
index 0000000000..0f4926f477
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMassIndexCalculator.cs
@@ -0,0 +1,269 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set ... | [
"Algo.Gpu/Indicators/GpuMassIndexCalculator.cs"
] | [
{
"comment": "**<sub><sub></sub></sub> Initialize EMAs with fixed period length**\n\nThe kernel builds the initial single EMA by dividing the accumulated range by `singleInitCount` until `emaLength` samples arrive. `MassIndex` on CPU uses `Exponenti... | true | ||
StockSharp/StockSharp | 525 | issue_to_patch | Add GPU calculator for MeanDeviation indicator | ## Summary
- add GPU parameter struct and calculator implementation for the Mean Deviation indicator
- implement ILGPU kernel to compute mean deviation values per series and parameter set using candle data
## Testing
- not run (dotnet CLI unavailable in environment)
------
https://chatgpt.com/codex/tasks/task_e_68e2... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 17586d002ca1006650fa00f2ffbecb78039aae3b | diff --git a/Algo.Gpu/Indicators/GpuMeanDeviationCalculator.cs b/Algo.Gpu/Indicators/GpuMeanDeviationCalculator.cs
new file mode 100644
index 0000000000..9e3d73227e
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMeanDeviationCalculator.cs
@@ -0,0 +1,180 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Pa... | [
"Algo.Gpu/Indicators/GpuMeanDeviationCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 526 | issue_to_patch | Add GPU McGinley Dynamic calculator | ## Summary
- add a GPU parameter struct and calculator for the McGinley Dynamic indicator
- implement a sequential ILGPU kernel that reuses flattened candle buffers and rebuilds per-series results
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: dotnet not available in container)*
------
https://chatgpt.co... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 0fac89e60091a65e6843a6284a4d450898b3833e | diff --git a/Algo.Gpu/Indicators/GpuMcGinleyDynamicCalculator.cs b/Algo.Gpu/Indicators/GpuMcGinleyDynamicCalculator.cs
new file mode 100644
index 0000000000..18c07c7783
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMcGinleyDynamicCalculator.cs
@@ -0,0 +1,226 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+... | [
"Algo.Gpu/Indicators/GpuMcGinleyDynamicCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 524 | issue_to_patch | Add GPU Median indicator calculator | ## Summary
- add GPU parameter struct and calculator for the Median indicator
- implement ILGPU kernel to compute median values for multiple series and parameter sets
## Testing
- `dotnet build Algo.Gpu/Algo.Gpu.csproj` *(fails: dotnet not available in container)*
------
https://chatgpt.com/codex/tasks/task_e_68e264d... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 2414a9dc7b2c360e9cc11c120443e66dd89dc730 | diff --git a/Algo.Gpu/Indicators/GpuMedianCalculator.cs b/Algo.Gpu/Indicators/GpuMedianCalculator.cs
new file mode 100644
index 0000000000..b49d0379bf
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMedianCalculator.cs
@@ -0,0 +1,275 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Parameter set for GPU M... | [
"Algo.Gpu/Indicators/GpuMedianCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 523 | issue_to_patch | Add GPU calculator for Median Price indicator | ## Summary
- add a GPU calculator for the MedianPrice indicator including ILGPU kernel
- define a dedicated parameter struct to integrate with the GPU calculation pipeline
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: command not found: dotnet)*
------
https://chatgpt.com/codex/tasks/task_e_68e264d7dd94... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 8db44eff489663420b37d6b12c76be6170449c69 | diff --git a/Algo.Gpu/Indicators/GpuMedianPriceCalculator.cs b/Algo.Gpu/Indicators/GpuMedianPriceCalculator.cs
new file mode 100644
index 0000000000..c4ab3fb710
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMedianPriceCalculator.cs
@@ -0,0 +1,142 @@
+namespace StockSharp.Algo.Gpu.Indicators;
+
+/// <summary>
+/// Paramete... | [
"Algo.Gpu/Indicators/GpuMedianPriceCalculator.cs"
] | [] | true | ||
StockSharp/StockSharp | 521 | issue_to_patch | Add GPU Momentum of Moving Average calculator | ## Summary
- add GPU parameter struct for Momentum of Moving Average
- implement the Momentum of Moving Average GPU calculator and kernel to evaluate multiple series/parameter combinations
## Testing
- dotnet build Algo.Gpu/Algo.Gpu.csproj *(fails: command not found in container)*
------
https://chatgpt.com/codex/tas... | 9bb9d7ded60aea7d97121c7f4c9c33c203614675 | 347c1c63fa17b7bccec1c88d054a3d3b94c5747c | diff --git a/Algo.Gpu/Indicators/GpuMomentumOfMovingAverageCalculator.cs b/Algo.Gpu/Indicators/GpuMomentumOfMovingAverageCalculator.cs
new file mode 100644
index 0000000000..aedbffcabb
--- /dev/null
+++ b/Algo.Gpu/Indicators/GpuMomentumOfMovingAverageCalculator.cs
@@ -0,0 +1,220 @@
+namespace StockSharp.Algo.Gpu.Indica... | [
"Algo.Gpu/Indicators/GpuMomentumOfMovingAverageCalculator.cs"
] | [
{
"comment": "**<sub><sub></sub></sub> Align GPU momentum period with CPU indicator**\n\nThe GPU kernel uses `prm.MomentumPeriod` to compare the current moving average with a value that is `momPeriod` bars earlier, but the existing `MomentumOfMoving... | true | ||
SubtitleEdit/subtitleedit | 11,619 | issue_to_patch | Add new names to pt_PT_names.xml | 5213ec5bdc7a59496e63b2a72a625112e22e84c1 | b9625bf923d0acfcc3ba60d69f2b499f048727a9 | diff --git a/Dictionaries/pt_PT_names.xml b/Dictionaries/pt_PT_names.xml
index 516c0b7c04..46456a11ce 100644
--- a/Dictionaries/pt_PT_names.xml
+++ b/Dictionaries/pt_PT_names.xml
@@ -148,6 +148,7 @@
<name>Ailton</name>
<name>Aimi</name>
<name>Aine</name>
+ <name>Airbnb</name>
<name>Aires</name>
<name>Ai... | [
"Dictionaries/pt_PT_names.xml"
] | [] | true | |||
SubtitleEdit/subtitleedit | 11,618 | issue_to_patch | Fix pt-PT extra words list and sorting | 5213ec5bdc7a59496e63b2a72a625112e22e84c1 | 02e5ba50b14777952a9a82206c786495e40237ba | diff --git a/Dictionaries/pt_PT_se.xml b/Dictionaries/pt_PT_se.xml
index 5dba6d97b5..1bc86873e8 100644
--- a/Dictionaries/pt_PT_se.xml
+++ b/Dictionaries/pt_PT_se.xml
@@ -1,22 +1,25 @@
<words>
- <word>a</word>
<word>ª</word>
- <word>à</word>
<word>abébia</word>
<word>acróstica</word>
<word>acufeno</word>... | [
"Dictionaries/pt_PT_se.xml"
] | [] | true | |||
SubtitleEdit/subtitleedit | 11,617 | issue_to_patch | Fix pt-PT names list casing and ordering | 84f966fae3991739b37b8d4f201bfe9a5de30e86 | 4db5c123123453f696131e6bd24c8b38039ddc2f | diff --git a/Dictionaries/pt_PT_names.xml b/Dictionaries/pt_PT_names.xml
index 1f6ffa05dfd..516c0b7c044 100644
--- a/Dictionaries/pt_PT_names.xml
+++ b/Dictionaries/pt_PT_names.xml
@@ -2,14 +2,30 @@
<!-- This list contains names with specific casing - and specific to Portuguese (Portugal) only -->
<names>
<blackli... | [
"Dictionaries/pt_PT_names.xml"
] | [] | true | |||
SubtitleEdit/subtitleedit | 11,616 | issue_to_patch | Feature Suggestion : Audio-only session warn before auto-loading video with matching name if both a video file and audio file exist.
Hi,
I am working with a pure audio workflow to make a karaoke style video (loading an audio-only .wav file and a matching .ass subtitle file).
I exported the hard-coded video version ... | Reuse last-opened media when opening a subtitle | ## Summary
Fixes #11612. When a subtitle is opened directly (File ▸ Open, double-click, drag-drop) with no remembered media, auto-open fell back to `FindVideoFileName`, which matches by name and searches **video extensions before audio**. For an audio-only project (`.wav` + `.ass`) that later had a video burned in, thi... | 0d3d5a96530cc7e8b28a6165a054ed2c6deec3fa | e954c43bb4bd38dbd9eefb33e6bb2293dc56805c | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 45a5e549a7..316402f311 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -13691,6 +13691,13 @@ await MessageBox.Show(Window!, Se.Language.General.Error, "This file seems to be... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,615 | issue_to_patch | Update llama.cpp to b9631 | ## Summary
Bumps the bundled llama.cpp runtime from **b9297 → b9631** ([release](https://github.com/ggml-org/llama.cpp/releases/tag/b9631)).
Same archive/asset names, so the change is a single `Version` const flip in `LlamaCppDownloadService` plus refreshed SHA-256 entries in `DownloadHashManager` (new b9631 hash prep... | c01226e076fa5a047b73cb2b1841a47704be168a | 23a9194f248a064fcc81c292c6fcb2bfd930e98f | diff --git a/src/ui/Logic/Download/DownloadHashManager.cs b/src/ui/Logic/Download/DownloadHashManager.cs
index 7bdea1673f..ef2e10d15a 100644
--- a/src/ui/Logic/Download/DownloadHashManager.cs
+++ b/src/ui/Logic/Download/DownloadHashManager.cs
@@ -487,57 +487,67 @@ public static class WhisperCpp
// otherwis... | [
"src/ui/Logic/Download/DownloadHashManager.cs",
"src/ui/Logic/Download/LlamaCppDownloadService.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,614 | issue_to_patch | Feature Request : Allow saving as MP4 container in "Generate video with burned-in subtitle"
Hi,
Currently, the "Generate video with burned-in subtitle" tool defaults specifically to saving files inside an .mkv container. Some venue media systems and hardware players (particularly older systems) require strict .mp4 co... | Add output container choice (mkv/mp4/mov) to burn-in window | ## Summary
Fixes #11611. The burn-in / generate-video window forced the output container to follow the input video (mp4/mkv only), so users couldn't choose a different container — notably MP4 was unavailable when the source was MKV.
This adds a **"Video file extension"** dropdown (`.mkv`, `.mp4`, `.mov`) to the window... | 4e27691470720d528ede669957ed54f87677e2f2 | 296ae0ae8a3b29490c3599895b2af4b7d165ee25 | diff --git a/src/ui/Features/Video/BurnIn/BurnInViewModel.cs b/src/ui/Features/Video/BurnIn/BurnInViewModel.cs
index 9e8597f93c..eb342d5a57 100644
--- a/src/ui/Features/Video/BurnIn/BurnInViewModel.cs
+++ b/src/ui/Features/Video/BurnIn/BurnInViewModel.cs
@@ -62,6 +62,8 @@ public partial class BurnInViewModel : Observab... | [
"src/ui/Features/Video/BurnIn/BurnInViewModel.cs",
"src/ui/Features/Video/BurnIn/BurnInWindow.cs",
"src/ui/Logic/Config/SeVideoBurnIn.cs"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,613 | issue_to_patch | Honor configurable new-subtitle duration when inserting lines | ## Summary
Replaces the three remaining hardcoded `2000` ms durations in `InsertService` with the existing `General.NewEmptyDefaultMs` setting (Settings > "Default new subtitle duration (ms)").
This matches how the rest of `InsertService` (e.g. the `InsertBefore`/`InsertAfter` end-time branches) and the other insert p... | 54221d19857fb34bd576aa1c9d3daf6746f14894 | 2c46c887e64290608bda4de58182b41cff4dab1a | diff --git a/src/ui/Logic/InsertService.cs b/src/ui/Logic/InsertService.cs
index 59c4f2ead5..14e9fb7d60 100644
--- a/src/ui/Logic/InsertService.cs
+++ b/src/ui/Logic/InsertService.cs
@@ -42,7 +42,7 @@ public void InsertBefore(SubtitleFormat format, Subtitle subtitle, ObservableCol
if (prev != null && next != n... | [
"src/ui/Logic/InsertService.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,609 | issue_to_patch | Clicking the empty waveform does nothing instead of offering to open media
When no video/audio is loaded, clicking the waveform area does nothing. In earlier versions clicking the empty waveform was a way to open a video/audio file.
**Steps:** open/new a subtitle without media, click the waveform - nothing happens.
... | Open video/audio when clicking the empty waveform | Fixes #11606
When no media was loaded, the waveform single-click handler returned early, so clicking the empty waveform did nothing.
- A click on the empty waveform now opens the standard video/audio picker (`CommandVideoOpen`, whose filter already lists both video and audio), restoring the older behaviour.
Builds c... | c8c9031a2582a9097994882d03f4639cd3420fc4 | d7a1d75841411a58ad9d7c2a646299ba344de557 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 675b0cad4d..f3030dbc3e 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -19645,6 +19645,14 @@ internal void OnWaveformDoubleTapped(object sender, ParagraphEventArgs e)
... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,603 | issue_to_patch | Update yt-dlp to 2026.06.09 with checksum verification | ## Summary
- Bump yt-dlp to **2026.06.09** ([release](https://github.com/yt-dlp/yt-dlp/releases/tag/2026.06.09)). All four platform download URLs derive from the single `CurrentVersion` constant.
- Add **SHA-256 verification** of downloaded binaries against the official `SHA2-256SUMS` checksums. A mismatched/corrupt do... | c8c9031a2582a9097994882d03f4639cd3420fc4 | 4a4e2ee6a1ddedb4abfb7bef67beda3134e0f8d7 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 675b0cad4d9..13106a11835 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -5814,7 +5814,19 @@ private async Task ShowVideoOpenFromUrl()
}
}
- v... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Video/OpenFromUrl/OpenFromUrlViewModel.cs",
"src/ui/Features/Video/OpenFromUrl/OpenFromUrlWindow.cs",
"src/ui/Logic/Download/YtDlpDownloadService.cs",
"tests/UI/Logic/Download/YtDlpDownloadServiceTests.cs"
] | [] | diff --git a/tests/UI/Logic/Download/YtDlpDownloadServiceTests.cs b/tests/UI/Logic/Download/YtDlpDownloadServiceTests.cs
index 3b812c67bf7..dbc38678955 100644
--- a/tests/UI/Logic/Download/YtDlpDownloadServiceTests.cs
+++ b/tests/UI/Logic/Download/YtDlpDownloadServiceTests.cs
@@ -88,4 +88,104 @@ public void EnumerateDo... | true | |
SubtitleEdit/subtitleedit | 11,598 | issue_to_patch | Work on video player labels | Having the timecode on the video and the video slider as just a short string of the video is really confusing; it's typical in places like these to have the full timecode, not just a part of it.
I can't intuitively understand what I'm seeing while I'm trying to read the timecode at some random point in time.
Also... | db20bf8be91aabbae3d5e648146d7b4010048b61 | 5aa03ba1b9848e73fe57a5156e5fa914b1446d78 | diff --git a/src/ui/Controls/VideoPlayer/VideoPlayerControl.cs b/src/ui/Controls/VideoPlayer/VideoPlayerControl.cs
index 1f37dc38a34..4058b5fe56e 100644
--- a/src/ui/Controls/VideoPlayer/VideoPlayerControl.cs
+++ b/src/ui/Controls/VideoPlayer/VideoPlayerControl.cs
@@ -369,8 +369,8 @@ public VideoPlayerControl(IVideoPla... | [
"src/ui/Controls/VideoPlayer/VideoPlayerControl.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,595 | issue_to_patch | Fix three latent bugs in Utilities.cs | ## Summary
Three independent bug fixes in `src/libse/Common/Utilities.cs`:
- **`DisplayFileSizeToBytes` integer overflow** — the method returns `long` but cast each result to `int`, so any value ≥ 2 GB (and large `mb` inputs) overflowed to a negative/garbage value. Now casts to `long`, with the `gb` multiplication kep... | db20bf8be91aabbae3d5e648146d7b4010048b61 | bd81c9a5b868da34fabd152ebe3f87948e59dadb | diff --git a/src/libse/Common/Utilities.cs b/src/libse/Common/Utilities.cs
index bc70225a47..dfbbef7066 100644
--- a/src/libse/Common/Utilities.cs
+++ b/src/libse/Common/Utilities.cs
@@ -111,7 +111,7 @@ public static long DisplayFileSizeToBytes(string displayFileSize)
{
if (double.TryParse... | [
"src/libse/Common/Utilities.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,600 | issue_to_patch | Update Italian.json | @niksedk
Please merge. Thanks. | 7a01cc547245ed3e03494af1c8b29b47d1b744f4 | c8fa72da3407318bbbae4d290569cfb4a937ab0d | diff --git a/src/ui/Assets/Languages/Italian.json b/src/ui/Assets/Languages/Italian.json
index fb6d447d2b..4baf30cfea 100644
--- a/src/ui/Assets/Languages/Italian.json
+++ b/src/ui/Assets/Languages/Italian.json
@@ -1,7 +1,7 @@
{
"Title": "SubtitleEdit",
- "version": "v5.0.0",
- "TranslatedBy": "v. 06.06.2026 d... | [
"src/ui/Assets/Languages/Italian.json"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,601 | issue_to_patch | Docs: Qwen3 TTS (CrispASR) Voice clone model + slow-on-first-use note | Follow-up to #11592 (now merged).
Updates `docs/features/text-to-speech.md` for the Qwen3 TTS (CrispASR) engine:
- Lists all three 1.7B models — **VoiceDesign**, **CustomVoice**, and **Voice clone** (previously only two were documented).
- Corrects the model descriptions: **CustomVoice** uses nine built-in speakers s... | 7a01cc547245ed3e03494af1c8b29b47d1b744f4 | 9609b59bf4c272f7fccb7b17dab9e79d7fc1e848 | diff --git a/docs/features/text-to-speech.md b/docs/features/text-to-speech.md
index bf985cb39d..7ac8652924 100644
--- a/docs/features/text-to-speech.md
+++ b/docs/features/text-to-speech.md
@@ -29,7 +29,7 @@ Generate speech audio from subtitle text using various TTS engines.
- **GoogleSpeech** — Google cloud TTS (req... | [
"docs/features/text-to-speech.md"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,596 | issue_to_patch | Update Korean translation | ## Changes
- Added translations for new entries
- Fixed typos and mistranslations
Thank you :) | db20bf8be91aabbae3d5e648146d7b4010048b61 | 356373d25503d938dd7f554249097ce6a051d9e0 | diff --git a/src/ui/Assets/Languages/Korean.json b/src/ui/Assets/Languages/Korean.json
index 71535ab071..bbe295d69a 100644
--- a/src/ui/Assets/Languages/Korean.json
+++ b/src/ui/Assets/Languages/Korean.json
@@ -106,8 +106,8 @@
"consoleLog": "콘솔 로그",
"contentAlignment": "콘텐츠 정렬",
"continueFindTitle": "계속 ... | [
"src/ui/Assets/Languages/Korean.json"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,592 | issue_to_patch | Qwen3 TTS (CrispASR): add real voice cloning + fix CustomVoice speakers | ## Problem
The **Qwen3 TTS (CrispASR)** "1.7B CustomVoice" model was presented as voice cloning, but it never used the cloned voice.
Root cause: the crispasr `qwen3-tts-1.7b-customvoice` backend does **not** clone — it selects one of nine **fixed speakers** baked into the GGUF, chosen by name (`vivian`, `ryan`, …). S... | db20bf8be91aabbae3d5e648146d7b4010048b61 | 799f5b736c0a60bdad00ff5db2cef8d7d083cb51 | diff --git a/src/ui/Features/Video/TextToSpeech/Engines/Qwen3TtsCrispAsr.cs b/src/ui/Features/Video/TextToSpeech/Engines/Qwen3TtsCrispAsr.cs
index 547a9b0dca7..ebc5303ce23 100644
--- a/src/ui/Features/Video/TextToSpeech/Engines/Qwen3TtsCrispAsr.cs
+++ b/src/ui/Features/Video/TextToSpeech/Engines/Qwen3TtsCrispAsr.cs
@@ ... | [
"src/ui/Features/Video/TextToSpeech/Engines/Qwen3TtsCrispAsr.cs",
"src/ui/Features/Video/TextToSpeech/Qwen3TtsCrispAsrSettings/Qwen3TtsCrispAsrSettingsViewModel.cs",
"src/ui/Features/Video/TextToSpeech/Qwen3TtsCrispAsrSettings/Qwen3TtsCrispAsrSettingsWindow.cs",
"src/ui/Features/Video/TextToSpeech/TextToSpeec... | [] | true | ||
SubtitleEdit/subtitleedit | 11,593 | issue_to_patch | SE V5.0.0-rc4 Hangs on Layout change
SE V5.0.0-rc4 hangs when changing layout.
**With a subtitle** loaded SE always hangs on Layout change.
**Without a subtitle** loaded SE sometimes hangs.
To replicate:
Load SE without a subtitle and change the layout. Close SE.
Click on a subtitle to start SE and load the subtitle... | Fix UI freeze on layout change (#11585) | Fixes #11585
## Problem
Changing the layout freezes the main window. Per the reporter: with a subtitle loaded it *always* hangs; with nothing loaded it hangs intermittently (after a session in which a subtitle was loaded).
## Root cause
`CommandShowLayout` rebuilds the layout **inside the `await ShowDialogAsync` co... | db20bf8be91aabbae3d5e648146d7b4010048b61 | 64fe26cafb3add2b3027dcb973a090a376b37933 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 1a9238992c..675b0cad4d 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -813,13 +813,20 @@ private async Task CommandShowLayout()
if (vm.OkPressed && vm.SelectedLa... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,562 | issue_to_patch | Align main editor focus frame with other text boxes | The focus frame of the main subtitle edit box was inconsistent in two ways: its thickness varied depending on whether color tags were enabled, and it did not match the focus frame used by other edit- and text boxes in the app.
## Changes
- Make the focus frame thickness uniform regardless of color tag mode.... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 39068ba1b0971cc44e888838edda02d08ed98817 | diff --git a/src/ui/Features/Main/Layout/TextEditorBindingHelper.cs b/src/ui/Features/Main/Layout/TextEditorBindingHelper.cs
index db657e5428..f3857ccd38 100644
--- a/src/ui/Features/Main/Layout/TextEditorBindingHelper.cs
+++ b/src/ui/Features/Main/Layout/TextEditorBindingHelper.cs
@@ -1,3 +1,4 @@
+using Avalonia;
usi... | [
"src/ui/Features/Main/Layout/TextEditorBindingHelper.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,557 | issue_to_patch | Fix several SE5 RC issues from OmrSi's report (#10766) | Addresses several items from OmrSi's RC test report in discussion #10766. Each is a focused commit.
## Fixes
- **Numpad `+ - * /` shortcut keys** — the capture path prefixed every numpad key with `NumPad`, so the four arithmetic operators became `NumPadAdd`/`NumPadMultiply`/etc. and stopped matching the bare Avalonia... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | ed67265bc18ae956eccfae10b1a96033ef07a859 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 784dcec9166..97a0bb1ceeb 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -1821,6 +1821,23 @@ private void CommandFileReopen(RecentFile recentFile)
await Subti... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Shared/FullScreenVideoPlayer.cs",
"src/ui/Logic/Config/SeWaveform.cs",
"src/ui/Logic/Platform/Windows/WindowsDarkMode.cs",
"src/ui/Logic/ShortcutManager.cs",
"src/ui/Logic/ShortcutsMain.cs",
"src/ui/Logic/UiTheme.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,575 | issue_to_patch | Use the correct font for subtitle grid column width measurements | This PR makes sure that auto-sized subtitle grid columns get their width based on the correct font so the inexplicably large white space after the Show and Hide columns is gone.
It was a subtitle grid font-scoping issue where changing the subtitle text font could widen the `Show` / `Hide` columns even though tho... | b297031e86159449b5147accbfca2e75c694a57a | af1dd35412d774fb5754f2969e131b901aee8c5d | diff --git a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
index 35c42a00d2..3e6af412d9 100644
--- a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
+++ b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
@@ -94,10 +94,6 @@ public static Grid Mak... | [
"src/ui/Features/Main/Layout/InitListViewAndEditBox.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,576 | issue_to_patch | Fix subtitle editor focus border not following system accent color | The focused border brush for the AvaloniaEdit-based subtitle text box was hardcoded to Colors.DodgerBlue in both MakeTextEditor and MakeOriginalTextEditor. Every other focusable control in the app relies on Avalonia's Fluent theme to supply the system accent color automatically, so users who changed their accent saw a ... | b297031e86159449b5147accbfca2e75c694a57a | 37d8160f7c65c8f3842fb818687a9a5dbfef2d07 | diff --git a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
index bad485b740..2253cda13c 100644
--- a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
+++ b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
@@ -1723,7 +1723,7 @@ private static Bord... | [
"src/ui/Features/Main/Layout/InitListViewAndEditBox.cs",
"src/ui/Logic/UiUtil.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,578 | issue_to_patch | Fix title bar showing *Untitled on startup with no file to reopen | ### Summary
When launching the app with no recent file to reopen, the title bar incorrectly showed *Untitled — the asterisk that normally indicates unsaved changes — even though nothing had been modified.
<img width="242" height="28" alt="Screenshot 2026-06-13 at 9 35 29 AM" src="https://github.com/user-attac... | b297031e86159449b5147accbfca2e75c694a57a | 19a418be4eacb014cc313b5b36ca7e0743915408 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index f31484455d..486b14400f 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -512,6 +512,8 @@ public MainViewModel(
Encodings = new ObservableCollection<TextEncoding>(E... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,579 | issue_to_patch | Fix find highlight and Find Next not advancing (plain text box mode) | ## Problem
When color tags are **disabled** (the default plain `TextBox` mode), two related bugs affected the Find feature:
1. **No highlight** — searching with F3 / Find dialog showed the correct subtitle and positioned the caret after the match, but the found text was never highlighted.
2. **Find Next ... | b297031e86159449b5147accbfca2e75c694a57a | 516ef529501ea57bde67276b6f6c39aa5f3e7cb8 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index f31484455d..e2f0686453 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -9710,7 +9710,7 @@ private async Task FindNext()
var subs = Subtitles.Select(p => p.Text).T... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Shared/TextBoxUtils/TextBoxWrapper.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,580 | issue_to_patch | Fix Find/Replace dialogs stealing focus on app reactivation | This PR maintains the smooth flow of opening the Find or Replace dialog, allowing users to type immediately into the Find field. However, it eliminates the unexpected focus shift when switching to another app (e.g., to copy the replacement string), ensuring that pasting does not occur in the search textbox.
## Probl... | b297031e86159449b5147accbfca2e75c694a57a | 4c174a65482caccc2f68bd640af56fe057605230 | diff --git a/src/ui/Features/Edit/Find/FindWindow.cs b/src/ui/Features/Edit/Find/FindWindow.cs
index e231e9b292..f46d5b77a0 100644
--- a/src/ui/Features/Edit/Find/FindWindow.cs
+++ b/src/ui/Features/Edit/Find/FindWindow.cs
@@ -153,8 +153,8 @@ public FindWindow(FindViewModel vm)
Content = grid;
- Act... | [
"src/ui/Features/Edit/Find/FindWindow.cs",
"src/ui/Features/Edit/Replace/ReplaceWindow.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,586 | issue_to_patch | Fix layout shift when found text contains newlines in Find/Replace | ## Problem
When searching with a regex pattern containing `\n` (e.g. `\]\n`), the matched text can include a literal newline character. This newline was embedded directly into the "Found '…' in line X, position Y" status message and displayed in a plain `TextBlock` in the main window footer. The TextBlock render... | b297031e86159449b5147accbfca2e75c694a57a | bc2e79a81b84c7be52005d95a274584c5c71384a | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index f31484455db..e3910859d4b 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -9681,7 +9681,7 @@ public async Task HandleFindResult(FindViewModel result)
Subtitl... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Ocr/FixEngine/GuessUsedItem.cs",
"src/ui/Features/Ocr/FixEngine/ReplacementUsedItem.cs",
"src/ui/Features/Tools/SplitBreakLongLines/SplitBreakLongLinesViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,587 | issue_to_patch | Fix text wrapping in main edit box with color tags enabled | This has been a major headache since Avalonia 12.0.4 introduced TextRunCache and cached bidi-run changes in the text stack, with some regressions and incompatibilities that have remained unfixed so far.
One regression is that in our main edit box when color tags are enabled, turning on text wrapping to match the beh... | b297031e86159449b5147accbfca2e75c694a57a | 8398ba46da57f37c060c8960a9aa7ed4d88bf17b | diff --git a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
index bad485b740..bac4a685a8 100644
--- a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
+++ b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
@@ -1762,7 +1762,6 @@ private static Text... | [
"src/ui/Features/Main/Layout/InitListViewAndEditBox.cs",
"src/ui/UI.csproj"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,581 | issue_to_patch | Bug Report 2: Pure Audio to Video Burn-In Passes 0x0 Resolution to FFmpeg
Description:
When attempting to use the Video -> Burn-In Subtitles feature with only a subtitle file and a pure audio file (.wav/.mp3) loaded in the main workspace (no background video file preset), it fails to pass user-defined canvas constrai... | Fix burn-in passing 0x0 resolution to ffmpeg for audio-only input | Fixes #11570
## Problem
With only a subtitle and a pure audio file (.wav/.mp3) loaded (karaoke workflow), *Video -> Generate video with burned-in subtitles* passed `-vf "scale=0:0,..."` and `-s 0x0` to ffmpeg - even when the user typed a valid resolution like 1920x1080 in the fields.
## Root cause
1. The parsed med... | b297031e86159449b5147accbfca2e75c694a57a | 60d0b4657f448d345f31434619de7bc77abce9eb | diff --git a/src/ui/Features/Video/BurnIn/BurnInJobItem.cs b/src/ui/Features/Video/BurnIn/BurnInJobItem.cs
index 028c29e923f..cf59932196a 100644
--- a/src/ui/Features/Video/BurnIn/BurnInJobItem.cs
+++ b/src/ui/Features/Video/BurnIn/BurnInJobItem.cs
@@ -25,6 +25,12 @@ public partial class BurnInJobItem : ObservableObjec... | [
"src/ui/Features/Video/BurnIn/BurnInJobItem.cs",
"src/ui/Features/Video/BurnIn/BurnInViewModel.cs",
"src/ui/Logic/Media/FfmpegGenerator.cs"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,577 | issue_to_patch | Fix a couple of wrongly saved settings names | `MainTextBoxUnbrekNoSpace` -> `MainTextBoxUnbreakNoSpace`
`DarkThemeSelectedBackgroundColor` saved wrongly as `DarkThemeBackColor` | e7ce3d3c86ee4e66c101acd98360ca46fb10f590 | 0c58c3a226ec8e89e3dba9c29ab786251653c06d | diff --git a/src/libse/Settings/Settings.cs b/src/libse/Settings/Settings.cs
index e712d5b2115..e91ea0be51d 100644
--- a/src/libse/Settings/Settings.cs
+++ b/src/libse/Settings/Settings.cs
@@ -8551,7 +8551,7 @@ internal static void ReadShortcuts(XmlDocument doc, Shortcuts shortcuts)
shortcuts.MainT... | [
"src/libse/Settings/Settings.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,574 | issue_to_patch | Fix latent NRE in Reopen seek and remove dead local | ## Summary
Two small fixes found while bug-hunting the recent commits:
1. **Latent NRE in the Reopen video-seek flow** (`MainViewModel.cs`). The deferred seek lambda re-read the `SelectedSubtitle` *property* instead of the already null-checked local snapshot `s`:
```csharp
var s = SelectedSubtitle;
if (vp !... | e1da4b5950dd14f4d66ffa797d3782f6c58e6eb9 | ef733803bc883c512fe5a5128f61031f7ec610e4 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 500876166f..f31484455d 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -1834,7 +1834,7 @@ private void CommandFileReopen(RecentFile recentFile)
if (vp != nu... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Logic/SubtitleTextInfoHelper.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,573 | issue_to_patch | Expose accessible names on main editor controls (#11553) | Part of #11553 (screen-reader accessibility). Focused on the main editor's time/duration/text fields plus a few easy custom-drawn controls.
## Problem
Screen readers read a control's UI Automation peer `Name`. The custom `TimeCodeUpDown` / `SecondsUpDown` controls put keyboard focus on an inner `PART_TextBox` whose na... | 59ac294ce065c53ab65ad9222ba05a9b013f15db | b9814c775bc420754f4656191a669b71eb9547e4 | diff --git a/src/ui/Controls/SecondsUpDown.cs b/src/ui/Controls/SecondsUpDown.cs
index 2f5d31321ae..7a876d4d8a9 100644
--- a/src/ui/Controls/SecondsUpDown.cs
+++ b/src/ui/Controls/SecondsUpDown.cs
@@ -1,4 +1,5 @@
using Avalonia;
+using Avalonia.Automation;
using Avalonia.Controls;
using Avalonia.Controls.Primitives... | [
"src/ui/Controls/SecondsUpDown.cs",
"src/ui/Controls/TimeCodeUpDown.cs",
"src/ui/Features/Main/Layout/InitListViewAndEditBox.cs",
"src/ui/Features/Options/Settings/WaveformThemes/WaveformPreviewControl.cs",
"src/ui/Features/Shared/ColorPicker/ColorWheelControl.cs",
"src/ui/Features/Tools/BeautifyTimeCodes... | [] | diff --git a/tests/UI/Logic/Accessibility/EditBoxAccessibilityNameTests.cs b/tests/UI/Logic/Accessibility/EditBoxAccessibilityNameTests.cs
new file mode 100644
index 00000000000..37d120a0f97
--- /dev/null
+++ b/tests/UI/Logic/Accessibility/EditBoxAccessibilityNameTests.cs
@@ -0,0 +1,115 @@
+using System.Linq;
+using Av... | true | |
SubtitleEdit/subtitleedit | 11,572 | issue_to_patch | Fix stale ShortcutManager numpad-operator test | ## Problem
`ShortcutManagerTests.GetShortcutKeyNameDifferentiatesNumpad` had four `InlineData` rows that had been failing since 2026-06-12:
```
Key.Add + NumPadAdd → expected "NumPadAdd", actual "Add"
Key.Subtract + NumPadSubtract → expected "NumPadSubtract", actual "Subtract"
Key.Divide + NumPadDivi... | 9c020fadb0552915025b7c1670b20715e7abb3c1 | 9d325fb784e6d08d0739871e7dbaf35864ba3eb6 | [
"tests/UI/Logic/ShortcutManagerTests.cs"
] | [] | diff --git a/tests/UI/Logic/ShortcutManagerTests.cs b/tests/UI/Logic/ShortcutManagerTests.cs
index c68971fe65..bfdeb326aa 100644
--- a/tests/UI/Logic/ShortcutManagerTests.cs
+++ b/tests/UI/Logic/ShortcutManagerTests.cs
@@ -40,10 +40,14 @@ public void GetShortcutKeyUsesPhysicalKeyForNumpad(Key key, PhysicalKey physical
... | true | ||
SubtitleEdit/subtitleedit | 11,571 | issue_to_patch | Update Polish translation
Update translation v5.0.0 - 12.06.2026
[Polish.json](https://github.com/user-attachments/files/28877039/Polish.json) | Update Polish translation | Updates the Polish translation from the `Polish.json` attached to #11564 (translated by Adam Malich).
## Changes
- **9 newly translated keys**: `general.selectForcedLines`, `general.selectNonForcedLines`, `options.settings.colorCharactersPerSecond`, `options.settings.colorWordsPerMinute`, `options.settings.musicSymbol... | 6332d60d4a17d81bcdde3d778ff936fc419e0ae8 | 817844482e886e0f30213dbcee2b4f35cd8a9ae6 | diff --git a/src/ui/Assets/Languages/Polish.json b/src/ui/Assets/Languages/Polish.json
index c3880877e9..f653b7394f 100644
--- a/src/ui/Assets/Languages/Polish.json
+++ b/src/ui/Assets/Languages/Polish.json
@@ -1,7 +1,7 @@
{
"title": "Subtitle Edit",
"version": "v5.0.0",
- "translatedBy": "Adam Malich - 6.0... | [
"src/ui/Assets/Languages/Polish.json"
] | [] | true | |
SubtitleEdit/subtitleedit | 11,566 | issue_to_patch | Align list box hover and unfocused selection styling with DataGrid | ### Summary
This updates the shared Avalonia `ListBoxItem` styling to match the selection-focus behavior I recently applied to `DataGrid` in #11562
> [!CAUTION]
> Merge #11562 first - this branch and the tweaks are on top of data grid tweaks.
### Changes
- Remove the grey background on unselected list ... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 343d476c65a1f6b7efd788e6635048551ff1daff | diff --git a/src/ui/Styles.axaml b/src/ui/Styles.axaml
index c7599beb29..f6e0d74cc4 100644
--- a/src/ui/Styles.axaml
+++ b/src/ui/Styles.axaml
@@ -1,4 +1,14 @@
-<Styles xmlns="https://github.com/avaloniaui">
+<Styles xmlns="https://github.com/avaloniaui"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"... | [
"src/ui/Styles.axaml"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,565 | issue_to_patch | Improve layout and spacing in Find and Replace dialogs | ## Summary
- Swap grid columns from `(Auto, Star)` to `(Star, Auto)` so the left side (search box and options) expands to fill available width, and the buttons column is sized to fit its content — eliminating the dead space on the right edge
- Remove the hardcoded 50 px right margin from the buttons panel
... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | bbbcbb6efc8e22dc5c0720b5a3a6b93442fde830 | diff --git a/src/ui/Features/Edit/Find/FindWindow.cs b/src/ui/Features/Edit/Find/FindWindow.cs
index 7244d73712f..e231e9b2921 100644
--- a/src/ui/Features/Edit/Find/FindWindow.cs
+++ b/src/ui/Features/Edit/Find/FindWindow.cs
@@ -38,17 +38,16 @@ public FindWindow(FindViewModel vm)
{
Content = Se.La... | [
"src/ui/Features/Edit/Find/FindWindow.cs",
"src/ui/Features/Edit/Replace/ReplaceWindow.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,561 | issue_to_patch | Refine DataGrid selection focus styling | Selected DataGrid rows looked the same regardless of whether the grid had focus, making it hard to tell at a glance which panel was active.
## Changes
- Show full-strength row highlight only while the DataGrid has focus.
- Dim the selection to a faint opacity when focus moves away.
I also noticed a fr... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 03083a6187e39c91e73bba567a05aa2480bf0821 | diff --git a/src/ui/Styles.axaml b/src/ui/Styles.axaml
index c7599beb29..db575629c4 100644
--- a/src/ui/Styles.axaml
+++ b/src/ui/Styles.axaml
@@ -1,4 +1,11 @@
-<Styles xmlns="https://github.com/avaloniaui">
+<Styles xmlns="https://github.com/avaloniaui"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"... | [
"src/ui/Styles.axaml"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,559 | issue_to_patch | Fix toggle focus shortcuts not working when waveform/video is undocked on Windows | ## Problem
The toggle focus shortcuts (grid↔waveform, textbox↔waveform) stopped working when the video/waveform controls were undocked into a separate window.
When the undocked waveform window had OS focus, calling `Focus()` on a control in the main window silently failed — Avalonia/Win32 will not give input focu... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 555ec8b46a3bc76b2b8187ef1694665800f8f482 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 784dcec916..7d850f6411 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -5710,7 +5710,7 @@ private void PlaySelectedLinesAndFocusWaveform()
{
if (PlayerSelected... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,558 | issue_to_patch | Rebuild toolbar icons when system dark/light mode changes | When Theme is set to System, switching macOS between dark and light mode fired ActualThemeVariantChanged but only re-applied button/menu styles — the toolbar PNG icons (loaded from Dark/ or Light/ theme folder at startup) were never reloaded, leaving them faded/inverted (see screenshot below).
Add a SystemThemeChang... | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 02efaab1e5181d68917ab554a901f99984591516 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index da6966fc21..62bb9b00bb 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -494,6 +494,7 @@ public MainViewModel(
AudioTraksMenuItem = new MenuItem();
Subtitle... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Logic/UiTheme.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,560 | issue_to_patch | Update Turkish.json | New string entries | 0cc660d4c08e2f7973b76e0ac978c2a21dca743e | 38d7556382d1796ea595cb985c0cd75b42a5ae91 | diff --git a/src/ui/Assets/Languages/Turkish.json b/src/ui/Assets/Languages/Turkish.json
index 1fe8c54635..6f7f4fc01b 100644
--- a/src/ui/Assets/Languages/Turkish.json
+++ b/src/ui/Assets/Languages/Turkish.json
@@ -1,7 +1,7 @@
{
"title": "Subtitle Edit",
"version": "v5.0.0",
- "translatedBy": "Utku Gogus; Son g... | [
"src/ui/Assets/Languages/Turkish.json"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,556 | issue_to_patch | Update Portuguese (Brazil).json | 30ead16477c5d4e3a9759fa6295b96285435f3f7 | a51138594951d2373bfff8f61967a7e280622ef3 | diff --git a/src/ui/Assets/Languages/Portuguese (Brazil).json b/src/ui/Assets/Languages/Portuguese (Brazil).json
index 1938ef4cb5..ba3c732dfc 100644
--- a/src/ui/Assets/Languages/Portuguese (Brazil).json
+++ b/src/ui/Assets/Languages/Portuguese (Brazil).json
@@ -476,7 +476,9 @@
"Seconds": "Segundos",
"SelectA... | [
"src/ui/Assets/Languages/Portuguese (Brazil).json"
] | [] | true | |||
SubtitleEdit/subtitleedit | 11,550 | issue_to_patch | Fix: Toggle focus grid↔waveform not working in waveform→grid direction | ## Problem
The "Toggle focus between subtitle grid and waveform/spectrogram" shortcut only worked in one direction. Pressing it from the subtitle grid moved focus to the waveform correctly, but pressing it again from the waveform did nothing — focus stayed on the waveform.
## Root cause
`ToggleFocusGri... | 912297657724310069126866178db1ff3cd15bb3 | c3ff47a0f87005be9af4c60d9b9c4f9cbb891d1b | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index da6966fc21..28b88f34cd 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -11420,6 +11420,19 @@ private void FocusEditTextBox()
});
}
+ private void FocusSub... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,554 | issue_to_patch | SE5 rc3: (still) CPS/line-length counting issues
The "cps only" options still have some issues: in the following example, the cps counting in the upper left corner of the text box does not change in v5, but in the grid the entry is correctly unflagged.
<img width="2118" height="1264" alt="Image" src="https://github.... | Fix CPS metrics and error highlighting consistency | This PR Fixes #11549 and CPS errors gated on wrong settings flags.
## Problem
Two related CPS issues in the editor:
**1. CPS calculation inconsistency**
The edit-panel Chars/sec label derived CPS from the total-length counting path, so strategies such as *Count all except space, CPS only* and *No ... | 30ead16477c5d4e3a9759fa6295b96285435f3f7 | 7296aa3dd47e7acf88a9fda9dd6a73791a5193b9 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index 50e3f1ce699..784dcec9166 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -17900,13 +17900,11 @@ private void MakeSubtitleTextInfoOriginal(string text, SubtitleLineViewModel ... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Main/SubtitleLineViewModel.cs",
"src/ui/Logic/SubtitleTextInfoHelper.cs",
"tests/UI/Features/Main/SubtitleMetricsRegressionTests.cs",
"tests/libse/Core/StringExtensionsTest.cs"
] | [] | diff --git a/tests/UI/Features/Main/SubtitleMetricsRegressionTests.cs b/tests/UI/Features/Main/SubtitleMetricsRegressionTests.cs
new file mode 100644
index 00000000000..089792c3cb4
--- /dev/null
+++ b/tests/UI/Features/Main/SubtitleMetricsRegressionTests.cs
@@ -0,0 +1,99 @@
+using Avalonia.Media;
+using Nikse.SubtitleE... | true |
SubtitleEdit/subtitleedit | 11,555 | issue_to_patch | Add bookmark count status line to bookmarks list window | This PR adds bookmark count status line to bookmarks list window.
Changes
- BookmarksListViewModel: adds a CountText observable property (e.g. "Count: 3") backed by a CollectionChanged subscription on Subtitles, so the count stays in sync automatically as items are removed
- BookmarksListWindow: adds a status ro... | 30ead16477c5d4e3a9759fa6295b96285435f3f7 | 79236cfb8a2c756f864d92698f5f519f15b2f725 | diff --git a/src/ui/Features/Shared/Bookmarks/BookmarksListViewModel.cs b/src/ui/Features/Shared/Bookmarks/BookmarksListViewModel.cs
index 7a78e29924e..daf39a19dc9 100644
--- a/src/ui/Features/Shared/Bookmarks/BookmarksListViewModel.cs
+++ b/src/ui/Features/Shared/Bookmarks/BookmarksListViewModel.cs
@@ -18,6 +18,7 @@ p... | [
"src/ui/Features/Shared/Bookmarks/BookmarksListViewModel.cs",
"src/ui/Features/Shared/Bookmarks/BookmarksListWindow.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,546 | issue_to_patch | Make bookmark add/toggle shortcuts work from the text editor | Move AddOrEditBookmark and ToggleBookmarkSelectedLinesNoText from ShortcutCategory.SubtitleGrid to General so they fire regardless of focus, consistent with GoToNextBookmark, GoToPreviousBookmark, and ListBookmarks which were already General.
## Context
Bookmark shortcuts were split across two categories in an... | 912297657724310069126866178db1ff3cd15bb3 | 3f1dff723983b10d3846c4fa919b26c3a1e62e2a | diff --git a/src/ui/Logic/ShortcutsMain.cs b/src/ui/Logic/ShortcutsMain.cs
index ae1ce107d5..71db035e47 100644
--- a/src/ui/Logic/ShortcutsMain.cs
+++ b/src/ui/Logic/ShortcutsMain.cs
@@ -430,8 +430,8 @@ private static List<AvailableShortcut> GetAllAvailableShortcuts(MainViewModel vm
AddShortcut(shortcuts, vm.D... | [
"src/ui/Logic/ShortcutsMain.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,538 | issue_to_patch | Fix Common Errors: inline editor and grid consistency improvements | This PR enhances the appearance of the Fix Common Errors subtitle grid and edit box. There are no functional changes, only aesthetic improvements. The fixes grid at the top has not been modified at all (see #11547 for a tweak). See screenshot below. I deliberately set a monospace subtitle edit box font to make it obv... | 912297657724310069126866178db1ff3cd15bb3 | 698e784334134c44cd2295f1c865d4f5c36598a8 | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index da6966fc21..5c907c79c1 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -7823,6 +7823,7 @@ public void ApplySettings()
_errorColor = Se.Settings.General.ErrorColor... | [
"src/ui/Features/Main/MainViewModel.cs",
"src/ui/Features/Main/SubtitleLineViewModel.cs",
"src/ui/Features/Tools/FixCommonErrors/FixCommonErrorsViewModel.cs",
"src/ui/Features/Tools/FixCommonErrors/FixCommonErrorsWindow.cs",
"src/ui/Logic/SubtitleTextInfoHelper.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,551 | issue_to_patch | Fix Shift+End scrolling to top after large-range selection (#11529 regression) | ## Problem
After #11529 (5d4328162), pressing Shift+End (or Shift+Home) in the subtitle grid with a large file scrolls the view back to the top instead of keeping the selection visible. The selection itself is correct — the status bar shows the right count — but the grid repositions to row 1.
## Root cause
... | 912297657724310069126866178db1ff3cd15bb3 | 01e91b98320c3a0f77f431fa3190b3ffc12b1a4b | diff --git a/src/ui/Features/Main/MainViewModel.cs b/src/ui/Features/Main/MainViewModel.cs
index da6966fc21..f0993edb5b 100644
--- a/src/ui/Features/Main/MainViewModel.cs
+++ b/src/ui/Features/Main/MainViewModel.cs
@@ -17572,7 +17572,8 @@ private void HandleShiftArrowSelection(int direction)
// Shift+Ctrl+Ho... | [
"src/ui/Features/Main/MainViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,544 | issue_to_patch | Fix bookmark icon misaligning row numbers in subtitle grid | ## Problem
When a subtitle row is bookmarked, an icon appears in the `#` column alongside the row number. Because the icon used an `IsVisible` binding (which collapses the element in Avalonia when `false`), bookmarked rows were wider by the icon's width, shifting their row numbers to the right relative to non-bo... | 912297657724310069126866178db1ff3cd15bb3 | 9bccf3b51164232048a1ed99c3cfd95c5488f641 | diff --git a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
index d70ee0dc34..35c42a00d2 100644
--- a/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
+++ b/src/ui/Features/Main/Layout/InitListViewAndEditBox.cs
@@ -118,6 +118,7 @@ public static Grid Ma... | [
"src/ui/Features/Main/Layout/InitListViewAndEditBox.cs",
"src/ui/Logic/ValueConverters/NullToOpacityConverter.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,547 | issue_to_patch | Fix vertical text alignment in diff grid cells | This PR is related to #11538 - Fix Common Errors visual / usability improvements
In DataGrids that use `TextDiffHighlighter` (Fix Common Errors, Multiple Replace), the Before/After columns use `DataGridTemplateColumn` with a `TextBlock` child. Because `TextBlock` renders its content at the top of its layout box ... | 912297657724310069126866178db1ff3cd15bb3 | cb0a4c984b7be8687f610b3f3aae387223e4425d | diff --git a/src/ui/Features/Files/Compare/TextDiffHighlighter.cs b/src/ui/Features/Files/Compare/TextDiffHighlighter.cs
index 109fdd4d77..98c7dd1fb2 100644
--- a/src/ui/Features/Files/Compare/TextDiffHighlighter.cs
+++ b/src/ui/Features/Files/Compare/TextDiffHighlighter.cs
@@ -1,5 +1,6 @@
using Avalonia.Controls;
... | [
"src/ui/Features/Files/Compare/TextDiffHighlighter.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,540 | issue_to_patch | Add Zonos TTS (CrispASR) engine | ## Summary
Adds **Zyphra Zonos‑v0.1** as a new local TTS engine running on the shared **CrispASR** runtime (`--backend zonos-tts`), alongside the existing Qwen3 / IndexTTS / VoxCPM2 / CosyVoice3 CrispASR engines. Zonos is voice‑cloning‑only (reference WAV, internal transcription), so the engine is modelled closely on ... | 912297657724310069126866178db1ff3cd15bb3 | 8e0f8148ac4163a8ce840b5aa57a5a4f432fc988 | diff --git a/src/ui/DependencyInjectionExtensions.cs b/src/ui/DependencyInjectionExtensions.cs
index ba069f9bd2..e1c457131b 100644
--- a/src/ui/DependencyInjectionExtensions.cs
+++ b/src/ui/DependencyInjectionExtensions.cs
@@ -249,6 +249,7 @@ public static void AddSubtitleEditServices(this IServiceCollection collection... | [
"src/ui/DependencyInjectionExtensions.cs",
"src/ui/Features/Video/TextToSpeech/DownloadTts/DownloadTtsViewModel.cs",
"src/ui/Features/Video/TextToSpeech/Engines/ZonosTtsCrispAsr.cs",
"src/ui/Features/Video/TextToSpeech/TextToSpeechViewModel.cs",
"src/ui/Features/Video/TextToSpeech/TextToSpeechWindow.cs",
... | [] | true | ||
SubtitleEdit/subtitleedit | 11,537 | issue_to_patch | Fix CPS-too-high Duration fallback gated on wrong color setting | The fallback that highlights Duration when the CPS column is hidden was gated on ColorDurationTooShort instead of ColorCharactersPerSecond, causing it to fire based on a semantically unrelated setting.
## What
The "surface CPS-too-high on the Duration cell when the CPS column is hidden" fallback in `SubtitleL... | c399c5334d9a94fad83263fff08bd1bb62a7b435 | 10a2bee2f947b7c1a365ea748e094f28b21e72d3 | diff --git a/src/ui/Features/Main/SubtitleLineViewModel.cs b/src/ui/Features/Main/SubtitleLineViewModel.cs
index e4f207ea5f..08cf170350 100644
--- a/src/ui/Features/Main/SubtitleLineViewModel.cs
+++ b/src/ui/Features/Main/SubtitleLineViewModel.cs
@@ -342,7 +342,7 @@ public IBrush DurationBackgroundBrush
if... | [
"src/ui/Features/Main/SubtitleLineViewModel.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,535 | issue_to_patch | Tweak: change default bookmark color to dark amber for light theme readability | The default bookmark color (gold, `#FFD700`) is nearly invisible on light backgrounds due to insufficient contrast.
Changes the default to dark amber (`#C07800`), which retains the warm bookmark-feel of gold while being legible on both light and dark themes.
| | Before | After |
|---|---|---|
| C... | c399c5334d9a94fad83263fff08bd1bb62a7b435 | c5592dffd1d055bc1cfec6e9560763dfec30bc3c | diff --git a/src/ui/Logic/Config/SeAppearance.cs b/src/ui/Logic/Config/SeAppearance.cs
index 51c7779067..b134bb69af 100644
--- a/src/ui/Logic/Config/SeAppearance.cs
+++ b/src/ui/Logic/Config/SeAppearance.cs
@@ -95,7 +95,7 @@ public SeAppearance()
DarkModeForegroundColor = new Color(255, 220, 220, 220).FromColo... | [
"src/ui/Logic/Config/SeAppearance.cs"
] | [] | true | ||
SubtitleEdit/subtitleedit | 11,530 | issue_to_patch | Statistics: fix gap average calculation and small cleanups | ## Summary
- Fix operator precedence bug in gap average: `gapTotal / Count - 1` divided by the paragraph count and then subtracted 1 ms, instead of dividing by the number of gaps (`Count - 1`)
- Avoid O(n²) `GetIndex(p)` linear search per paragraph in `CalculateGeneralStatistics` by using an indexed for loop
- Reuse th... | 2cdcd068470e71b4e4dbde6de47b0a528229c0de | a874329509c72d3da6ad0f8515462f294610e72a | diff --git a/src/ui/Features/Files/Statistics/StatisticsViewModel.cs b/src/ui/Features/Files/Statistics/StatisticsViewModel.cs
index 2b92e369494..db1916baa3e 100644
--- a/src/ui/Features/Files/Statistics/StatisticsViewModel.cs
+++ b/src/ui/Features/Files/Statistics/StatisticsViewModel.cs
@@ -51,7 +51,7 @@ public int Co... | [
"src/ui/Features/Files/Statistics/StatisticsViewModel.cs"
] | [] | true | ||
SwensenSoftware/unquote | 172 | issue_to_patch | Reduce FSharp.Core dep version?
See https://github.com/SwensenSoftware/unquote/pull/166#issuecomment-2039170789 TL;DR could the FSharp.Core dep be lowered back down to 6.0.7 (or lower) please?
I'll make a PR soon, unless this is being done intentionally for some reason?
----
Updating the FSharp.Core causes a ... | Target FSharp.Core 6.0.0 as min supported version | - [x] Target FSharp.Core 6.0.0 in main Unquote library project
- [x] Create new UnquoteTests.FScore6 project that targets net8 and FSharp.Core 6.0.0 using external links to the main UnquoteTests project (which targets net8 and the latest FSharp.Core 8.0.403 giving us wide coverage)
- [x] Update UnquoteTests and all V... | eda4bafeaadcb46dd2599f5d4c2139199f7f1ef2 | 014d41750d4bc6135bfa18444ce9253328af7e0a | diff --git a/Unquote.sln b/Unquote.sln
index ccce583..4440367 100644
--- a/Unquote.sln
+++ b/Unquote.sln
@@ -21,6 +21,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "nunit3", "verify\nunit3\nun
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "xunit2", "verify\xunit2\xunit2.fsproj", "{AAA79FB0... | [
"Unquote.sln",
"src/Unquote/Unquote.fsproj",
"src/Unquote/Unquote.nuspec",
"src/Unquote/packages.lock.json",
"test/UnquoteTests.FSCore6/UnquoteTests.FSCore6.fsproj",
"test/UnquoteTests.FSCore6/packages.lock.json",
"test/UnquoteTests/DecompilationTests.fs",
"test/UnquoteTests/Program.fs",
"test/Unquo... | [] | diff --git a/test/UnquoteTests.FSCore6/UnquoteTests.FSCore6.fsproj b/test/UnquoteTests.FSCore6/UnquoteTests.FSCore6.fsproj
new file mode 100644
index 0000000..99dbaf2
--- /dev/null
+++ b/test/UnquoteTests.FSCore6/UnquoteTests.FSCore6.fsproj
@@ -0,0 +1,24 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ ... | true |
SwensenSoftware/unquote | 166 | issue_to_patch | Upgrade sdk and test / verify projects to net8; unquote itself stays at netstandard2.0
* Upgrade sdk (global.json) and test / verify projects to net8; unquote itself stays at netstandard2.0
* FSharp.Core 4.7.2 -> 8.0.100
* Upgrade to latest minor versions of nunit3, xunit2, and expecto9 as well as well as latest Mic... | Upgrade sdk and test / verify projects to net8; unquote itself stays at netstandard2.0 | See https://github.com/SwensenSoftware/unquote/issues/167 | 65a387801325d70ec03c16e6da8b58a468cbd2f3 | 3795e78acf2e3c960f610116d61c45ab5fe2c007 | diff --git a/global.json b/global.json
index 92c9d8f..c19a2e0 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "5.0.202",
+ "version": "8.0.100",
"rollForward": "latestMinor"
}
}
diff --git a/src/Unquote/Decompilation.fs b/src/Unquote/Decompilation.fs
index 74cb913..... | [
"global.json",
"src/Unquote/Decompilation.fs",
"src/Unquote/Unquote.fsproj",
"src/Unquote/packages.lock.json",
"test/UnquoteTests/DecompilationTests.fs",
"test/UnquoteTests/UnquoteTests.fsproj",
"test/UnquoteTests/packages.lock.json",
"verify/expecto9/expecto9.fsproj",
"verify/expecto9/packages.lock... | [] | diff --git a/test/UnquoteTests/DecompilationTests.fs b/test/UnquoteTests/DecompilationTests.fs
index d0f9c03..ac8d0da 100644
--- a/test/UnquoteTests/DecompilationTests.fs
+++ b/test/UnquoteTests/DecompilationTests.fs
@@ -75,10 +75,10 @@ let ``simple let binding`` () =
[<Fact>]
let ``PropertyGet: instance Item getter ... | true |
SwensenSoftware/unquote | 168 | issue_to_patch | Misc fixes and enhancements mostly around newer language features (namely struct tuples and records)
* Add `struct` prefix to struct tuples and records (decompilation)
* Erase implicit `Module` suffixes (decompilation)
* Use `Choice`, `Result`, `voption`, `Handler`, `Set`, `ResizeArray` compiler aliases in type sign... | [Final] Misc fixes and enhancements mostly around newer language features (namely struct tuples and records) | Local copy of https://github.com/SwensenSoftware/unquote/pull/161 with this and that tweaks. | 192067c6c8e3508611cdd5aca521f70d05b5829b | abde088ec0d1145ec59c2096bd98203a0388c6be | diff --git a/src/Unquote/Decompilation.fs b/src/Unquote/Decompilation.fs
index c2a06b8..42e429d 100644
--- a/src/Unquote/Decompilation.fs
+++ b/src/Unquote/Decompilation.fs
@@ -41,7 +41,7 @@ let decompile expr =
if ER.isOpenModule pi.DeclaringType then
sprintf "%s" pi.Name
... | [
"src/Unquote/Decompilation.fs",
"src/Unquote/ExtraReflection.fs",
"test/UnquoteTests/DecompilationTests.fs",
"test/UnquoteTests/FSharpNameTests.fs"
] | [] | diff --git a/test/UnquoteTests/DecompilationTests.fs b/test/UnquoteTests/DecompilationTests.fs
index ac8d0da..3bfc35a 100644
--- a/test/UnquoteTests/DecompilationTests.fs
+++ b/test/UnquoteTests/DecompilationTests.fs
@@ -1456,3 +1456,80 @@ let ``issue 115: higher precision DateTimeOffset decompilation`` () =
let d... | true |
SwensenSoftware/unquote | 158 | issue_to_patch | Default output for DateTime comparisons can be confusing
The following test will fail, since the DateTime values will be slightly different.
```[<Theory>]
let ``Test`` =
let actual = DateTime.UtcNow
let expected = DateTime.UtcNow
test <@ actual = expected @>`
```
The exception output:
```
... | Issue #155: decompile DateTime with higher precision | See #155
Use this UTC / ISO format: `x.ToUniversalTime().ToString("o", System.Globalization.CultureInfo.InvariantCulture)`
TODO: Maybe implement for `DateTimeOffset` if needed | 98956140680bb4c0fdd285f8ecbd01c185f0fc89 | ef85aff2df278251c6ca1ddb24333da3bb9fa408 | diff --git a/src/Unquote/Decompilation.fs b/src/Unquote/Decompilation.fs
index 84a5120..74cb913 100644
--- a/src/Unquote/Decompilation.fs
+++ b/src/Unquote/Decompilation.fs
@@ -179,6 +179,13 @@ let decompile expr =
sprintf "%A" x.InnerException
| :? Exception as x ->
sprin... | [
"src/Unquote/Decompilation.fs",
"src/Unquote/Unquote.fsproj",
"test/UnquoteTests/DecompilationTests.fs"
] | [] | diff --git a/test/UnquoteTests/DecompilationTests.fs b/test/UnquoteTests/DecompilationTests.fs
index 576f629..d0f9c03 100644
--- a/test/UnquoteTests/DecompilationTests.fs
+++ b/test/UnquoteTests/DecompilationTests.fs
@@ -2,7 +2,10 @@
module DecompilationTests
open Xunit
open Swensen.Unquote
-open Swensen.Utils
+
+le... | true |
SwensenSoftware/unquote | 156 | issue_to_patch | V6: modernize build tooling around `dotnet` cli | - [x] drop support for net45 - target netstand2.0 exclusively
- [x] re-organize projects under /src, /test, /verify project structure
- [x] use `dotnet pack` to build nuget packages | c61b9661bee479e0967a449c5e26f3ab21fd6b84 | 3f71405f319735d014c9c13ba8cc3af1c16ea82b | diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..176a458
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,1 @@
+* text=auto
diff --git a/.gitignore b/.gitignore
index 62accad..9484e82 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,8 @@ builds/
packages/
.vs/
*.suo
+.ionide
+
+.fake
... | [
".gitattributes",
".gitignore",
".nuget/nuget.config",
".nuget/nuget.targets",
".nuget/packages.config",
"LICENSE",
"Makefile",
"NOTICE",
"README.md",
"Unquote.NetStandard/AssemblyInfo.fs",
"Unquote.NetStandard/Unquote.NetStandard.fsproj",
"Unquote.netstandard.sln",
"Unquote.sln",
"Unquote... | [] | diff --git a/UnquoteTests/AssertionOperatorsTests.fs b/test/UnquoteTests/AssertionOperatorsTests.fs
similarity index 78%
rename from UnquoteTests/AssertionOperatorsTests.fs
rename to test/UnquoteTests/AssertionOperatorsTests.fs
index 765e74e..573a690 100644
--- a/UnquoteTests/AssertionOperatorsTests.fs
+++ b/test/Unquo... | true | |
SwensenSoftware/unquote | 146 | issue_to_patch | Target FSharp.Core 4.6.2 and catch up on support for new quotations | Build related
- [x] Upgrade all projects to target FSharp.Core 4.6.2 while continuing to target .NET 4.5 and NetStandard 2.0 (see if possible to not make FSharp.Core 4.6.2 dependency in the distributed .NET 4.5 package)
- [x] Drop support for NUnit v1, Xunit v1, Mbunit v3, and Fuchu... these are all long deprecated... | ba4bae832b0f5baec6acdb67f1f67e52236f8ae3 | a2ee1b33a8c5c246c7aa31911cc82eca682b13d5 | diff --git a/Unquote.netstandard.sln b/Unquote.netstandard.sln
index 4839af0..cfe2a3e 100644
--- a/Unquote.netstandard.sln
+++ b/Unquote.netstandard.sln
@@ -1,19 +1,18 @@
-
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.26124.0
+# Visual Studio Version 16
+V... | [
"Unquote.netstandard.sln",
"Unquote.nuspec",
"Unquote.sln",
"Unquote/Assertions.fs",
"Unquote/Decompilation.fs",
"Unquote/Evaluation.fs",
"Unquote/ExtraPatterns.fs",
"Unquote/ExtraReflection.fs",
"Unquote/Reduction.fs",
"Unquote/Unquote.fsproj",
"Unquote/packages.config",
"UnquoteTests.NetCore... | [] | true | ||
SwensenSoftware/unquote | 145 | issue_to_patch | Operators defines
using the following redefinition of = to == for aligment purpose, Unquote is not decompiling it as expected:
```
[<AutoOpen>]
module EqualTest =
let (==) = (=)
decompile <@ 1 == 2 @>
```
returns "(==) 1 2"
This is due to the InfixCallOrApplication that is not trying to check that... | issue 144: Fix point free op decompilation | Fix #144
The InfixCallOrApplication active pattern didn't check for one by one arguments application.
| 2bc41229aee4807658eeb92ab707706ad397c1b1 | cc4d673bebda045fbedf3211174e3d1ea0417796 | diff --git a/Unquote/ExtraPatterns.fs b/Unquote/ExtraPatterns.fs
index 78998b3..9dabe00 100644
--- a/Unquote/ExtraPatterns.fs
+++ b/Unquote/ExtraPatterns.fs
@@ -45,7 +45,9 @@ let (|LambdaValue|_|) = function
///Must come before Call pattern.
let (|InfixCallOrApplication|_|) = function
//when the op is compiled... | [
"Unquote/ExtraPatterns.fs",
"UnquoteTests/DecompilationTests.fs"
] | [] | true | |
SwensenSoftware/unquote | 135 | issue_to_patch | New assertion checker: `trap` | I've been using the following custom assertion checker in my test projects for quite some time:
```fsharp
val trap : Expr<'T> -> 'T
```
This evaluates the expression tree as normal, returning the result if successful but outputing the full evaluation metadata if exceptional. This can be quite useful for asserting p... | 210c14689593cda9e4525bcedf36f88c96da343e | 159e073aa8368cfb4754127e3950c34bc8eca763 | diff --git a/Unquote/Assertions.fs b/Unquote/Assertions.fs
index 54cd3c6..0aad69f 100644
--- a/Unquote/Assertions.fs
+++ b/Unquote/Assertions.fs
@@ -205,6 +205,20 @@ let inline raisesWith<'a when 'a :> exn> (expr:Expr) (exnWhen: 'a -> Expr<bool>)
with
| e -> raise e
+///Evaluate the given boolea... | [
"Unquote/Assertions.fs",
"UnquoteTests/AssertionOperatorsTests.fs"
] | [] | true | ||
SwensenSoftware/unquote | 128 | issue_to_patch | implement Expecto Support | I am not exactly sure, if this is all correct, but it works for me.
I was wondering about, that the VerifyExpectoProject was not really failing without the implementation.
| 924f2fb063e01288361d85dc24b9881a16e1e507 | aa2b8103f2c7fa53eb3b8dab1902dcac66eaafff | diff --git a/Unquote.sln b/Unquote.sln
index 6c0e3f7..e4fd543 100644
--- a/Unquote.sln
+++ b/Unquote.sln
@@ -45,6 +45,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "VerifyFuchuSupport", "Verif
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "VerifyNunit3Support", "VerifyNunit3Support\Verify... | [
"Unquote.sln",
"Unquote/Assertions.fs",
"VerifyExpectoSupport/App.config",
"VerifyExpectoSupport/Program.fs",
"VerifyExpectoSupport/VerifyExpectoSupport.fsproj",
"VerifyExpectoSupport/packages.config"
] | [
{
"comment": "Did you mean `yield Expecto` here?",
"path": "Unquote/Assertions.fs",
"hunk": "@@ -82,13 +83,19 @@ module Internal =\n //issue in vs 2010: http://stackoverflow.com/questions/2024036/strange-fsi-exe-behavior\r\n if assemblies |> Seq.exists (fun a -> a... | true | ||
SwensenSoftware/unquote | 122 | issue_to_patch | Add support for evaluating private F# unions & records | Not sure whether by design, but currently unquote seems to be failing when evaluating private F# unions & records. This PR attempts to address the issue.
| e0992f10cb56d8c92b819cf3afc9c4a34d801207 | 2e2ee2265302fb4e38d34f07be96813cd300d3e0 | diff --git a/Unquote/Evaluation.fs b/Unquote/Evaluation.fs
index d6d0e5f..db7211e 100644
--- a/Unquote/Evaluation.fs
+++ b/Unquote/Evaluation.fs
@@ -183,9 +183,9 @@ let eval env expr =
evalAll env args |> Seq.iteri(fun i e -> arrSet.Invoke(arr, [|box i; box e|]) |> ignore)
box arr
|... | [
"Unquote/Evaluation.fs",
"UnquoteTests/EvaluationTests.fs"
] | [] | true | ||
SwensenSoftware/unquote | 121 | issue_to_patch | Provide documentation for the operators | and fixed typos
| 6ff452c5ceeadb598223ded948d17d02cfe25943 | bab19625880b0ed2e5d198e507be31b220d5d8b1 | diff --git a/Unquote/Assertions.fs b/Unquote/Assertions.fs
index b0bb458..c3b92f8 100644
--- a/Unquote/Assertions.fs
+++ b/Unquote/Assertions.fs
@@ -146,7 +146,7 @@ let inline test (expr:Expr<bool>) =
with
| e -> raise e //we catch and raise e here to hide stack traces for clean test framework outpu... | [
"Unquote/Assertions.fs"
] | [] | true | ||
SwensenSoftware/unquote | 116 | issue_to_patch | When running Fuchu tests via FSI, failing Unquote assertions do not throw an exception
We're currently writing tests for our .fsx scripts by writing Fuchu tests inside another .fsx that loads in the script under test; we then run the test .fsx via FSI during our build. Unfortunately, Unquote assertions (such as =!) de... | Fix #115 by testing for test frameworks before testing for FSI | This fixes #115.
| 897d93b3c6e36577b43d38e0bff5b97a16189c1a | ab278ecc61cb4d9913fb8cd8cde661e77da1fed8 | diff --git a/Unquote/Assertions.fs b/Unquote/Assertions.fs
index 1316cde..09d6260 100644
--- a/Unquote/Assertions.fs
+++ b/Unquote/Assertions.fs
@@ -69,36 +69,33 @@ module Internal =
printfn ""
- let assemblies = System.AppDomain.CurrentDomain.GetAssemblies()
- if assemblies |... | [
"Unquote/Assertions.fs"
] | [] | true | |
Sylius/Sylius | 19,056 | issue_to_patch | [DX] Break footer menu and shipment general templates into smaller hooks 2.2 | | Q | A
|-----------------|-----
| Branch? | 2.2
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? |
| Related tickets |
| License | MIT
<!--
- Bug fixes must be submitted against the 2.2 branch
- Features and deprecations must be submi... | 2b27c22ccab05c4f772f886861629d7752e53e5d | c01747140eb46e1f5596d8debcb8640dbcd6e2a7 | diff --git a/src/Sylius/Bundle/AdminBundle/Resources/config/app/twig_hooks/order/show.yaml b/src/Sylius/Bundle/AdminBundle/Resources/config/app/twig_hooks/order/show.yaml
index 692b16af150..ff204404430 100644
--- a/src/Sylius/Bundle/AdminBundle/Resources/config/app/twig_hooks/order/show.yaml
+++ b/src/Sylius/Bundle/Adm... | [
"src/Sylius/Bundle/AdminBundle/Resources/config/app/twig_hooks/order/show.yaml",
"src/Sylius/Bundle/AdminBundle/templates/order/show/content/sections/shipments/item/general.html.twig",
"src/Sylius/Bundle/AdminBundle/templates/order/show/content/sections/shipments/item/general/method.html.twig",
"src/Sylius/Bu... | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.