-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
1,575 additions
and
1,852 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
libcec (6.0.0.1~#DIST#) #DIST#; urgency=medium | ||
|
||
* fixed: | ||
* eventghost installation | ||
* loading and storing settings in eeprom | ||
* LibCecSharp callbacks could crash | ||
* updating the hdmi port setting or physical address while libCEC is | ||
running | ||
* various small robustness improvements and cosmetic changes | ||
* icons are no longer black transperant (and nearly invisible) | ||
* added: | ||
* v2.0 CEC version | ||
* new/missing functions and fields in LibCecSharp | ||
* firmware can now be upgraded in cec-tray | ||
* screensaver functionality in cec-tray | ||
* MuteAudio() command | ||
* removed: | ||
* CanPersistConfiguration() - use CanSaveConfiguration() instead | ||
* PersistConfiguration() - SetConfiguration() now stores the cfg in eeprom | ||
if available | ||
* EnableCallbacks() - use SetCallbacks() and DisableCallbacks()instead | ||
* changed: | ||
* unified LibCecSharp and LibCecSharpCore | ||
* try to init submodules when not found while creating an installer. abort | ||
if platform failed to compile | ||
|
||
-- Pulse-Eight Packaging <[email protected]> Mon, 9 Jul 2020 23:37:00 +0100 | ||
|
||
libcec (5.0.0.1~#DIST#) #DIST#; urgency=medium | ||
|
||
* fixed: | ||
|
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Section "libCEC Tray" SecTray | ||
SetShellVarContext current | ||
SectionIn 1 | ||
|
||
; Copy to the installation directory | ||
SetOutPath "$INSTDIR\x86\netfx" | ||
File "..\build\x86\cec-tray.exe" | ||
SetOutPath "$INSTDIR\x64\netfx" | ||
File /nonfatal "..\build\amd64\cec-tray.exe" | ||
|
||
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application | ||
SetOutPath "$INSTDIR" | ||
|
||
CreateDirectory "$SMPROGRAMS\$StartMenuFolder" | ||
${If} ${RunningX64} | ||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\cec-tray.lnk" "$INSTDIR\x64\netfx\cec-tray.exe" \ | ||
"" "$INSTDIR\x64\netfx\cec-tray.exe" 0 SW_SHOWNORMAL \ | ||
"" "Start libCEC Tray (x64)." | ||
${Else} | ||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\cec-tray.lnk" "$INSTDIR\x86\netfx\cec-tray.exe" \ | ||
"" "$INSTDIR\netfx\cec-tray.exe" 0 SW_SHOWNORMAL \ | ||
"" "Start libCEC Tray." | ||
${EndIf} | ||
!insertmacro MUI_STARTMENU_WRITE_END | ||
SectionEnd |
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
Oops, something went wrong.