Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
и этот проект придерживается [Semantic Versioning].

## [Unreleased]

## [1.3.8] - 29-12-2024

### Changed
* <Dockerfile> Переконфигурирован ffmpeg для поддержки `libmp3lame` для решения проблемы с `soundcloud`

## [1.3.7] - 24-10-2024

### Added
Expand Down Expand Up @@ -285,6 +291,7 @@

<!-- Versions -->
[unreleased]: https://github.com/AudioBridge-team/AudioBridge/compare/prod...dev
[1.3.8]: https://github.com/AudioBridge-team/AudioBridge/compare/v1.3.7...v1.3.8
[1.3.7]: https://github.com/AudioBridge-team/AudioBridge/compare/v1.3.6...v1.3.7
[1.3.6]: https://github.com/AudioBridge-team/AudioBridge/compare/v1.3.5...v1.3.6
[1.3.5]: https://github.com/AudioBridge-team/AudioBridge/compare/v1.3.4...v1.3.5
Expand Down
15 changes: 12 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
FROM python:3.9.12-slim-buster

RUN apt-get update
RUN apt-get install -y libmagic1 ffmpeg
RUN apt-get install -y pandoc
RUN apt-get update && apt-get install -y \
wget \
xz-utils \
pandoc \
&& rm -rf /var/lib/apt/lists/*

RUN wget https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz -O /tmp/ffmpeg.tar.xz \
&& tar -xf /tmp/ffmpeg.tar.xz -C /tmp

RUN mv /tmp/ffmpeg-master-latest-linux64-gpl/bin/* /usr/local/bin/
RUN rm -f /tmp/ffmpeg.tar.xz
RUN ffmpeg -version

WORKDIR /AudioBridge/bin

Expand Down
2 changes: 1 addition & 1 deletion bot_settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"bot_version" : "v1.3.7",
"bot_version" : "v1.3.8",
"sync_changelog" : true,
"release_update" : true,
"max_workers" : 6,
Expand Down
Loading