Skip to content

Next Version #336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
7b9516a
#291 fix error when using reverse proxy
P1tt187 Mar 6, 2025
6453ef6
Merge pull request #329 from P1tt187/bugfix/291-unable-to-activate-rt…
SciLor Mar 6, 2025
0f8c0e7
Fix wrong tree desc
SciLor Mar 17, 2025
c9ff96d
Add http client timeout + logging for header error
SciLor Mar 17, 2025
9359e57
Merge branch 'develop' of https://github.com/toniebox-reverse-enginee…
SciLor Mar 17, 2025
4c8b173
Update frontend (make web)
SciLor Mar 20, 2025
c1fef3e
Only push working images to latest etc.
SciLor Mar 24, 2025
b19c0f7
Merge branch 'develop' of https://github.com/toniebox-reverse-enginee…
SciLor Mar 24, 2025
5277bab
increase default timeout
SciLor Mar 24, 2025
8ac6c01
Update frontend (make web)
SciLor Mar 25, 2025
986efd2
Update frontend (make web)
SciLor Apr 9, 2025
50221a6
Update frontend (make web)
SciLor Apr 15, 2025
c1f68df
Bump opus to v1.5.2
mrueg Nov 16, 2024
4b23d76
opus: Fix compiler warning
mrueg Apr 22, 2025
d13b131
Merge pull request #257 from mrueg/bump-opus-1.5.2
SciLor Apr 22, 2025
76a5101
Bump cyclone to 2.4.4
mrueg Apr 23, 2025
60323f3
Bump cyclone to v2.4.4
SciLor Apr 30, 2025
bdf70db
github: Don't push on external forks
mrueg Apr 30, 2025
ce91bd3
fix: Fix build on alpine
mrueg Apr 30, 2025
05a7fcd
Fix issue with maximum http connections
mrueg May 9, 2025
8bae26f
Merge pull request #357 from mrueg/fix-max-connections
SciLor May 12, 2025
5368806
Merge pull request #353 from mrueg/attempt-cyclone-fix
SciLor May 12, 2025
e3e21dd
Merge pull request #352 from mrueg/dont-push-forks
SciLor May 12, 2025
c28a7e8
Update github actions via dependabot
mrueg Apr 23, 2025
e20cb0e
Merge pull request #345 from mrueg/dependabot
SciLor May 20, 2025
7beefe1
gh-358 add setting frontend.check_cc3200_cfw
henryk86 May 25, 2025
549e7ea
Merge branch 'develop' of https://github.com/henryk86/teddycloud into…
henryk86 May 25, 2025
413b0b6
Merge pull request #361 from henryk86/develop
SciLor May 25, 2025
4716fa5
fix buffer overflow #354
SciLor May 25, 2025
b9d32de
Update frontend (make web)
SciLor May 25, 2025
5241f04
Update frontend (make web)
SciLor May 26, 2025
3714968
Fix invalid serial number in ca root certificate
cboehme Jun 10, 2025
7967567
Update frontend (make web)
SciLor Jun 10, 2025
a4d92ef
Merge pull request #364 from cboehme/fix-ca-certificate
SciLor Jun 14, 2025
08f48e1
Update frontend (make web)
SciLor Jun 16, 2025
609d131
Update frontend (make web)
SciLor Jul 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
target-branch: "develop"
5 changes: 4 additions & 1 deletion .github/workflows/publish_docker_matrix_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ jobs:
context: .
file: ${{ inputs.dockerfile }}
platforms: ${{ matrix.platform }}
push: true
# Don't push if it's a fork
push: ${{ !github.event.pull_request.head.repo.fork }}
labels: ${{ steps.matrix_meta.outputs.labels }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true
cache-from: type=gha
Expand All @@ -114,6 +115,7 @@ jobs:
echo "platform=$platform"
echo "platform=$platform" >> $GITHUB_OUTPUT
- name: Run docker image test
id: docker-test
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
docker run -e DOCKER_TEST=1 --platform ${{ matrix.platform }} --name teddyCloud-test ${{ env.REGISTRY_IMAGE }}@${{ steps.build.outputs.digest }}
Expand All @@ -125,6 +127,7 @@ jobs:
continue-on-error: ${{ contains(fromJson(inputs.error_platforms), matrix.platform) }}

- name: Export digest
if: ${{ steps.docker-test.conclusion == 'success' }}
run: |
mkdir -p /tmp/digests/${{ github.sha }}
digest="${{ steps.build.outputs.digest }}"
Expand Down
13 changes: 12 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,14 @@ LIBOPUS_SOURCES = \
$(addprefix opus/,$(OPUS_SOURCES)) \
$(addprefix opus/,$(OPUS_SOURCES_FLOAT))

LIBOPUS_SOURCES := \
$(filter-out \
opus/src/repacketizer.c \
, $(LIBOPUS_SOURCES))

LIBOPUS_SOURCES += \
src/opus/src/repacketizer.c

LIBOPUS_HEADERS = \
$(addprefix opus/,$(SILK_HEAD)) \
$(addprefix opus/,$(CELT_HEAD)) \
Expand Down Expand Up @@ -326,7 +334,9 @@ CYCLONE_SOURCES = \
cyclone/cyclone_ssl/tls_common.c \
cyclone/cyclone_ssl/tls_extensions.c \
cyclone/cyclone_ssl/tls_certificate.c \
cyclone/cyclone_ssl/tls_signature.c \
cyclone/cyclone_ssl/tls_sign_generate.c \
cyclone/cyclone_ssl/tls_sign_misc.c \
cyclone/cyclone_ssl/tls_sign_verify.c \
cyclone/cyclone_ssl/tls_key_material.c \
cyclone/cyclone_ssl/tls_transcript_hash.c \
cyclone/cyclone_ssl/tls_cache.c \
Expand Down Expand Up @@ -409,6 +419,7 @@ CYCLONE_SOURCES += \

CFLAGS += -D GPL_LICENSE_TERMS_ACCEPTED
CFLAGS += -D TRACE_NOPATH_FILE
CFLAGS += -D HTTP_SERVER_MAX_CONNECTIONS=32
CFLAGS += ${CFLAGS_VERSION}
CFLAGS += $(INCLUDES)

Expand Down
1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AC-DvzLgDzl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AD-0YtvGfyJ.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AE-ChB4l_EO.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AF-BnD1yvCV.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AG-BN5I_8HM.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AI-DyA8M_FU.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AL-BXVQWRZ5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AM-NLP3P44N.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AO-DkPrV7zY.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AQ-D3w7peYS.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AR-CrCDb1gb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AS-BS3RTvVP.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contrib/data/www/web/assets/AT-1HWBUNPr.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading