-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added auto formatting thanks to cfformat * Auto-publishing of changelos and artifacts to github upon release * New Autolinking extension * New Autoanchor extension * New YouTube Transformer extension * New TOC extension * New TaskList extension * New Strikethrough extension * New Subscript extension
- Loading branch information
Showing
28 changed files
with
318 additions
and
130 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,56 +1,62 @@ | ||
{ | ||
"array.empty_padding" : false, | ||
"array.padding" : true, | ||
"array.multiline.min_length" : 40, | ||
"array.multiline.element_count" : 4, | ||
"array.multiline.leading_comma.padding" : true, | ||
"array.multiline.leading_comma" : false, | ||
"alignment.consecutive.assignments" : true, | ||
"alignment.consecutive.properties" : true, | ||
"alignment.consecutive.params" : true, | ||
"brackets.padding" : true, | ||
"comment.asterisks" : "align", | ||
"binary_operators.padding" : true, | ||
"for_loop_semicolons.padding" : true, | ||
"function_call.empty_padding" : false, | ||
"function_call.padding" : true, | ||
"function_call.multiline.leading_comma.padding" : true, | ||
"function_call.casing.builtin" : "cfdocs", | ||
"function_call.casing.userdefined" : "", | ||
"function_call.multiline.element_count" : 4, | ||
"function_call.multiline.leading_comma" : false, | ||
"function_call.multiline.min_length" : 40, | ||
"function_declaration.padding" : true, | ||
"function_declaration.empty_padding" : false, | ||
"function_declaration.multiline.leading_comma" : false, | ||
"function_declaration.multiline.leading_comma.padding" : true, | ||
"function_declaration.multiline.element_count" : 4, | ||
"function_declaration.multiline.min_length" : 40, | ||
"function_declaration.group_to_block_spacing" : "compact", | ||
"function_anonymous.empty_padding" : false, | ||
"function_anonymous.group_to_block_spacing" : "compact", | ||
"function_anonymous.multiline.element_count" : 4, | ||
"function_anonymous.multiline.leading_comma" : false, | ||
"function_anonymous.multiline.leading_comma.padding" : true, | ||
"function_anonymous.multiline.min_length" : 40, | ||
"function_anonymous.padding" : true, | ||
"indent_size" : 4, | ||
"keywords.block_to_keyword_spacing" : "spaced", | ||
"keywords.group_to_block_spacing" : "spaced", | ||
"keywords.padding_inside_group" : true, | ||
"keywords.spacing_to_block" : "spaced", | ||
"keywords.spacing_to_group" : true, | ||
"keywords.empty_group_spacing" : false, | ||
"max_columns" : 120, | ||
"parentheses.padding" : true, | ||
"strings.quote" : "double", | ||
"strings.attributes.quote" : "double", | ||
"struct.separator" : " : ", | ||
"struct.padding" : true, | ||
"struct.empty_padding" : false, | ||
"struct.multiline.leading_comma" : false, | ||
"struct.multiline.leading_comma.padding" : true, | ||
"struct.multiline.element_count" : 4, | ||
"struct.multiline.min_length" : 40, | ||
"tab_indent" : true | ||
"array.empty_padding": false, | ||
"array.padding": true, | ||
"array.multiline.min_length": 40, | ||
"array.multiline.element_count": 2, | ||
"array.multiline.leading_comma.padding": true, | ||
"array.multiline.leading_comma": false, | ||
"alignment.consecutive.assignments": true, | ||
"alignment.consecutive.properties": true, | ||
"alignment.consecutive.params": true, | ||
"brackets.padding": true, | ||
"comment.asterisks": "align", | ||
"binary_operators.padding": true, | ||
"for_loop_semicolons.padding": true, | ||
"function_call.empty_padding": false, | ||
"function_call.padding": true, | ||
"function_call.multiline.leading_comma.padding": true, | ||
"function_call.casing.builtin": "cfdocs", | ||
"function_call.casing.userdefined": "camel", | ||
"function_call.multiline.element_count": 2, | ||
"function_call.multiline.leading_comma": false, | ||
"function_call.multiline.min_length": 40, | ||
"function_declaration.padding": true, | ||
"function_declaration.empty_padding": false, | ||
"function_declaration.multiline.leading_comma": false, | ||
"function_declaration.multiline.leading_comma.padding": true, | ||
"function_declaration.multiline.element_count": 2, | ||
"function_declaration.multiline.min_length": 40, | ||
"function_declaration.group_to_block_spacing": "compact", | ||
"function_anonymous.empty_padding": false, | ||
"function_anonymous.group_to_block_spacing": "compact", | ||
"function_anonymous.multiline.element_count": 2, | ||
"function_anonymous.multiline.leading_comma": false, | ||
"function_anonymous.multiline.leading_comma.padding": true, | ||
"function_anonymous.multiline.min_length": 40, | ||
"function_anonymous.padding": true, | ||
"indent_size": 4, | ||
"keywords.block_to_keyword_spacing": "spaced", | ||
"keywords.group_to_block_spacing": "spaced", | ||
"keywords.padding_inside_group": true, | ||
"keywords.spacing_to_block": "spaced", | ||
"keywords.spacing_to_group": true, | ||
"keywords.empty_group_spacing": false, | ||
"max_columns": 120, | ||
"metadata.multiline.element_count": 3, | ||
"metadata.multiline.min_length": 40, | ||
"method_call.chain.multiline" : 3, | ||
"newline":"\n", | ||
"property.multiline.element_count": 3, | ||
"property.multiline.min_length": 40, | ||
"parentheses.padding": true, | ||
"strings.quote": "double", | ||
"strings.attributes.quote": "double", | ||
"struct.separator": " : ", | ||
"struct.padding": true, | ||
"struct.empty_padding": false, | ||
"struct.multiline.leading_comma": false, | ||
"struct.multiline.leading_comma.padding": true, | ||
"struct.multiline.element_count": 2, | ||
"struct.multiline.min_length": 40, | ||
"tab_indent": true | ||
} |
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,8 @@ | ||
{ | ||
"line-length": false, | ||
"single-h1": false, | ||
"first-line-h1": false, | ||
"no-multiple-blanks": { | ||
"maximum": 2 | ||
} | ||
} |
This file was deleted.
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
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
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 |
---|---|---|
|
@@ -78,7 +78,7 @@ component{ | |
.toConsole(); | ||
} | ||
|
||
/** | ||
/** | ||
* Run the test suites | ||
*/ | ||
function runTests(){ | ||
|
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,19 +1,25 @@ | ||
# This recipe signifies a new release of the module by doing merges and bumps accordingly | ||
|
||
# Check out master | ||
# Check out master and update it locally | ||
!git checkout -f master | ||
# Merge development into it | ||
!git pull origin master | ||
|
||
# Merge development into it for release | ||
!git merge --no-ff development | ||
# Tag the master repo with the version in box.json | ||
|
||
# Tag the master repo with the version from box.json | ||
!git tag v`box package show version` | ||
# Push all branches | ||
|
||
# Push all branches back out to github | ||
!git push origin --all | ||
|
||
# Push all tags | ||
!git push origin --tags | ||
|
||
# Check development again | ||
!git checkout -f development | ||
|
||
# Bump to prepare for a new release, do minor, change if needed and don't tag | ||
bump --minor --!tagVersion | ||
# Send it out | ||
!git commit -a -m "version bump" | ||
!git push origin development |
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,34 +1,70 @@ | ||
# CHANGELOG | ||
# Changelog | ||
|
||
## 3.3.0 | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
---- | ||
|
||
## [3.4.0] => 2020-MAY-28 | ||
|
||
### Added | ||
|
||
* Updated flexmark to 0.50.50 | ||
* Added auto formatting thanks to cfformat | ||
* Auto-publishing of changelos and artifacts to github upon release | ||
* New Autolinking extension | ||
* New Autoanchor extension | ||
* New YouTube Transformer extension | ||
* New TOC extension | ||
* New TaskList extension | ||
* New Strikethrough extension | ||
* New Subscript extension | ||
|
||
---- | ||
|
||
## [3.3.0] => 2019-DEC-13 | ||
|
||
* New module layout | ||
* New flexmark core v0.50.44 thanks to @michaelborn | ||
|
||
## 3.2.0 | ||
---- | ||
|
||
## [3.2.0] => 2018-MAR-22 | ||
|
||
* Full Emoji support via the `cbemoji` library | ||
|
||
## 3.1.0 | ||
---- | ||
|
||
## [3.1.0] => 2018-MAR-08 | ||
|
||
* Dropped ACF10 support | ||
* Fixes the appending of user options instead of default options always taking precedence | ||
* Added accessors to Processor so you can retrieve internal parser and renderer | ||
|
||
## 3.0.0 | ||
---- | ||
|
||
## [3.0.0] => 2017-JUL-26 | ||
|
||
* Updated entire core to use Flexmark markdown processor | ||
* Added global options for processor | ||
|
||
## 2.0.1 | ||
---- | ||
|
||
## [2.0.1] | ||
|
||
* Unified workbench | ||
* Updated javaloader | ||
|
||
## 2.0.0 | ||
---- | ||
|
||
## [2.0.0] | ||
|
||
* Updated internal markdown Java library to txtmark: https://github.com/rjeschke/txtmark | ||
|
||
## 1.0.0 | ||
---- | ||
|
||
## [1.0.0] | ||
|
||
* Create first module version |
Oops, something went wrong.