microsoft / Windows-driver-samples

This repo contains driver samples prepared for use with Microsoft Visual Studio and the Windows Driver Kit (WDK). It contains both Universal Windows Driver and desktop-only driver samples.
Microsoft Public License
6.79k stars 4.89k forks source link

INF files marked as binary files instead of text #1055

Open namelessmasses opened 8 months ago

namelessmasses commented 8 months ago

Some text files are marked as binary. This makes examining diffs via git diff or git log -p impossible.

Usually happens on when a text file has encoding bytes at the beginning of the file, however for the example I've got here it might be that multibyte characters were used through the entire file (git log -p --text).  

PS C:\src\ms\windows-driver-samples> git log -p -- .\audio\sysvad\TabletAudioSample\ComponentizedApoSample.inx
commit 0982eda9bfe536c1d640fe8f27821eeb17fa9ff8
Author: dianarodrigz <102701114+dianarodrigz@users.noreply.github.com>
Date:   Mon Oct 30 11:24:42 2023 -0700

    Fix sysvad to comply with new audio rules ( including versioning ) (#1043)

    Co-authored-by: Diana Rodriguez Luna <dirodr@microsoft.com>

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
index 28069e1c..7c08f86a 100644
Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ

commit 7895dd22785ddba5e973662ed942be3b3452b89d
Author: Daniel Rugerio <50124185+darugeri@users.noreply.github.com>
Date:   Fri Aug 13 15:05:12 2021 -0700

    audio: Updates for Windows 10 22000 (#655)

    * Updates for Windows 10 22000.
    * Change how WIL is consumed.

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
index be9428fb..28069e1c 100644
Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ

commit bf0b0fe11d8b301cdfcc6d13f12a778cdd1c14b5 (tag: 147237)
Author: Daniel Rugerio <50124185+darugeri@users.noreply.github.com>
Date:   Wed May 13 16:23:40 2020 -0700

    Update to SysVAD, Wave test and public sample of KS Position Test (#496)

    * Update to Wave test and public sample of KS Position test.
    * Update to the SysVAD audio driver sample.
    * Add the PnpLockDown property.

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
index a6bfb4af..be9428fb 100644
Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ

commit ba80e2f67f8c1fb9013f05bfffdf649220327902 (tag: 104069)
Author: Daniel Rugerio <50124185+darugeri@users.noreply.github.com>
Date:   Wed Dec 4 09:56:11 2019 -0800

    Updates on the SysVAD driver sample (#443)

    * Update SysVAD public sample.
    * Add WaveTest public sample.
    * Modify the componentized audio samples to include the addComponent directive.
    * Dropped the Phone Audio sample.
    * Updated README.md.
    * Added explanation for the Phone Audio sample.

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
index 4ee84101..a6bfb4af 100644
Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ

commit 8ffcdad009e4d410f92fabc4e322a76a0be3a69d
Author: Daniel Rugerio <50124185+darugeri@users.noreply.github.com>
Date:   Fri Jun 28 16:08:54 2019 -0700

    Update audio samples (#387)

    * Update SysVAD public sample.
    * Add WaveTest public sample.

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
index 43457d73..4ee84101 100644
Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ

commit 2af3e666d01a60568c2875b4ccbd56b122ad714f
Author: Girish Pattabiraman <girishp@microsoft.com>
Date:   Mon Aug 13 10:54:19 2018 -0700

    Update sample to get ready for RS4 changes - merge pre-RS4 fixes. (#256)

    * Format Changes
    ==============
    * Add KSEVENT_PINCAPS_FORMATCHANGE to Bluetooth HFP Endpoints
    * Remove 8 bit formats from Bluetooth HFP Endpoints

    Name Template
    ==============
    * Bluetooth Endpoints are now based on templates in INF and then customized with endpoints specific data

    Sideband Common Interface for future Sideband buses
    ===================================================
    * Add ISidebandDevice
    * Add current directory to TabletAudioSample include path. Remove unused compiler flags.
    * RS4 bug fixes

diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx
new file mode 100644
index 00000000..43457d73
Binary files /dev/null and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ