diff -Nru kodi-audioencoder-wav-2.0.2/appveyor.yml kodi-audioencoder-wav-2.0.3/appveyor.yml --- kodi-audioencoder-wav-2.0.2/appveyor.yml 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/appveyor.yml 2020-02-06 21:25:23.000000000 +0000 @@ -1,6 +1,6 @@ version: BuildNr.{build} -image: Visual Studio 2015 +image: Visual Studio 2017 shallow_clone: true @@ -10,14 +10,14 @@ app_id: audioencoder.wav matrix: - - GENERATOR: "Visual Studio 14" + - GENERATOR: "Visual Studio 15" CONFIG: Release - - GENERATOR: "Visual Studio 14 Win64" + - GENERATOR: "Visual Studio 15 Win64" CONFIG: Release - - GENERATOR: "Visual Studio 14 Win64" + - GENERATOR: "Visual Studio 15 Win64" CONFIG: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" - - GENERATOR: "Visual Studio 14 ARM" + - GENERATOR: "Visual Studio 15 ARM" CONFIG: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" diff -Nru kodi-audioencoder-wav-2.0.2/audioencoder.wav/addon.xml.in kodi-audioencoder-wav-2.0.3/audioencoder.wav/addon.xml.in --- kodi-audioencoder-wav-2.0.2/audioencoder.wav/addon.xml.in 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/audioencoder.wav/addon.xml.in 2020-02-06 21:25:23.000000000 +0000 @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -13,5 +13,10 @@ Waveform Audio File Format Encoder WAV (Waveform Audio Format) is an uncompressed sound format. @PLATFORM@ + GPL-2.0 + https://github.com/xbmc/audioencoder.wav + + icon.png + diff -Nru kodi-audioencoder-wav-2.0.2/azure-pipelines.yml kodi-audioencoder-wav-2.0.3/azure-pipelines.yml --- kodi-audioencoder-wav-2.0.2/azure-pipelines.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/azure-pipelines.yml 2020-02-06 21:25:23.000000000 +0000 @@ -0,0 +1,65 @@ +variables: + app_id: 'audioencoder.wav' + +trigger: + branches: + include: + - Leia + - releases/* + paths: + include: + - '*' + exclude: + - 'debian/*' + +jobs: + - job: Windows + + pool: + vmImage: 'VS2017-Win2016' + + strategy: + matrix: + Win32: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: Win32 + CONFIGURATION: Release + Win64: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + Win64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" + ARM64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: ARM64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" + + workspace: + clean: all + + steps: + + - script: | + cd .. + git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git kodi + cd $(Build.SourcesDirectory) + mkdir build + cd build + mkdir "definition/$(app_id)" + echo $(app_id) . . > definition/$(app_id)/$(app_id).txt + mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)" + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons' + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)' diff -Nru kodi-audioencoder-wav-2.0.2/debian/changelog kodi-audioencoder-wav-2.0.3/debian/changelog --- kodi-audioencoder-wav-2.0.2/debian/changelog 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/changelog 2014-05-17 10:40:22.000000000 +0000 @@ -1,6 +1,6 @@ -kodi-audioencoder-wav (2.0.2-1~bionic) bionic; urgency=low +kodi-audioencoder-wav (2.0.3-1~bionic) bionic; urgency=low - [ xbmc ] + [ kodi ] * autogenerated dummy changelog -- dummy Sat, 17 May 2014 11:40:22 +0100 diff -Nru kodi-audioencoder-wav-2.0.2/debian/changelog.in kodi-audioencoder-wav-2.0.3/debian/changelog.in --- kodi-audioencoder-wav-2.0.2/debian/changelog.in 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/changelog.in 2014-05-17 10:40:22.000000000 +0000 @@ -1,6 +1,6 @@ kodi-audioencoder-wav (#PACKAGEVERSION#-#TAGREV#~#DIST#) #DIST#; urgency=low - [ xbmc ] + [ kodi ] * autogenerated dummy changelog -- dummy Sat, 17 May 2014 11:40:22 +0100 diff -Nru kodi-audioencoder-wav-2.0.2/debian/compat kodi-audioencoder-wav-2.0.3/debian/compat --- kodi-audioencoder-wav-2.0.2/debian/compat 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/compat 2014-05-17 10:40:22.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru kodi-audioencoder-wav-2.0.2/debian/control kodi-audioencoder-wav-2.0.3/debian/control --- kodi-audioencoder-wav-2.0.2/debian/control 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/control 2014-05-17 10:40:22.000000000 +0000 @@ -1,8 +1,8 @@ Source: kodi-audioencoder-wav Priority: extra -Maintainer: wsnipex -Build-Depends: debhelper (>= 8.0.0), cmake, kodi-addon-dev -Standards-Version: 3.9.6 +Maintainer: Nobody +Build-Depends: debhelper (>= 9.0.0), cmake, kodi-addon-dev +Standards-Version: 4.1.2 Section: libs Homepage: http://kodi.org diff -Nru kodi-audioencoder-wav-2.0.2/debian/copyright kodi-audioencoder-wav-2.0.3/debian/copyright --- kodi-audioencoder-wav-2.0.2/debian/copyright 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/copyright 2014-05-17 10:40:22.000000000 +0000 @@ -3,6 +3,7 @@ Files: * Copyright: Jonathan Marshall + 2013-2020 Team Kodi License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,6 +24,7 @@ Files: debian/* 2013 wsnipex + 2013-2020 Team Kodi License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru kodi-audioencoder-wav-2.0.2/debian/source/format kodi-audioencoder-wav-2.0.3/debian/source/format --- kodi-audioencoder-wav-2.0.2/debian/source/format 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/debian/source/format 2014-05-17 10:40:22.000000000 +0000 @@ -1 +1 @@ -3.0 (native) +3.0 (quilt) diff -Nru kodi-audioencoder-wav-2.0.2/.gitignore kodi-audioencoder-wav-2.0.3/.gitignore --- kodi-audioencoder-wav-2.0.2/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/.gitignore 2020-02-06 21:25:23.000000000 +0000 @@ -0,0 +1,42 @@ +# build artifacts +build/ +audioencoder.*/addon.xml + +# Debian build files +debian/changelog +debian/files +debian/*.log +debian/*.substvars +debian/.debhelper/ +debian/tmp/ +debian/kodi-audioencoder-*/ +obj-x86_64-linux-gnu/ + +# commonly used editors +# vim +*.swp + +# Eclipse +*.project +*.cproject +.classpath +*.sublime-* +.settings/ + +# KDevelop 4 +*.kdev4 + +# gedit +*~ + +# CLion +/.idea + +# clion +.idea/ + +# to prevent add after a "git format-patch VALUE" and "git add ." call +/*.patch + +# to prevent add if project code opened by Visual Studio over CMake file +.vs/ diff -Nru kodi-audioencoder-wav-2.0.2/README.md kodi-audioencoder-wav-2.0.3/README.md --- kodi-audioencoder-wav-2.0.2/README.md 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/README.md 2020-02-06 21:25:23.000000000 +0000 @@ -4,6 +4,7 @@ #### CI Testing [![Build Status](https://travis-ci.org/xbmc/audioencoder.wav.svg?branch=master)](https://travis-ci.org/xbmc/audioencoder.wav) +[![Build Status](https://dev.azure.com/teamkodi/binary-addons/_apis/build/status/xbmc.audioencoder.wav?branchName=Leia)](https://dev.azure.com/teamkodi/binary-addons/_build/latest?definitionId=24&branchName=Leia) [![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120) ## Build instructions diff -Nru kodi-audioencoder-wav-2.0.2/src/EncoderWav.cpp kodi-audioencoder-wav-2.0.3/src/EncoderWav.cpp --- kodi-audioencoder-wav-2.0.2/src/EncoderWav.cpp 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/src/EncoderWav.cpp 2020-02-06 21:25:23.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2019 Team Kodi + * Copyright (C) 2005-2020 Team Kodi * http://kodi.tv * * This Program is free software; you can redistribute it and/or modify diff -Nru kodi-audioencoder-wav-2.0.2/.travis.yml kodi-audioencoder-wav-2.0.3/.travis.yml --- kodi-audioencoder-wav-2.0.2/.travis.yml 2014-05-17 10:40:22.000000000 +0000 +++ kodi-audioencoder-wav-2.0.3/.travis.yml 2020-02-06 21:25:23.000000000 +0000 @@ -22,8 +22,6 @@ sudo: required compiler: clang - os: osx - osx_image: xcode9 - - os: osx osx_image: xcode9.4 #