Skip to content

Commit 9881cf8

Browse files
committed
Update version
- upgrade Bootstrap from version 3 to 5 - replace and update most of UI components - software screen grabbers (Windows:DirectX11 / Linux:X11 / macOS:CoreGraphics) #46 - HDR available as a global component - automatic signal detection with learning capability - reimplemented backup import / export function for all instances' settings - current video stream information in the 'overview' tab - support for my new HyperSPI project (https://github.com/awawa-dev/HyperSPI) with awa_spi LED driver - new video stream crop method in JSON API - JSON API documentation in a form of live playground in 'Advanced' tab - LED grouping aka PC mode aka gradient mode - add timeout for the anti-flickering filter - translation resources are updated - new panel for easy video resolution & refresh mode selection - add release for AARCH64 architecture #68 - fix for WLED new network protocol #90 - fix missing Linux taskbar icon - support for libCEC 6.0.2 to turn on/off video & system grabber - support for libCEC to turn on/off HDR tone mapping with remote buttons - compatibility with QT6.2 (tested with the preview version/Vulkan/Windows) - lower CPU usage when automatic signal detection triggers 'nosignal' ('save resources' for software framerate decimation) #93 - standardize libJPEG-turbo library (where it's necessary) - fix values premature clipping in the LUT generator & SDR preview rendering fix, access available now from the menu ('Advanced' tab) - suppress most of external components' warning while building - faster image to LED colors transformation - import 'sparks' and 'system shutdown' effects to the new effect API #75 - better logging with instances' indexes - fix power saving issue with macOS port - fix memory leaks in SPI drivers
1 parent 4e6999e commit 9881cf8

File tree

402 files changed

+35913
-37885
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+35913
-37885
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: awawa-dev

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ FULL LOGS ARE MANDATORY! You can use service like pastebin to upload them and pr
1414

1515

1616
## Bug report, debug log and your config file (FULL LOGS ARE MANDATORY)
17-
<!-- In the web interface of the Hyperion config go to System > Logs and paste its content here or provide link to pastebin upload.
17+
<!-- In the web interface of the HyperHDR config go to System > Logs and paste its content here or provide link to pastebin upload.
1818
Remember, missing or partial/cut logs deserves partial answer or closing report without any attention.
1919
-->
2020

@@ -25,4 +25,4 @@ Remember, missing or partial/cut logs deserves partial answer or closing report
2525
#### What is actually happening?
2626

2727
#### System
28-
<!-- In the web interface of the Hyperion config go to System > About and Paste the content of "System info" here -->
28+
<!-- In the web interface of the HyperHDR config go to System > About and Paste the content of "System info" here -->

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
name: Feature request
3-
about: Suggest an idea for Hyperion
3+
about: Suggest an idea for HyperHDR
44
labels: feature request
55
---
66

77
<!-- Please don't delete this template or we'll close your issue -->
8-
<!-- Before creating an issue please make sure you are using the latest version of Hyperion. -->
8+
<!-- Before creating an issue please make sure you are using the latest version of HyperHDR. -->
99

1010
## Feature request
1111

1212
<!-- Please ask questions on our Forum. -->
13-
<!-- https://hyperion-project.org -->
13+
<!-- https://github.com/awawa-dev/HyperHDR/discussions -->
1414
<!-- Issues which contain questions or support requests will be closed. -->
1515

1616
#### What problem does this feature solve?

.github/pr_comment.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/push-master-copy.bak

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
dockerImage: [ x86_64, rpi012-armv6l, rpi34-armv7l ]
20+
dockerImage: [ x86_64, rpi012-armv6l, rpi34-armv7l, arm-aarch64 ]
2121
include:
2222
- dockerImage: x86_64
2323
dockerName: Debian Buster (x86_64)
@@ -28,6 +28,9 @@ jobs:
2828
- dockerImage: rpi34-armv7l
2929
dockerName: Debian Buster (Raspberry Pi 3 & 4)
3030
platform: rpi
31+
- dockerImage: arm-aarch64
32+
dockerName: Debian Buster (ARM aarch64)
33+
platform: rpi
3134

3235
steps:
3336
# checkout
@@ -171,9 +174,12 @@ jobs:
171174
- name: Set up x64 build architecture environment
172175
shell: cmd
173176
run: call "${{env.VCINSTALLDIR}}\Auxiliary\Build\vcvars64.bat"
174-
177+
178+
- name: Set up nasm
179+
uses: ilammy/setup-nasm@v1
180+
175181
# Build packages
176-
- name: Build packages
182+
- name: Build packages
177183
env:
178184
PLATFORM: windows
179185
shell: bash

.github/workflows/push-master.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
dockerImage: [ x86_64, rpi012-armv6l, rpi34-armv7l ]
20+
dockerImage: [ x86_64, rpi012-armv6l, rpi34-armv7l, arm-aarch64 ]
2121
include:
2222
- dockerImage: x86_64
2323
dockerName: Debian Buster (x86_64)
@@ -28,6 +28,9 @@ jobs:
2828
- dockerImage: rpi34-armv7l
2929
dockerName: Debian Buster (Raspberry Pi 3 & 4)
3030
platform: rpi
31+
- dockerImage: arm-aarch64
32+
dockerName: Debian Buster (ARM aarch64)
33+
platform: rpi
3134

3235
steps:
3336
# checkout
@@ -171,9 +174,12 @@ jobs:
171174
- name: Set up x64 build architecture environment
172175
shell: cmd
173176
run: call "${{env.VCINSTALLDIR}}\Auxiliary\Build\vcvars64.bat"
174-
177+
178+
- name: Set up nasm
179+
uses: ilammy/setup-nasm@v1
180+
175181
# Build packages
176-
- name: Build packages
182+
- name: Build packages
177183
env:
178184
PLATFORM: windows
179185
shell: bash

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@
1313
[submodule "dependencies/external/mbedtls"]
1414
path = dependencies/external/mbedtls
1515
url = https://github.com/ARMmbed/mbedtls
16+
[submodule "dependencies/external/libcec"]
17+
path = dependencies/external/libcec
18+
url = git://github.com/awawa-dev/libcec.git
19+
[submodule "dependencies/external/libjpeg-turbo"]
20+
path = dependencies/external/libjpeg-turbo
21+
url = git://github.com/awawa-dev/libjpeg-turbo.git

0 commit comments

Comments
 (0)