Skip to content
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

Use msys2 mirror #72

Open
wants to merge 2 commits into
base: Nexus
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion depends/windows/mingw/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
project(mingw)

# Currently unused (our mirrors bring some download problems for Msys2)
if(1)
if(0)
foreach(repo msys mingw32 mingw64)
if(${repo} STREQUAL msys)
file(WRITE ${CMAKE_CURRENT_SOURCE_DIR}/etc/pacman.d/mirrorlist.${repo} "Server = http://mirrors.kodi.tv/build-deps/win32/msys2/repos/${repo}2/$arch\n")
Expand Down
2 changes: 1 addition & 1 deletion depends/windowsstore/mingw/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
project(mingw)

# Currently unused (our mirrors bring some download problems for Msys2)
if(1)
if(0)
foreach(repo msys mingw32 mingw64)
if(${repo} STREQUAL msys)
file(WRITE ${CMAKE_CURRENT_SOURCE_DIR}/etc/pacman.d/mirrorlist.${repo} "Server = http://mirrors.kodi.tv/build-deps/win32/msys2/repos/${repo}2/$arch\n")
Expand Down
10 changes: 7 additions & 3 deletions inputstream.ffmpegdirect/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="inputstream.ffmpegdirect"
version="1.18.0"
version="1.18.1"
name="Inputstream FFmpeg Direct"
provider-name="Ross Nicholson">
<requires>@ADDON_DEPENDS@</requires>
Expand All @@ -25,9 +25,13 @@
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>v1.18.0
<news>
v1.18.1
- Update: Restore using msys2 repo for mingw packages for windows

v1.18.0
- Update: inputstream API 3.0.1
- Fix wrong flags bit shift
- Fix wrong flags bit shift

v1.17.0
- Update: inputstream API 3.0.0
Expand Down
5 changes: 4 additions & 1 deletion inputstream.ffmpegdirect/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
v1.18.1
- Update: Restore using msys2 repo for mingw packages for windows

v1.18.0
- Update: inputstream API 3.0.1
- Fix wrong flags bit shift
- Fix wrong flags bit shift

v1.17.0
- Update: inputstream API 3.0.0
Expand Down