Skip to content

Commit

Permalink
v5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Serrin authored Oct 23, 2023
1 parent 50cb244 commit 8685a6e
Show file tree
Hide file tree
Showing 17 changed files with 536 additions and 731 deletions.
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,65 @@
# Celestra version history


## Celestra v5.6.0 Razorback

1. Documentation and pdf fixes.
````
HTML - minmax(<value>,<min>,<max>); - This is an alias of the minmax(<value>,<min>,<max>);.
HTML - REMOVED polyfills in v3.1.0 - String.prototype.codePointAt();7
````

2. Remove these aliases: `domToTop();`, `domToBottom();`

3. Remove these functions: `randomString();`, `randomID();`

4. Add these polyfills:
````
Object.groupBy();
Map.groupBy();
````

5. Fix the function `group(<collection>,<callback>[,map=false]);` with the new, standard function calls.

6. Deprecate this function: `group(<collection>,<callback>[,map=false]);`

7. Add the 4th page in the __celestra-cheatsheet.odt__ and __celestra-cheatsheet.pdf__ with the removed polyfills.

8. Move these polyfills in the **celestra-polyfills.dev.js** and **celestra-polyfills.min.js**
````
Array.prototype.at();
Array.prototype.findLast();
Array.prototype.findLastIndex();
Array.prototype.flat();
Array.prototype.flatMap();
Array.prototype.group();
Array.prototype.groupToMap();
Number.MIN_SAFE_INTEGER;
Number.MAX_SAFE_INTEGER;
Object.fromEntries();
Object.is();
String.prototype.at();
String.prototype.matchAll();
String.prototype.padStart();
String.prototype.padEnd();
String.prototype.replaceAll();
String.prototype.trimStart();
String.prototype.trimLeft();
String.prototype.trimEnd();
String.prototype.trimRight();
Typedarray.prototype.at();
TypedArray.prototype.findLast();
TypedArray.prototype.findLastIndex();
````

9. Close the milestone __5.6.0 Razorback__.



## Celestra v5.5.5

1. Documentation and pdf fixes.
Expand Down
42 changes: 12 additions & 30 deletions README.md

Large diffs are not rendered by default.

37 changes: 6 additions & 31 deletions btc.app.html

Large diffs are not rendered by default.

Binary file modified celestra-cheatsheet.odt
Binary file not shown.
Binary file modified celestra-cheatsheet.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions celestra-demo-plugin.dev.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* @name Celestra demo plugin
* @version 5.5.5 dev
* @version 5.6.0 dev
* @see https://github.com/Serrin/Celestra
* @license MIT https://opensource.org/licenses/MIT
* Required Celestra version: 5.5.5
* Required Celestra version: 5.6.0
*/

(function(celestra){
Expand Down
2 changes: 1 addition & 1 deletion celestra-demo-plugin.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2>Download and informations</h2>

<p>Tested on desktop browsers (latest Chrome, latest Firefox, latest Edge) and mobile devices (iOS Safari, Chrome, Firefox and Android Chrome, Samsung Internet, Firefox, Edge).</p>

<p>Latest version: 5.5.5</p>
<p>Latest version: 5.6.0</p>

<p>Developer edition: <a href="celestra-demo-plugin.dev.js" target="_blank">celestra-demo-plugin.dev.js</a></p>
<p>Minified edition: <a href="celestra-demo-plugin.min.js" target="_blank">celestra-demo-plugin.min.js</a></p>
Expand Down
2 changes: 1 addition & 1 deletion celestra-demo-plugin.min.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** Celestra demo plugin * @version 5.5.5 min * @see https://github.com/Serrin/Celestra/ * @license MIT */
/** Celestra demo plugin * @version 5.6.0 min * @see https://github.com/Serrin/Celestra/ * @license MIT */
(function(celestra){
"use strict";
function collect(it,mapFn){var r=[],i=0;for(let item of it){if(typeof mapFn!=="function"){r.push(item);}else{r.push(mapFn(item,i++));}}return r;}
Expand Down
Loading

0 comments on commit 8685a6e

Please sign in to comment.