Skip to content

Commit

Permalink
Fix version number to be 4.5.2
Browse files Browse the repository at this point in the history
The eariler changes did not add any new API
  • Loading branch information
Lazerbeak12345 committed Feb 18, 2022
1 parent fb2487b commit 0ad0758
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The example code above included `B2/S23` (AKA "Conway's game of Life") as an exa

## Documentation

Function-by-function documentation. (Updated last for version `4.6`)
Function-by-function documentation. (Updated last for version `4.5`)

### The global

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pixelmanipulator",
"version": "4.6.1",
"version": "4.5.2",
"description": "Run any cellular automata on an html5 canvas.",
"main": "pixelmanipulator.js",
"repository": "[email protected]:Lazerbeak12345/pixelmanipulator.git",
Expand Down
2 changes: 1 addition & 1 deletion pixelmanipulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// Concerning the function commments, # is number, [] means array, {} means object, () means function, true means boolean and, "" means string. ? means optional, seperated with : means that it could be one or the other
(function(g) {
'use strict';
var pxversion="4.6.1";
var pxversion="4.5.2";
function pix(require,exports,module) {//done like this for better support for things like require.js and Dojo
/*function ret(v) {
return (function() {
Expand Down

0 comments on commit 0ad0758

Please sign in to comment.