Skip to content

Commit d35314e

Browse files
authored
New version 14.0.0.0
1 parent e81718f commit d35314e

File tree

335 files changed

+14996
-7991
lines changed

Some content is hidden

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

335 files changed

+14996
-7991
lines changed

.devcontainer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "Hyperion.ng Linux",
3+
"extensions": [
4+
"twxs.cmake",
5+
"ms-vscode.cpptools",
6+
"ms-vscode.cmake-tools",
7+
"spmeesseman.vscode-taskexplorer",
8+
"yzhang.markdown-all-in-one",
9+
"CoenraadS.bracket-pair-colorizer",
10+
"vscode-icons-team.vscode-icons",
11+
"editorconfig.editorconfig"
12+
],
13+
"settings": {
14+
"editor.formatOnSave": false,
15+
"cmake.environment": {
16+
},
17+
},
18+
"forwardPorts": [8090, 8092],
19+
"postCreateCommand": "git submodule update --recursive --init && sudo apt-get install -y git cmake build-essential qtbase5-dev libqt5serialport5-dev libqt5sql5-sqlite libqt5svg5-dev libqt5x11extras5-dev libusb-1.0-0-dev python3-dev libcec-dev libxcb-image0-dev libxcb-util0-dev libxcb-shm0-dev libxcb-render0-dev libxcb-randr0-dev libxrandr-dev libxrender-dev libavahi-core-dev libavahi-compat-libdnssd-dev libjpeg-dev libturbojpeg0-dev libssl-dev zlib1g-dev"
20+
}
Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
---
22
name: Bug report
3-
about: Create a report to help us improving Hyperion
3+
about: Create a report to help us improving HyperHDR
44
labels: Waiting For Review
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
<!-- Please confirm you will submit an issue. -->
1111
<!-- Issues which contain questions or support requests will be closed. -->
12-
<!-- (Update "[ ]" to "[x]" to check a box) -->
1312

14-
- [x] I confirm that this is an issue rather than a question.
15-
16-
<!-- Please ask questions here -->
17-
<!-- https://hyperion-project.org -->
18-
19-
## Bug report
2013

14+
## Bug report, debug log and your config file (optional but could be very helpful)
15+
<!-- In the web interface of the Hyperion config go to System > Logs and paste it content here -->
2116

2217
#### Steps to reproduce
2318

@@ -29,4 +24,4 @@ labels: Waiting For Review
2924

3025

3126
#### System
32-
<!-- In the web interface of the Hyperion config go to System > About Hyperion and Paste the content of "System info (Github Issue)" here -->
27+
<!-- In the web interface of the Hyperion config go to System > About and Paste the content of "System info (Github Issue)" here -->

.github/workflows/push-master.yml

Lines changed: 27 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Hyperion CI Build
1+
name: HyperHDR CI Build
22
on:
33
push:
44
branches-ignore:
@@ -24,10 +24,10 @@ jobs:
2424
dockerName: Debian Buster (x86_64)
2525
platform: x11
2626
- dockerImage: armv6l
27-
dockerName: Debian Buster (Raspberry Pi v1 & ZERO)
28-
platform: rpi
27+
dockerName: Debian Buster (Raspberry Pi 1 & 2 & ZERO)
28+
platform: rpi
2929
- dockerImage: armv7l
30-
dockerName: Debian Buster (Raspberry Pi 2 & 3)
30+
dockerName: Debian Buster (Raspberry Pi 3 & 4)
3131
platform: rpi
3232

3333
steps:
@@ -52,7 +52,14 @@ jobs:
5252
with:
5353
path: deploy/Hyper*
5454

55-
55+
# Upload artifacts from commit
56+
#- name: Upload artifacts from commit
57+
# if: (startsWith(github.event.ref, 'refs/tags') != true)
58+
# uses: actions/upload-artifact@v2
59+
# with:
60+
# name: ${{ matrix.dockerImage }}
61+
# path: deploy/Hyper*.deb
62+
5663
######################
5764
###### Windows #######
5865
######################
@@ -96,10 +103,10 @@ jobs:
96103
MsiExec.exe /passive /X{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5}
97104
MsiExec.exe /passive /X{1D8E6291-B0D5-35EC-8441-6616F567A0F7}
98105
99-
- name: Install Python, NSIS, OpenSSL, TurboJPG, 7zip
106+
- name: Install Python, NSIS, OpenSSL, 7zip
100107
shell: powershell
101108
run: |
102-
choco install --no-progress python nsis openssl libjpeg-turbo 7zip.install -y
109+
choco install --no-progress python nsis openssl 7zip.install -y
103110
- name: Set up x64 build architecture environment
104111
shell: cmd
105112
run: call "${{env.VCINSTALLDIR}}\Auxiliary\Build\vcvars64.bat"
@@ -118,51 +125,22 @@ jobs:
118125
with:
119126
path: build/Hyper*
120127

121-
######################
122-
#### Documentation ###
123-
######################
124-
125-
Docs:
126-
name: Documentation
127-
runs-on: ubuntu-20.04
128-
defaults:
129-
run:
130-
working-directory: docs
131-
steps:
132-
- name: Checkout
133-
uses: actions/checkout@v2
134-
135-
# Install dependencies
136-
- name: Setup node 12
137-
uses: actions/setup-node@v1
138-
with:
139-
node-version: '12'
140-
141-
# Build Docs
142-
- name: Build docs
143-
run: |
144-
cd docs
145-
npm install -g yarn
146-
yarn install
147-
yarn docs:build
148-
149-
# Deploy to gh-pages (only on tagged commit)
150-
- name: Deploy to gh-pages
151-
if: startsWith(github.event.ref, 'refs/tags')
152-
uses: peaceiris/actions-gh-pages@v3
153-
with:
154-
github_token: ${{ secrets.GITHUB_TOKEN }}
155-
publish_dir: ./docs/dist
156-
cname: docs.hyperion-project.org
157-
128+
# Upload artifacts from commit
129+
#- name: Upload artifacts from commit
130+
# if: (startsWith(github.event.ref, 'refs/tags') != true)
131+
# uses: actions/upload-artifact@v2
132+
# with:
133+
# name: windows
134+
# path: build/Hyper*.exe
135+
158136
################################
159137
###### Publish Releases ########
160138
################################
161139

162140
publish:
163141
name: Publish Releases
164142
if: startsWith(github.event.ref, 'refs/tags')
165-
needs: [Linux, windows, Docs]
143+
needs: [Linux, windows]
166144
runs-on: ubuntu-20.04
167145
steps:
168146
- name: Checkout
@@ -171,14 +149,14 @@ jobs:
171149
# generate environment variables
172150
- name: Generate environment variables from version and tag
173151
run: |
174-
echo ::set-env name=TAG::${GITHUB_REF/refs\/tags\//}
175-
echo ::set-env name=VERSION::$(tr -d '\n' < version)
176-
echo ::set-env name=preRelease::false
152+
echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
153+
echo "VERSION=$(tr -d '\n' < version)" >> $GITHUB_ENV
154+
echo "preRelease=false" >> $GITHUB_ENV
177155
178156
# If version contains alpha or beta, mark draft release as pre-release
179157
- name: Mark release as pre-release
180158
if: contains(env.VERSION, 'alpha') || contains(env.VERSION, 'beta')
181-
run: echo ::set-env name=preRelease::true
159+
run: echo "preRelease=true" >> $GITHUB_ENV
182160

183161
# Download artifacts from previous build process
184162
- name: Download artifacts

.github/workflows/release.yml

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

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,10 @@ compile_commands.json
2222
# Autogenerated by flatbuffers
2323
libsrc/flatbufserver/hyperion_reply_generated.h
2424
libsrc/flatbufserver/hyperion_request_generated.h
25+
26+
# Kdevelop project files
27+
*.kdev*
28+
29+
# Visual Studio 2015/2017/2019 cache/options directory
30+
.vs/
31+
CMakeSettings.json

.vscode/hyperion.code-workspace

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616
"ms-vscode.cmake-tools",
1717
"spmeesseman.vscode-taskexplorer",
1818
"yzhang.markdown-all-in-one",
19-
"formulahendry.auto-rename-tag",
2019
"CoenraadS.bracket-pair-colorizer",
21-
"eamodio.gitlens",
2220
"vscode-icons-team.vscode-icons",
2321
"editorconfig.editorconfig"
2422
]

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "cppdbg",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/build/bin/hyperiond",
12-
"args": [],
12+
"args": ["-d"],
1313
"stopAtEntry": false,
1414
"cwd": "${workspaceFolder}",
1515
"environment": [],
@@ -28,7 +28,7 @@
2828
"type": "cppvsdbg",
2929
"request": "launch",
3030
"program": "${workspaceFolder}/build/bin/Debug/hyperiond.exe",
31-
"args": [],
31+
"args": ["-d"],
3232
"stopAtEntry": false,
3333
"cwd": "${workspaceFolder}",
3434
"environment": [],

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"windows": {
1212
"command": "cmake -G \"Visual Studio 16 2019\" -A x64 -B ${workspaceFolder}/build"
1313
},
14-
"group": "build",
14+
"group": "build"
1515
},
1616
{
1717
"label": "cmake:conf Debug",
@@ -21,7 +21,7 @@
2121
"windows": {
2222
"command": "cmake -G \"Visual Studio 16 2019\" -A x64 -B ${workspaceFolder}/build"
2323
},
24-
"group": "build",
24+
"group": "build"
2525
},
2626
{
2727
"label": "build:debug hyperiond",

0 commit comments

Comments
 (0)