-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add info.xml to the project and revise .gitignore
- Loading branch information
Showing
3 changed files
with
46 additions
and
7 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 |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
.MATLABDriveTag | ||
*.asv | ||
*.mltbx | ||
info.xml | ||
doc/html/*.html | ||
**/*.nc |
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
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,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<productinfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="optional"> | ||
<?xml-stylesheet type="text/xsl"href="optional"?> | ||
<!-- info.xml file for the mytoolbox toolbox --> | ||
<!-- Version 1.0 --> | ||
<!-- Copyright (date) (owner).--> | ||
|
||
<!-- Supply the following six elements in the order specified --> | ||
<!-- (Required) Release of MATLAB. Not currently used but required --> | ||
<!-- to parse the file --> | ||
<matlabrelease>2021b</matlabrelease> | ||
<!-- (Required) Title of toolbox. Appears in the Contents pane --> | ||
<name>Climate Data Store Toolbox for MATLAB</name> | ||
<!-- (Required) Label for the toolbox. pick one: --> | ||
<!-- matlab, toolbox, simulink, blockset, links_targets --> | ||
<type>toolbox</type> | ||
<!-- (Required) Icon file to display in the Start button. Not currently used --> | ||
<!-- but required to parse the file --> | ||
<icon/> | ||
<!-- (Required if you supply help) Relative path to help (HTML) folder --> | ||
<help_location>doc/html</help_location> | ||
<!-- (Required if you supply help) Icon used in the Help browser TOC --> | ||
<!-- Ignored in R2015a and later --> | ||
<help_contents_icon/> | ||
</productinfo> |