Astra Starter Sites - Version 2.6.1

Version Description

Download this release

Release Info

Developer brainstormworg
Plugin Icon Astra Starter Sites
Version 2.6.1
Comparing to
See all releases

Code changes from version 2.6.0 to 2.6.1

astra-sites.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Starter Templates
4
  * Plugin URI: https://wpastra.com/
5
  * Description: Starter Templates is all in one solution for complete starter sites, single page templates, blocks & images. This plugin offers the premium library of ready templates & provides quick access to beautiful Pixabay images that can be imported in your website easily.
6
- * Version: 2.6.0
7
  * Author: Brainstorm Force
8
  * Author URI: https://www.brainstormforce.com
9
  * Text Domain: astra-sites
3
  * Plugin Name: Starter Templates
4
  * Plugin URI: https://wpastra.com/
5
  * Description: Starter Templates is all in one solution for complete starter sites, single page templates, blocks & images. This plugin offers the premium library of ready templates & provides quick access to beautiful Pixabay images that can be imported in your website easily.
6
+ * Version: 2.6.1
7
  * Author: Brainstorm Force
8
  * Author URI: https://www.brainstormforce.com
9
  * Text Domain: astra-sites
inc/lib/ast-block-templates/package.json ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "ast-block-templates",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "dev": "webpack --watch --mode development",
8
+ "start": "webpack-dev-server --mode development --open",
9
+ "build": "webpack --mode production",
10
+ "test": "jest --config ./jest.config.json",
11
+ "test:watch": "npm run test -- --watch",
12
+ "package": "bin\\build.sh",
13
+ "release": "npm run build && npm run package"
14
+ },
15
+ "keywords": [],
16
+ "author": "",
17
+ "license": "ISC",
18
+ "devDependencies": {
19
+ "@babel/cli": "^7.12.10",
20
+ "@babel/core": "^7.12.10",
21
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
22
+ "@babel/preset-env": "^7.12.11",
23
+ "@babel/preset-react": "^7.12.10",
24
+ "@testing-library/react": "^11.2.2",
25
+ "babel-loader": "^8.2.2",
26
+ "babel-plugin-lodash": "^3.3.4",
27
+ "css-loader": "^4.3.0",
28
+ "eslint": "^7.16.0",
29
+ "eslint-config-airbnb-base": "^14.2.1",
30
+ "eslint-plugin-import": "^2.22.1",
31
+ "html-webpack-plugin": "^4.5.0",
32
+ "prettier": "2.1.2",
33
+ "sass": "^1.32.0",
34
+ "sass-loader": "^10.1.0",
35
+ "style-loader": "^1.3.0",
36
+ "webpack": "^4.44.2",
37
+ "webpack-cli": "^3.3.12",
38
+ "webpack-dev-server": "^3.11.1"
39
+ },
40
+ "dependencies": {
41
+ "@wordpress/data": "^4.26.0",
42
+ "@wordpress/i18n": "^3.17.0",
43
+ "babel-core": "^6.26.3",
44
+ "babel-eslint": "^10.1.0",
45
+ "babel-plugin-istanbul": "^6.0.0",
46
+ "babel-plugin-syntax-dynamic-import": "^6.18.0",
47
+ "babel-plugin-transform-decorators-legacy": "^1.3.5",
48
+ "babel-plugin-transform-object-rest-spread": "^6.26.0",
49
+ "babel-polyfill": "^6.26.0",
50
+ "babel-preset-es2015": "^6.24.1",
51
+ "babel-preset-react": "^6.24.1",
52
+ "babel-preset-stage-2": "^6.24.1",
53
+ "browser-sync": "^2.26.13",
54
+ "browser-sync-webpack-plugin": "^2.3.0",
55
+ "eslint-config-airbnb": "^18.2.1",
56
+ "eslint-loader": "^4.0.2",
57
+ "eslint-plugin-flowtype": "^5.2.0",
58
+ "eslint-plugin-jsx-a11y": "^6.4.1",
59
+ "eslint-plugin-react": "^7.22.0",
60
+ "exports-loader": "^1.1.1",
61
+ "expose-loader": "^1.0.3",
62
+ "extract-text-webpack-plugin": "^3.0.2",
63
+ "fuse.js": "^6.4.4",
64
+ "gulp": "^4.0.2",
65
+ "gulp-autoprefixer": "^7.0.1",
66
+ "gulp-concat": "^2.6.1",
67
+ "gulp-minify-css": "^1.2.4",
68
+ "gulp-sass": "^4.1.0",
69
+ "imports-loader": "^1.2.0",
70
+ "jest": "^26.6.3",
71
+ "jquery": "^3.5.1",
72
+ "lodash": "^4.17.20",
73
+ "node-sass": "^4.14.1",
74
+ "path": "^0.12.7",
75
+ "react": "^16.14.0",
76
+ "react-dom": "^16.14.0",
77
+ "redux-logger": "^3.0.6",
78
+ "redux-multi": "^0.1.12",
79
+ "refx": "^3.1.1"
80
+ }
81
+ }
package.json ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "astra-sites",
3
+ "version": "2.6.1",
4
+ "main": "Gruntfile.js",
5
+ "author": "Brainstorm Force",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "start": "node inc/scripts/start.js",
9
+ "build": "node inc/scripts/build.js"
10
+ },
11
+ "dependencies": {
12
+ "@dr-kobros/react-webfont-loader": "^8.0.0",
13
+ "@fonticonpicker/react-fonticonpicker": "^1.2.0",
14
+ "@wordpress/api-fetch": "^2.2.8",
15
+ "@wordpress/scripts": "^5.0.0",
16
+ "autoprefixer": "^7.2.4",
17
+ "babel-core": "^6.26.3",
18
+ "babel-loader": "^7.1.5",
19
+ "babel-plugin-transform-class-properties": "6.24.1",
20
+ "babel-plugin-transform-object-rest-spread": "^6.26.0",
21
+ "babel-plugin-transform-react-jsx": "^6.24.1",
22
+ "babel-plugin-transform-runtime": "^6.23.0",
23
+ "babel-preset-env": "^1.6.0",
24
+ "chalk": "^2.4.2",
25
+ "classnames": "^2.2.6",
26
+ "concurrently": "^4.1.2",
27
+ "extract-text-webpack-plugin": "^3.0.2",
28
+ "filesize": "^3.5.11",
29
+ "grunt-bumpup": "^0.6.3",
30
+ "grunt-contrib-clean": "^1.1.0",
31
+ "grunt-contrib-compress": "^1.4.3",
32
+ "grunt-contrib-copy": "^1.0.0",
33
+ "grunt-rtlcss": "^2.0.2",
34
+ "grunt-text-replace": "^0.4.0",
35
+ "grunt-wp-i18n": "^1.0.3",
36
+ "gzip-size": "^4.1.0",
37
+ "jquery": "^3.4.0",
38
+ "node-sass": "^4.11.0",
39
+ "ora": "^1.3.0",
40
+ "postcss-loader": "^2.1.6",
41
+ "prop-types": "^15.7.2",
42
+ "querystringify": "^2.1.1",
43
+ "raw-loader": "^0.5.1",
44
+ "react": "^16.8.6",
45
+ "react-dom": "^16.8.6",
46
+ "react-select": "^2.4.3",
47
+ "react-slick": "^0.23.2",
48
+ "react-transition-group": "^2.9.0",
49
+ "rtlcss": "^2.4.0",
50
+ "sass-loader": "^6.0.6",
51
+ "slick-carousel": "^1.8.1",
52
+ "update-notifier": "^2.3.0",
53
+ "webpack": "^3.1.0"
54
+ },
55
+ "babel": {
56
+ "presets": [
57
+ [
58
+ "env",
59
+ {
60
+ "modules": false,
61
+ "targets": {
62
+ "browsers": [
63
+ "last 2 Chrome versions",
64
+ "last 2 Firefox versions",
65
+ "last 2 Safari versions",
66
+ "last 2 iOS versions",
67
+ "last 1 Android version",
68
+ "last 1 ChromeAndroid version",
69
+ "ie 11"
70
+ ]
71
+ }
72
+ }
73
+ ]
74
+ ],
75
+ "plugins": [
76
+ [
77
+ "transform-object-rest-spread"
78
+ ],
79
+ [
80
+ "transform-object-rest-spread",
81
+ {
82
+ "useBuiltIns": true
83
+ }
84
+ ],
85
+ [
86
+ "transform-react-jsx",
87
+ {
88
+ "pragma": "wp.element.createElement"
89
+ }
90
+ ],
91
+ [
92
+ "transform-runtime",
93
+ {
94
+ "helpers": false,
95
+ "polyfill": false,
96
+ "regenerator": true
97
+ }
98
+ ]
99
+ ]
100
+ },
101
+ "devDependencies": {
102
+ "babel-eslint": "^10.0.1",
103
+ "eslint": "^5.16.0",
104
+ "eslint-config-wordpress": "^2.0.0",
105
+ "eslint-plugin-jest": "^21.27.2",
106
+ "eslint-plugin-jsx-a11y": "^6.2.1",
107
+ "eslint-plugin-react": "^7.12.4",
108
+ "eslint-plugin-wordpress": "^0.1.0",
109
+ "grunt": "^1.2.1",
110
+ "grunt-bumpup": "^0.6.3",
111
+ "grunt-contrib-clean": "^1.1.0",
112
+ "grunt-contrib-compress": "^1.5.0",
113
+ "grunt-contrib-copy": "^1.0.0",
114
+ "grunt-text-replace": "^0.4.0",
115
+ "grunt-wp-i18n": "^1.0.3",
116
+ "grunt-wp-readme-to-markdown": "^2.0.1",
117
+ "load-grunt-tasks": "^4.0.0",
118
+ "memize": "^1.0.5",
119
+ "react-masonry-component": "^6.2.1",
120
+ "react-masonry-css": "^1.0.12",
121
+ "react-memoize": "^1.0.1",
122
+ "webfontloader": "^1.6.28",
123
+ "webpack-config": "^7.5.0"
124
+ }
125
+ }
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: Elementor,Beaver Builder,Templates,Gutenberg,Astra Starter Sites
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 5.6
8
- Stable tag: 2.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -149,6 +149,9 @@ We are open to suggestions and would love to work on topics that our users are l
149
 
150
  == Changelog ==
151
 
 
 
 
152
  v2.6.0 - 17-February-2021
153
  - New: Added the single pages and blocks for the Gutenberg. Read more https://wpastra.com/docs/import-gb-pages-patterns/
154
 
5
  Requires at least: 4.4
6
  Requires PHP: 5.3
7
  Tested up to: 5.6
8
+ Stable tag: 2.6.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
149
 
150
  == Changelog ==
151
 
152
+ v2.6.1 - 17-February-2021
153
+ - Fix: Version file was missing due to Auto-Release command.
154
+
155
  v2.6.0 - 17-February-2021
156
  - New: Added the single pages and blocks for the Gutenberg. Read more https://wpastra.com/docs/import-gb-pages-patterns/
157