vdr-graphlcd/ShowReplayLogo.patch
2021-01-17 10:58:22 +01:00

23 lines
1.3 KiB
Diff

--- vdr-plugin-graphlcd-1.0.2/HISTORY.orig 2021-01-17 10:44:27.261268246 +0100
+++ vdr-plugin-graphlcd-1.0.2/HISTORY 2021-01-17 10:45:26.609536637 +0100
@@ -1,6 +1,9 @@
VDR Plugin 'graphlcd' Revision History
-------------------------------------
+2021-01-17
+- Fix name inconsistency between read and write of setup config value "ShowReplayLogo"
+
2020-08-19: Version 1.0.2
- Fixed VDR version detection in Makefile
--- vdr-plugin-graphlcd-1.0.2/menu.c.orig 2021-01-17 10:44:20.885239414 +0100
+++ vdr-plugin-graphlcd-1.0.2/menu.c 2021-01-17 10:46:28.168815025 +0100
@@ -87,7 +87,7 @@
SetupStore("ShowVolume", GraphLCDSetup.ShowVolume = newGraphLCDSetup.ShowVolume);
SetupStore("ShowNotRecording", GraphLCDSetup.ShowNotRecording = newGraphLCDSetup.ShowNotRecording);
SetupStore("IdentifyReplayType", GraphLCDSetup.IdentifyReplayType = newGraphLCDSetup.IdentifyReplayType);
- SetupStore("ReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo);
+ SetupStore("ShowReplayLogo", GraphLCDSetup.ShowReplayLogo = newGraphLCDSetup.ShowReplayLogo);
SetupStore("ModifyReplayString", GraphLCDSetup.ModifyReplayString = newGraphLCDSetup.ModifyReplayString);
SetupStore("ScrollMode", GraphLCDSetup.ScrollMode = newGraphLCDSetup.ScrollMode);
SetupStore("ScrollSpeed", GraphLCDSetup.ScrollSpeed = newGraphLCDSetup.ScrollSpeed);