cfillion / reapack-index

Package indexer for git-based ReaPack repositories
GNU General Public License v3.0
28 stars 1 forks source link

Cannot Index extension update #14

Closed ak-jstubbs closed 4 months ago

ak-jstubbs commented 4 months ago

When I try to index an extension update I get:

Indexing commit 2 of 2 (50%)...
warning: Extensions/ReaWwise.ext:
  no files provided
Indexing commit 2 of 2 (100%)...
Nothing to do!

Here is the ReaWwise.ext:

@description ReaWwise
@author Audiokinetic
@version 1.0.6a
@changelog
  New Features:

  - Added the ability to transfer files from REAPER to an instance of Wwise 
    located on a different machine.

@provides
  [win64] reaper_reawwise.dll https://github.com/audiokinetic/ReaWwise/releases/download/$version/reaper_reawwise.dll
  [darwin] reaper_reawwise.dylib https://github.com/audiokinetic/ReaWwise/releases/download/$version/reaper_reawwise.dylib
@screenshot User Interface https://github.com/audiokinetic/ReaWwise/blob/main/user-interface.png
@about
  # ReaWwise

  ReaWwise is a REAPER extension that sound designers can use to transfer audio files from REAPER into Wwise projects. The transfer process creates Wwise objects in manually defined hierarchies, so that Wwise users can start working with the imported sounds immediately.

  ### Supported Platforms
  - Windows
  - Mac

  ## Basic Usage
  1. Open your REAPER and Wwise projects.
  2. Configure your REAPER render settings appropriately. The render settings determine which files will be transferred to Wwise.
  3. Open ReaWwise and configure settings such as the Originals Subfolder (optional), Import Destination, Wwise Structures, and so on.
  4. Preview the audio files and Wwise objects to be transferred in the Preview Panel.
  4. Click **Transfer To Wwise** to transfer the audio files and create the corresponding Wwise objects.

  ## UserPlugins Directory
  - Windows:  %appdata%\REAPER\UserPlugins
  - Mac: ~/Library/Application Support/REAPER/UserPlugins

  ## Other Resources
  Refer to the [ReaWwise User Guide](https://audiokinetic.com/library/reawwise) for more information regarding usage, installation and troubleshooting of the extension.

  For general questions about usage, refer to Audiokinetic's [Community Q&A](https://www.audiokinetic.com/qa/ask).

  ## Contributing
  The repository is not open to pull request but in the case of a bug report, bugfix or a suggestions, please feel free to [open an issue](https://github.com/audiokinetic/ReaWwise/issues).

  Feature requests can also be submitted to the [feature request section](https://www.audiokinetic.com/qa/questions/reawwise) of Audiokinetic's Community Q&A. Use ReaWwise as the Category when submitting a question.

  ## Legal
  Copyright © 2024 [Audiokinetic Inc.](https://audiokinetic.com) All rights reserved.

  ## Acknowledgements
  Inspired by the work of [Karl Davis](https://github.com/karltechno)

Which is referencing this release: https://github.com/audiokinetic/ReaWwise/releases/tag/1.0.6a Any help would be appreciated.

cfillion commented 4 months ago

Remove the empty line before @provides. reapack-index stops processing at the first empty line outside of a multiline tag's value.

ak-jstubbs commented 4 months ago

Thanks! That worked. I appreciate it.