-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MP1-5190: TVE: Add SymbolRate multiplier for DVB-C cards (Hauppauge W…
…inTV)
- Loading branch information
epbk
committed
Jan 2, 2024
1 parent
5021437
commit 85425e1
Showing
10 changed files
with
395 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
USE %TvLibrary%; | ||
|
||
ALTER TABLE "Card" | ||
ADD COLUMN "symbolRateMultiplier" INT NOT NULL DEFAULT 0; | ||
|
||
UPDATE Version SET versionNumber=62; |
9 changes: 9 additions & 0 deletions
9
TvEngine3/TVLibrary/SetupTv/62_upgrade_sqlserver_database.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
use %TvLibrary% | ||
GO | ||
|
||
ALTER TABLE Card | ||
ADD symbolRateMultiplier int NOT NULL CONSTRAINT DF_symbolRateMultiplier DEFAULT ((0)) | ||
GO | ||
|
||
UPDATE Version SET versionNumber=62 | ||
GO |
585 changes: 314 additions & 271 deletions
585
TvEngine3/TVLibrary/SetupTv/Dialogs/FormEditCard.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters