Fixed incorrect mime type in ncc-package.xml

This update addresses a mistake in the `ncc-package.xml` file, where the wrong mime type was specified. The mime type has been corrected from `application/ncc-package` to `application/ncc` and the glob pattern from `*.ncc_pkg` to `*.ncc`. This change will ensure proper recognition and handling of the file type.
This commit is contained in:
Netkas 2023-10-12 15:59:58 -04:00
parent 4ef923b83c
commit 89b0c931b9
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
2 changed files with 3 additions and 2 deletions

View file

@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed issue where some build artifacts are being bundled with package builds such as `output_path` and `static`
where they should not be included in the package.
- Corrected mistakes in `ncc-package.xml` mime type
## [2.0.1] - 2023-10-11

View file

@ -21,11 +21,11 @@
-->
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/ncc-package">
<mime-type type="application/ncc">
<comment>ncc package binary</comment>
<magic priority="50">
<match type="string" value="ncc_pkg" offset="0"/>
</magic>
<glob pattern="*.ncc_pkg"/>
<glob pattern="*.ncc"/>
</mime-type>
</mime-info>