-
Notifications
You must be signed in to change notification settings - Fork 1
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
Quarto GHA Workflow Runner
committed
Aug 14, 2024
1 parent
e465206
commit 93acc50
Showing
13 changed files
with
122 additions
and
36 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 |
---|---|---|
@@ -1 +1 @@ | ||
80da8516 | ||
625d1fdc |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -208,7 +208,10 @@ | |
"href": "contribute.html", | ||
"title": "How to contribute", | ||
"section": "", | ||
"text": "We welcome contributions from the passive acoustic glider community! If you would like to contribute to this repository, you can do so in a few ways:\n\nIf you find a bug…\nPlease report an issue on GitHub. Please use the ‘Bug report’ template.\n\n\nIf you’d like to request a feature or suggest an enhancement…\nPlease report an issue on GitHub. There is a ‘Feature request’ template just for this purpose.\n\n\nIf you’d like to add a feature or fix a bug yourself…\nFork the agate-public repository. This will create a copy of the repository in your own GitHub account. You can clone this fork to your local machine to work with the toolbox and make changes directly to the code, but also continue to pull changes from the primary repository to stay up to date. Then, when you have a feature you’d like to contribute back to the main repository, you can use a pull request to incorporate those changes.\nWe are happy to help get folks set up with this process, so please reach out with any questions!\nFor consistency in documentation, we ask that you use the following templates to create any new functions or scripts:\n\nNew function\nPaste the below code into the top of the new function and updated as needed. Refer to existing functions in the utils folder for examples of what kind of detail to include. For consistency, use ‘camelCase’ for the function name. Include your name, contact info, and MATLAB version info which can be checked with version.\nfunction output = newFunction(input)\n% NEWFUNCTION One-line description here, please\n%\n% Syntax:\n% OUTPUT = NEWFUNCTION(INPUT)\n%\n% Description:\n% Detailed description here, please\n% Inputs:\n% input describe, please\n%\n% Outputs:\n% output describe, please\n%\n% Examples:\n%\n% See also\n%\n% Authors:\n% F. Last <[email protected]> <https://github.com/username>\n%\n% FirstVersion: 05 August 2024\n% Updated:\n%\n% Created with MATLAB ver.: 9.13.0.2166757 (R2022b) Update 4\n% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\nNew script\nPaste the below code into the top of the new script and fill in the detail as needed. Refer to existing scripts in the example_workflows folder. Please include your name, contact info, and MATLAB version info which can be checked with version.\n% NEWSCRIPT\n% One-line description here, please\n%\n% Description:\n% Detailed description here, please\n%\n% Notes\n%\n% See also\n%\n%\n% Authors:\n% F. Last <[email protected]> <https://github.com/username>\n%\n% FirstVersion: 05 August 2024\n% Updated:\n%\n% Created with MATLAB ver.: 9.13.0.2166757 (R2022b) Update 4\n% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" | ||
"text": "We welcome contributions from the passive acoustic glider community! If you would like to contribute to this repository, you can do so in a few ways:\n\nIf you find a bug…\nPlease report an issue on GitHub. Please use the ‘Bug report’ template.\n\n\nIf you’d like to request a feature or suggest an enhancement…\nPlease report an issue on GitHub. There is a ‘Feature request’ template just for this purpose.\n\n\nIf you’d like to add a feature or fix a bug yourself…\nFork the agate-public repository. This will create a copy of the repository in your own GitHub account. You can clone this fork to your local machine to work with the toolbox and make changes directly to the code, but also continue to pull changes from the primary repository to stay up to date. Then, when you have a feature you’d like to contribute back to the main repository, you can use a pull request to incorporate those changes.\nWe are happy to help get folks set up with this process, so please reach out with any questions!\n\n\nCoding conventions\nStart reading the existing code to get a hang of our currenct conventions.\n\nUse camelCase for naming functions\nUse camelCase or underscores _ when naming variables\nAlways put spaces around = when defining variables, after list items and function parameters ([1, 2, 3], not [1,2,3]) and around operators (x + 1, not x+1)\nUse ... to extend function calls onto a second line if it runs beyond 76 characters\n\nFor consistency in documentation, we ask that you use the following templates to create any new functions or scripts:\n\nNew function\nPaste the below code into the top of the new function and updated as needed. Refer to existing functions in the utils folder for examples of what kind of detail to include. Include your name, contact info, and MATLAB version info which can be checked with version. Use spaces for all alignment (not tabs!) to ensure it renders properly with MATLAB documentation pop ups.\nfunction output = newFunction(input)\n% NEWFUNCTION One-line description here, please\n%\n% Syntax:\n% OUTPUT = NEWFUNCTION(INPUT)\n%\n% Description:\n% Detailed description here, please\n% Inputs:\n% input describe, please\n%\n% Outputs:\n% output describe, please\n%\n% Examples:\n%\n% See also\n%\n% Authors:\n% F. Last <[email protected]> <https://github.com/username>\n%\n% FirstVersion: 05 August 2024\n% Updated:\n%\n% Created with MATLAB ver.: 9.13.0.2166757 (R2022b) Update 4\n% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\nNew script\nPaste the below code into the top of the new script and fill in the detail as needed. Refer to existing scripts in the example_workflows folder. Please include your name, contact info, and MATLAB version info which can be checked with version.\n% NEWSCRIPT\n% One-line description here, please\n%\n% Description:\n% Detailed description here, please\n%\n% Notes\n%\n% See also\n%\n%\n% Authors:\n% F. Last <[email protected]> <https://github.com/username>\n%\n% FirstVersion: 05 August 2024\n% Updated:\n%\n% Created with MATLAB ver.: 9.13.0.2166757 (R2022b) Update 4\n% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%", | ||
"crumbs": [ | ||
"Contribute" | ||
] | ||
}, | ||
{ | ||
"objectID": "index.html", | ||
|
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