-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0068f87
commit 5090127
Showing
291 changed files
with
10,048 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
|
||
name: Upload Python Package to TestPyPi | ||
|
||
on: | ||
# Triggers the workflow when a release is created | ||
release: | ||
types: [published] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python Package to TestPyPi | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: get latest release with tag | ||
id: latestrelease | ||
run: | | ||
echo "::set-output name=releasetag::$(curl -s https://api.github.com/repos/dylanljones/pyrekordbox/releases/latest --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' | jq '.tag_name' | sed 's/\"//g')" | ||
- name: confirm release tag | ||
run: | | ||
echo ${{ steps.latestrelease.outputs.releasetag }} | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ steps.latestrelease.outputs.releasetag }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install twine | ||
pip install .[build] | ||
- name: Build and publish distribution 📦 to Test PyPI | ||
env: | ||
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload --repository testpypi dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# This workflow will run the tests of the project | ||
|
||
name: Test | ||
|
||
|
||
# Controls when the action will run. | ||
on: | ||
push: | ||
branches: [master, dev] | ||
pull_request: | ||
types: [opened] | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
|
||
code-change: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
paths_ignore: '[ | ||
"docs/**", | ||
".github/**", | ||
".resources/**", | ||
"README.md", | ||
"CHANGELOG.md", | ||
"CONTRIBUTING.md", | ||
".pre-commit-config.yaml", | ||
".readthedocs.yaml", | ||
"pyproject.toml" | ||
]' | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
|
||
|
||
tests: | ||
needs: code-change | ||
if: ${{ needs.code-change.outputs.should_skip != 'true'}} | ||
|
||
strategy: | ||
matrix: | ||
os: [windows-latest, macos-latest] | ||
python-version: ["3.7", "3.9"] # check oldest and latest supported version | ||
other-os: [false] | ||
|
||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.other-os }} # don't cancel due to OS specific failures | ||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python-version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Build and install | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install .[test] | ||
- name: Get package version | ||
run: python setup.py --version | ||
|
||
- name: Run tests | ||
run: | | ||
pytest tests/ --cov=pyrekordbox --cov-report=xml -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.1.0 | ||
types: [py] | ||
hooks: | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: mixed-line-ending | ||
- id: check-toml | ||
- id: check-yaml | ||
|
||
- repo: https://github.com/asottile/setup-cfg-fmt | ||
rev: v1.20.0 | ||
hooks: | ||
- id: setup-cfg-fmt | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.1.0 | ||
types: [ python ] | ||
hooks: | ||
- id: black | ||
args: [ --safe ] | ||
|
||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.9.2 | ||
hooks: | ||
- id: flake8 | ||
args: [--config, setup.cfg] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
|
||
build: | ||
image: latest | ||
apt_packages: | ||
- graphviz | ||
|
||
python: | ||
version: 3.8 | ||
install: | ||
- requirements: docs/source/requirements.txt | ||
- requirements: requirements.txt | ||
|
||
formats: | ||
- htmlzip | ||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/beat_fx_quantize/off/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/beat_fx_quantize/on/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve/linear/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve/steep_bottom/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve/steep_top/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve_long/exponential/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve_long/linear/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/channel_fader_curve_long/smooth/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/cross_fader_curve/constant/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/cross_fader_curve/fast_cut/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/cross_fader_curve/slow_cut/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/five/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/four/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/one/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/three/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/two/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/display_brightness/white/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/headphones_mono_split/mono_split/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/headphones_mono_split/stereo/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/headphones_pre_eq/post_eq/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/headphones_pre_eq/pre_eq/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/indicator_brightness/one/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/indicator_brightness/three/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/indicator_brightness/two/DJMMYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_button_type/toggle/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_button_type/trigger/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/eight/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/eleven/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/fifteen/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/five/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/four/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/fourteen/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/nine/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/one/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/seven/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/six/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/sixteen/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/ten/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/thirteen/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/three/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/twelve/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/midi_channel/two/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_level/minus_12db/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_level/minus_18db/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_level/minus_24db/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_level/minus_6db/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_mode/advanced/DJMMYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+160 Bytes
.testdata/mysettings/djmmysetting/talk_over_mode/normal/DJMMYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_36db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_42db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_48db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_54db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_60db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_66db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_72db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/auto_cue_level/minus_78db/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/disc_slot_illumination/bright/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/disc_slot_illumination/dark/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/disc_slot_illumination/off/MYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/hotcue_autoload/rekordbox/MYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/jog_ring_brightness/bright/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/jog_ring_brightness/dark/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/jog_ring_brightness/off/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/jog_ring_indicator/off/MYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/language/chinese_simplified/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/language/chinese_traditional/MYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/quantize_beat_value/eighth/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/quantize_beat_value/half/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/quantize_beat_value/one/MYSETTING.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting/quantize_beat_value/quarter/MYSETTING.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/eight/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/four/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/half/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/one/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/sixteen/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/sixtyfour/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/thirtytwo/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/beat_jump_beat_value/two/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_display_mode/artwork/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_display_mode/auto/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_display_mode/info/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_display_mode/simple/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_lcd_brightness/five/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_lcd_brightness/four/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_lcd_brightness/one/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_lcd_brightness/three/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/jog_lcd_brightness/two/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/pad_button_brightness/four/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/pad_button_brightness/one/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/pad_button_brightness/three/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/pad_button_brightness/two/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/vinyl_speed_adjust/release/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/vinyl_speed_adjust/touch/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/vinyl_speed_adjust/touch_release/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/waveform/phase_meter/MYSETTING2.DAT
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/waveform_divisions/phrase/MYSETTING2.DAT
Binary file not shown.
Binary file added
BIN
+148 Bytes
.testdata/mysettings/mysetting2/waveform_divisions/time_scale/MYSETTING2.DAT
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.35 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P002/00009C2E/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+10.7 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P002/00009C2E/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+2.35 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P02B/00023587/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+9.88 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P02B/00023587/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+4.32 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P035/00027763/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+64.2 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P035/00027763/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+2.35 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P038/0002AAA0/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+9.65 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P038/0002AAA0/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+5.19 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P068/00012CA2/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+83.9 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P068/00012CA2/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+2.35 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P076/00013B6E/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+10.6 KB
.testdata/rekordbox 5/backup/PIONEER/USBANLZ/P076/00013B6E/ANLZ0000.EXT
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<MASTER_PLAYLIST Version="3.0.0" AutomaticSync="0"> | ||
<PRODUCT Name="rekordbox" Version="5.8.6" Company="Pioneer DJ"/> | ||
<PLAYLISTS> | ||
<NODE Id="1" ParentId="0" Attribute="0" Timestamp="1649097338996" Lib_Type="0" CheckType="0"/> | ||
<NODE Id="2" ParentId="0" Attribute="1" Timestamp="1649097351229" Lib_Type="0" CheckType="0"/> | ||
<NODE Id="3" ParentId="2" Attribute="0" Timestamp="1649097363428" Lib_Type="0" CheckType="0"/> | ||
</PLAYLISTS> | ||
</MASTER_PLAYLIST> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<DJ_PLAYLISTS Version="1.0.0"> | ||
<PRODUCT Name="rekordbox" Version="5.8.6" Company="Pioneer DJ"/> | ||
<COLLECTION Entries="6"> | ||
<TRACK TrackID="1" Name="NOISE" Artist="" Composer="" Album="" Grouping="" | ||
Genre="" Kind="WAV File" Size="1382226" TotalTime="5" DiscNumber="0" | ||
TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-04" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/NOISE.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="2" Name="SINEWAVE" Artist="" Composer="" Album="" Grouping="" | ||
Genre="" Kind="WAV File" Size="1515258" TotalTime="5" DiscNumber="0" | ||
TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-04" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/SINEWAVE.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="3" Name="SIREN" Artist="" Composer="" Album="" Grouping="" | ||
Genre="" Kind="WAV File" Size="1941204" TotalTime="7" DiscNumber="0" | ||
TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-04" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/SIREN.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="4" Name="HORN" Artist="" Composer="" Album="" Grouping="" | ||
Genre="" Kind="WAV File" Size="2010816" TotalTime="7" DiscNumber="0" | ||
TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-04" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/HORN.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="5" Name="Demo Track 1" Artist="Loopmasters" Composer="" | ||
Album="" Grouping="" Genre="" Kind="MP3 File" Size="6899624" | ||
TotalTime="172" DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="128.00" | ||
DateAdded="2022-04-04" BitRate="320" SampleRate="44100" Comments="Tracks by www.loopmasters.com" | ||
PlayCount="0" Rating="0" Location="file://localhost/C:/Music/PioneerDJ/Demo%20Tracks/Demo%20Track%201.mp3" | ||
Remixer="" Tonality="" Label="Loopmasters" Mix=""> | ||
<TEMPO Inizio="0.025" Bpm="128.00" Metro="4/4" Battito="1"/> | ||
<POSITION_MARK Name="" Type="0" Start="0.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="15.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="30.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="45.025" Num="-1"/> | ||
</TRACK> | ||
<TRACK TrackID="6" Name="Demo Track 2" Artist="Loopmasters" Composer="" | ||
Album="" Grouping="" Genre="" Kind="MP3 File" Size="5124342" | ||
TotalTime="128" DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="120.00" | ||
DateAdded="2022-04-04" BitRate="320" SampleRate="44100" Comments="Tracks by www.loopmasters.com" | ||
PlayCount="0" Rating="0" Location="file://localhost/C:/Music/PioneerDJ/Demo%20Tracks/Demo%20Track%202.mp3" | ||
Remixer="" Tonality="" Label="Loopmasters" Mix=""> | ||
<TEMPO Inizio="0.025" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="48.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="48.525" Bpm="120.00" Metro="4/4" Battito="2"/> | ||
<TEMPO Inizio="49.026" Bpm="120.00" Metro="4/4" Battito="3"/> | ||
<TEMPO Inizio="49.525" Bpm="120.00" Metro="4/4" Battito="4"/> | ||
<TEMPO Inizio="50.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="50.525" Bpm="120.00" Metro="4/4" Battito="2"/> | ||
<TEMPO Inizio="51.026" Bpm="120.00" Metro="4/4" Battito="3"/> | ||
<TEMPO Inizio="51.525" Bpm="120.00" Metro="4/4" Battito="4"/> | ||
<TEMPO Inizio="52.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<POSITION_MARK Name="" Type="0" Start="0.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="16.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="32.025" Num="-1"/> | ||
<POSITION_MARK Name="" Type="0" Start="48.026" Num="-1"/> | ||
</TRACK> | ||
</COLLECTION> | ||
<PLAYLISTS> | ||
<NODE Type="0" Name="ROOT" Count="2"> | ||
<NODE Name="Folder" Type="0" Count="1"> | ||
<NODE Name="Sub Playlist" Type="1" KeyType="0" Entries="2"> | ||
<TRACK Key="5"/> | ||
<TRACK Key="6"/> | ||
</NODE> | ||
</NODE> | ||
<NODE Name="Playlist1" Type="1" KeyType="0" Entries="2"> | ||
<TRACK Key="5"/> | ||
<TRACK Key="6"/> | ||
</NODE> | ||
</NODE> | ||
</PLAYLISTS> | ||
</DJ_PLAYLISTS> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<MASTER_PLAYLIST Version="3.0.0" AutomaticSync="0"> | ||
<PRODUCT Name="rekordbox" Version="5.8.6" Company="Pioneer DJ"/> | ||
<PLAYLISTS> | ||
<NODE Id="1" ParentId="0" Attribute="0" Timestamp="1649097338996" Lib_Type="0" CheckType="0"/> | ||
<NODE Id="2" ParentId="0" Attribute="1" Timestamp="1649097351229" Lib_Type="0" CheckType="0"/> | ||
<NODE Id="3" ParentId="2" Attribute="0" Timestamp="1649097363428" Lib_Type="0" CheckType="0"/> | ||
</PLAYLISTS> | ||
</MASTER_PLAYLIST> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<MASTER_PLAYLIST Version="3.0.0" AutomaticSync="0"> | ||
<PRODUCT Name="rekordbox" Version="6.6.2" Company="Pioneer DJ"/> | ||
<PLAYLISTS> | ||
<NODE Id="186A0" ParentId="0" Attribute="-128" Timestamp="1649540314311" Lib_Type="0" CheckType="0"/> | ||
<NODE Id="9B1B3268" ParentId="0" Attribute="0" Timestamp="0" Lib_Type="0" CheckType="0"/> | ||
</PLAYLISTS> | ||
</MASTER_PLAYLIST> |
Binary file added
BIN
+6.17 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/003/c9538-33bc-4ca7-b6c7-e63ebf9a96f8/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+2.25 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/003/c9538-33bc-4ca7-b6c7-e63ebf9a96f8/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+9.78 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/003/c9538-33bc-4ca7-b6c7-e63ebf9a96f8/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+6.98 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/104/c82cc-661c-4f30-ab60-51ce1effeeed/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+2.24 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/104/c82cc-661c-4f30-ab60-51ce1effeeed/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+10.6 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/104/c82cc-661c-4f30-ab60-51ce1effeeed/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+59.9 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/36d/ad2b4-5d4e-4b94-9a5d-a5bb241aee4b/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+4.27 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/36d/ad2b4-5d4e-4b94-9a5d-a5bb241aee4b/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+64.4 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/36d/ad2b4-5d4e-4b94-9a5d-a5bb241aee4b/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+6.87 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/731/0104f-53cb-453e-8b83-e0dfd5cff825/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+2.25 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/731/0104f-53cb-453e-8b83-e0dfd5cff825/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+10.5 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/731/0104f-53cb-453e-8b83-e0dfd5cff825/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+5.94 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/c8b/ac74a-bbfc-4fce-8fb8-50aa4e974273/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+2.25 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/c8b/ac74a-bbfc-4fce-8fb8-50aa4e974273/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+9.55 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/c8b/ac74a-bbfc-4fce-8fb8-50aa4e974273/ANLZ0000.EXT
Binary file not shown.
Binary file added
BIN
+79.4 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/e35/fa187-3f34-47e2-9880-2b33cb8d1304/ANLZ0000.2EX
Binary file not shown.
Binary file added
BIN
+5.13 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/e35/fa187-3f34-47e2-9880-2b33cb8d1304/ANLZ0000.DAT
Binary file not shown.
Binary file added
BIN
+84.3 KB
...kordbox 6/backup/share/PIONEER/USBANLZ/e35/fa187-3f34-47e2-9880-2b33cb8d1304/ANLZ0000.EXT
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<DJ_PLAYLISTS Version="1.0.0"> | ||
<PRODUCT Name="rekordbox" Version="6.6.2" Company="AlphaTheta"/> | ||
<COLLECTION Entries="6"> | ||
<TRACK TrackID="253529738" Name="Demo Track 1" Artist="Loopmasters" | ||
Composer="" Album="" Grouping="" Genre="" Kind="Mp3-Datei " Size="6899624" | ||
TotalTime="172" DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="128.00" | ||
DateAdded="2022-04-09" BitRate="320" SampleRate="44100" Comments="Tracks by www.loopmasters.com" | ||
PlayCount="0" Rating="0" Location="file://localhost/C:/Music/PioneerDJ/Demo%20Tracks/Demo%20Track%201.mp3" | ||
Remixer="" Tonality="Fm" Label="Loopmasters" Mix=""> | ||
<TEMPO Inizio="0.025" Bpm="128.00" Metro="4/4" Battito="1"/> | ||
</TRACK> | ||
<TRACK TrackID="17109519" Name="Demo Track 2" Artist="Loopmasters" Composer="" | ||
Album="" Grouping="" Genre="" Kind="Mp3-Datei " Size="5124342" | ||
TotalTime="128" DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="120.00" | ||
DateAdded="2022-04-09" BitRate="320" SampleRate="44100" Comments="Tracks by www.loopmasters.com" | ||
PlayCount="0" Rating="0" Location="file://localhost/C:/Music/PioneerDJ/Demo%20Tracks/Demo%20Track%202.mp3" | ||
Remixer="" Tonality="Fm" Label="Loopmasters" Mix=""> | ||
<TEMPO Inizio="0.025" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="48.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="48.525" Bpm="120.00" Metro="4/4" Battito="2"/> | ||
<TEMPO Inizio="49.026" Bpm="120.00" Metro="4/4" Battito="3"/> | ||
<TEMPO Inizio="49.525" Bpm="120.00" Metro="4/4" Battito="4"/> | ||
<TEMPO Inizio="50.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
<TEMPO Inizio="50.525" Bpm="120.00" Metro="4/4" Battito="2"/> | ||
<TEMPO Inizio="51.026" Bpm="120.00" Metro="4/4" Battito="3"/> | ||
<TEMPO Inizio="51.525" Bpm="120.00" Metro="4/4" Battito="4"/> | ||
<TEMPO Inizio="52.026" Bpm="120.00" Metro="4/4" Battito="1"/> | ||
</TRACK> | ||
<TRACK TrackID="49557014" Name="HORN" Artist="" Composer="" Album="" | ||
Grouping="" Genre="" Kind="Wav-Datei " Size="2010816" TotalTime="7" | ||
DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-09" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/HORN.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="209873516" Name="NOISE" Artist="" Composer="" Album="" | ||
Grouping="" Genre="" Kind="Wav-Datei " Size="1382226" TotalTime="5" | ||
DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-09" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/NOISE.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="55231398" Name="SINEWAVE" Artist="" Composer="" Album="" | ||
Grouping="" Genre="" Kind="Wav-Datei " Size="1515258" TotalTime="5" | ||
DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-09" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/SINEWAVE.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
<TRACK TrackID="92396897" Name="SIREN" Artist="" Composer="" Album="" | ||
Grouping="" Genre="" Kind="Wav-Datei " Size="1941204" TotalTime="7" | ||
DiscNumber="0" TrackNumber="0" Year="0" AverageBpm="0.00" DateAdded="2022-04-09" | ||
BitRate="2116" SampleRate="44100" Comments="" PlayCount="0" Rating="0" | ||
Location="file://localhost/C:/Music/PioneerDJ/Sampler/OSC_SAMPLER/PRESET%20ONESHOT/SIREN.wav" | ||
Remixer="" Tonality="" Label="" Mix=""/> | ||
</COLLECTION> | ||
<PLAYLISTS> | ||
<NODE Type="0" Name="ROOT" Count="1"> | ||
<NODE Name="Trial playlist - Cloud Library Sync" Type="1" KeyType="0" | ||
Entries="0"/> | ||
</NODE> | ||
</PLAYLISTS> | ||
</DJ_PLAYLISTS> |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022, Dylan Jones | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Copyright (c) 2008-2020 Zetetic LLC | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of the ZETETIC LLC nor the | ||
names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY | ||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY | ||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.