Version Bump
This commit is contained in:
parent
61f1f12b3a
commit
1196e44266
462 changed files with 926 additions and 379 deletions
|
@ -12,6 +12,9 @@ A theme for travelers, writers and photographers.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.4 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.4 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: A theme for travelers, writers and photographers.
|
|||
Requires at least: 6.1
|
||||
Tested up to: 6.1.1
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.3
|
||||
Version: 1.0.4
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
|
|
|
@ -4,7 +4,7 @@ Theme URI: http://wordpress.com/themes/affinity/
|
|||
Author: Automattic
|
||||
Author URI: http://wordpress.com/themes/
|
||||
Description: Affinity is a classic one-page theme designed with weddings and family announcements in mind.
|
||||
Version: 1.0.0-wpcom
|
||||
Version: 1.1.4-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: affinity
|
||||
|
@ -148,87 +148,108 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel {
|
||||
|
||||
/* Colour-code all panels (add 1 to account for #affinity-hero, so 2 is actually panel 1)*/
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel::after {
|
||||
border: 2px dashed;
|
||||
bottom: 1.6em;
|
||||
content: '';
|
||||
content: "";
|
||||
display: block;
|
||||
left: 1.6em;
|
||||
position: absolute;
|
||||
right: 1.6em;
|
||||
top: 1.6em;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel .affinity-panel-title {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
font-family: $font__headings;
|
||||
@include font-size(.875);
|
||||
|
||||
@include font-size(0.875);
|
||||
letter-spacing: 1px;
|
||||
padding: 5px 10px;
|
||||
position: absolute;
|
||||
top: 3.2em;
|
||||
right: 3.2em;
|
||||
text-transform: uppercase;
|
||||
transform: translate(3px,-3px);
|
||||
transform: translate(3px, -3px);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(1)::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(2) .affinity-panel-title {
|
||||
background: #a64b55;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(2)::after {
|
||||
border-color: #a64b55;
|
||||
color: #a64b55;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(3) .affinity-panel-title {
|
||||
background: #b569a2;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(3)::after {
|
||||
border-color: #b569a2;
|
||||
color: #b569a2;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(4) .affinity-panel-title {
|
||||
background: #8f68bd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(4)::after {
|
||||
border-color: #8f68bd;
|
||||
color: #8f68bd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(5) .affinity-panel-title {
|
||||
background: #575ebd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(5)::after {
|
||||
border-color: #575ebd;
|
||||
color: #575ebd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(6) .affinity-panel-title {
|
||||
background: #55a1bd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(6)::after {
|
||||
border-color: #55a1bd;
|
||||
color: #55a1bd;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(7) .affinity-panel-title {
|
||||
background: #7dbd8f;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(7)::after {
|
||||
border-color: #7dbd8f;
|
||||
color: #7dbd8f;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(8) .affinity-panel-title {
|
||||
background: #c8b247;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(8)::after {
|
||||
border-color: #c8b247;
|
||||
color: #c8b247;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(9) .affinity-panel-title {
|
||||
background: #bd7555;
|
||||
}
|
||||
|
||||
.affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(9)::after {
|
||||
border-color: #bd7555;
|
||||
color: #bd7555;
|
||||
|
@ -236,6 +257,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
/* Add a highlight class to improve Customizer behaviour */
|
||||
@-webkit-keyframes flash {
|
||||
|
||||
0%,
|
||||
20%,
|
||||
40%,
|
||||
|
@ -244,6 +266,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
10%,
|
||||
30%,
|
||||
50%,
|
||||
|
@ -252,7 +275,9 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes flash {
|
||||
|
||||
0%,
|
||||
20%,
|
||||
40%,
|
||||
|
@ -261,6 +286,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
10%,
|
||||
30%,
|
||||
50%,
|
||||
|
@ -272,14 +298,14 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
.affinity-highlight::after {
|
||||
-webkit-animation-duration: 2s;
|
||||
animation-duration: 2s;
|
||||
animation-duration: 2s;
|
||||
-webkit-animation-name: flash;
|
||||
animation-name: flash;
|
||||
animation-name: flash;
|
||||
-webkit-animation-timing-function: ease-in-out;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-timing-function: ease-in-out;
|
||||
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
|
@ -298,7 +324,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
width: auto;
|
||||
height: auto;
|
||||
visibility: visible;
|
||||
margin: 0 .4em;
|
||||
margin: 0 0.4em;
|
||||
}
|
||||
|
||||
.panel-navigation {
|
||||
|
@ -325,7 +351,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%,-50%);
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
@ -336,10 +362,11 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
.edit-link a,
|
||||
.edit-link a:visited {
|
||||
border: 3px solid rgba($color__border-button,0.5);
|
||||
color: rgba($color__border-button,0.5);
|
||||
border: 3px solid rgba($color__border-button, 0.5);
|
||||
color: rgba($color__border-button, 0.5);
|
||||
display: inline-block;
|
||||
@include font-size(.8);
|
||||
|
||||
@include font-size(0.8);
|
||||
font-family: $font__headings;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
|
@ -347,11 +374,11 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
text-decoration: none;
|
||||
padding: 3px 6px;
|
||||
position: absolute;
|
||||
top: 1.6em;
|
||||
left: 1.6em;
|
||||
top: 1.6em;
|
||||
left: 1.6em;
|
||||
z-index: 2;
|
||||
transition: 0.3s;
|
||||
|
||||
|
||||
&:hover {
|
||||
border-color: $color__border-button;
|
||||
color: $color__border-button;
|
||||
|
@ -369,6 +396,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
display: inline-block;
|
||||
text-transform: none;
|
||||
letter-spacing: 0;
|
||||
|
||||
@include font-size(1);
|
||||
font-family: $font__main;
|
||||
font-weight: normal;
|
||||
|
@ -412,6 +440,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
display: inline-block;
|
||||
text-transform: none;
|
||||
letter-spacing: 0;
|
||||
|
||||
@include font-size(1);
|
||||
font-family: $font__main;
|
||||
font-weight: normal;
|
||||
|
@ -423,38 +452,46 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
h1 {
|
||||
|
||||
@include font-size(2.945);
|
||||
}
|
||||
|
||||
h2 {
|
||||
|
||||
@include font-size(2.625);
|
||||
}
|
||||
|
||||
h3 {
|
||||
|
||||
@include font-size(1.825);
|
||||
}
|
||||
|
||||
h4 {
|
||||
|
||||
@include font-size(1.625);
|
||||
}
|
||||
|
||||
h5 {
|
||||
|
||||
@include font-size(1.125);
|
||||
}
|
||||
|
||||
h6 {
|
||||
|
||||
@include font-size(1);
|
||||
}
|
||||
|
||||
.entry-title {
|
||||
line-height: 1.2;
|
||||
|
||||
@include font-size(2.945);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.site-description {
|
||||
|
||||
@include font-size(2);
|
||||
line-height: 1.4;
|
||||
color: $color__border-button;
|
||||
|
@ -472,10 +509,12 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.page-title {
|
||||
|
||||
@include font-size(1.825);
|
||||
}
|
||||
|
||||
.entry-summary {
|
||||
|
||||
@include font-size(1.625);
|
||||
}
|
||||
|
||||
|
@ -498,7 +537,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.no-custom-header .header-wrapper {
|
||||
padding-bottom: .8em;
|
||||
padding-bottom: 0.8em;
|
||||
}
|
||||
|
||||
.no-custom-header .site-title,
|
||||
|
@ -514,7 +553,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%,-50%);
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 2;
|
||||
width: $size_site-main;
|
||||
}
|
||||
|
@ -542,7 +581,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
.current-menu-item > a,
|
||||
.current_page_ancestor > a,
|
||||
.current-menu-ancestor > a {
|
||||
color: rgba($color__border-button,0.5);
|
||||
color: rgba($color__border-button, 0.5);
|
||||
}
|
||||
|
||||
&.toggled > div {
|
||||
|
@ -568,7 +607,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
ul {
|
||||
background-color: white;
|
||||
box-shadow: 0 0 2px 1px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
|
||||
border: 6px solid white;
|
||||
float: left;
|
||||
font-family: $font__main;
|
||||
|
@ -582,11 +621,11 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
z-index: 99999;
|
||||
|
||||
a {
|
||||
padding: .8em !important;
|
||||
padding: 0.8em !important;
|
||||
padding-left: inherit;
|
||||
}
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
content: "";
|
||||
width: 0;
|
||||
height: 0;
|
||||
|
@ -600,7 +639,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
top: -20px;
|
||||
}
|
||||
|
||||
&:after {
|
||||
&::after {
|
||||
border: 3px solid $color__border-button;
|
||||
content: "";
|
||||
display: block;
|
||||
|
@ -620,7 +659,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
padding-left: inherit;
|
||||
}
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
@ -628,12 +667,13 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
li {
|
||||
margin-left: 0;
|
||||
text-align: center;
|
||||
|
||||
&:hover > ul,
|
||||
&.focus > ul {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
a:after {
|
||||
a::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -663,7 +703,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
a:visited {
|
||||
border-bottom: 1px solid $color__border-button;
|
||||
color: $color__text-screen;
|
||||
padding: .8em;
|
||||
padding: 0.8em;
|
||||
margin: 0;
|
||||
width: 180px;
|
||||
}
|
||||
|
@ -682,10 +722,10 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
li:hover > ul,
|
||||
li.focus > ul {
|
||||
left: 50%;
|
||||
transform: translateX(-.75em) translateX(-50%);
|
||||
transform: translateX(-0.75em) translateX(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
li {
|
||||
display: inline-block;
|
||||
margin-left: 0.8em;
|
||||
|
@ -693,22 +733,22 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
&:hover > a,
|
||||
&.focus > a {
|
||||
color: rgba($color__border-button,0.5);
|
||||
color: rgba($color__border-button, 0.5);
|
||||
|
||||
&:visited {
|
||||
color: rgba($color__border-button,0.5);
|
||||
color: rgba($color__border-button, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
a:after {
|
||||
a::after {
|
||||
content: "\2666";
|
||||
color: rgba($color__border-button,0.25);
|
||||
color: rgba($color__border-button, 0.25);
|
||||
display: inline-block;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
&:last-of-type a:after {
|
||||
&:last-of-type a::after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
@ -719,38 +759,38 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
position: relative;
|
||||
padding-right: 1.6em;
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
content: "\f431";
|
||||
font-family: Genericons;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 1.4em;
|
||||
top: 3px;
|
||||
right: 1.4em;
|
||||
top: 3px;
|
||||
vertical-align: text-top;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
&:after {
|
||||
&::after {
|
||||
position: relative;
|
||||
left: 1.6em;
|
||||
}
|
||||
}
|
||||
|
||||
li.menu-item-has-children:last-of-type > a:before,
|
||||
li.page_item_has_children:last-of-type > a:before {
|
||||
right: -.1em;
|
||||
li.menu-item-has-children:last-of-type > a::before,
|
||||
li.page_item_has_children:last-of-type > a::before {
|
||||
right: -0.1em;
|
||||
}
|
||||
|
||||
ul ul li.menu-item-has-children > a,
|
||||
ul ul li.page_item_has_children > a {
|
||||
|
||||
&:before {
|
||||
&::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&:after {
|
||||
&::after {
|
||||
content: "\f431";
|
||||
color: $color__link;
|
||||
font-family: Genericons;
|
||||
|
@ -782,7 +822,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
.header-wrapper.without-transparency {
|
||||
background-color: $color__text-main;
|
||||
box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
|
||||
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.affinity-customizer .header-wrapper {
|
||||
|
@ -791,6 +831,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
@media screen and (max-width: 782px) {
|
||||
|
||||
.admin-bar .header-wrapper {
|
||||
top: 46px;
|
||||
}
|
||||
|
@ -799,6 +840,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
@media screen and ( min-width: 58em ) {
|
||||
|
||||
.site-description {
|
||||
|
||||
@include font-size(2.945);
|
||||
}
|
||||
|
||||
|
@ -871,7 +913,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
clear: both;
|
||||
display: block;
|
||||
float: none;
|
||||
margin-bottom: .8em;
|
||||
margin-bottom: 0.8em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
|
@ -879,7 +921,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
clear: none;
|
||||
}
|
||||
|
||||
.comment-meta .edit-link:before {
|
||||
.comment-meta .edit-link::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -892,7 +934,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
.entry-meta,
|
||||
.comment-meta {
|
||||
border-right: 1px solid $color__border-button;
|
||||
padding-right: .8em;
|
||||
padding-right: 0.8em;
|
||||
float: left;
|
||||
width: 21%;
|
||||
}
|
||||
|
@ -907,6 +949,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.page-template-guestbook {
|
||||
|
||||
.comment-content,
|
||||
.comment-meta {
|
||||
width: 100%;
|
||||
|
@ -922,6 +965,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
|
||||
.page,
|
||||
.jetpack-portfolio {
|
||||
|
||||
.entry-content,
|
||||
.entry-summary,
|
||||
.entry-footer {
|
||||
|
@ -963,6 +1007,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(3),
|
||||
.footer-widgets .widget-areas .widget-area:nth-child(2):nth-last-child(2),
|
||||
.footer-widgets .widget-areas .widget-area:nth-child(3):nth-last-child(1) {
|
||||
|
@ -992,6 +1037,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
blockquote {
|
||||
|
||||
@include font-size(1.625);
|
||||
|
||||
&.alignright,
|
||||
|
@ -1009,6 +1055,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
img {
|
||||
|
||||
&.alignleft.below-entry-meta {
|
||||
margin-left: -7.2em;
|
||||
}
|
||||
|
@ -1025,7 +1072,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
.wp-caption-text {
|
||||
border-top: 3px solid $color__border-button;
|
||||
margin: 0;
|
||||
padding-top: .8em;
|
||||
padding-top: 0.8em;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 158px;
|
||||
|
@ -1033,6 +1080,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.wp-caption.alignleft.below-entry-meta {
|
||||
|
||||
.wp-caption-text {
|
||||
transform: translateX(-100%) translateX(-1.6em);
|
||||
text-align: right;
|
||||
|
@ -1040,6 +1088,7 @@ Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
|
|||
}
|
||||
|
||||
.wp-caption.alignright.below-sidebar {
|
||||
|
||||
.wp-caption-text {
|
||||
right: 0;
|
||||
transform: translateX(100%) translateX(1.6em);
|
||||
|
|
|
@ -4,7 +4,7 @@ Theme URI: http://wordpress.com/themes/affinity/
|
|||
Author: Automattic
|
||||
Author URI: http://wordpress.com/themes/
|
||||
Description: Affinity is a classic one-page theme designed with weddings and family announcements in mind.
|
||||
Version: 1.1.3-wpcom
|
||||
Version: 1.1.4-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: affinity
|
||||
|
|
|
@ -12,6 +12,9 @@ Al Dente is a blog theme perfect for blogs whose posts are categorised, for exam
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Al Dente is a blog theme perfect for blogs whose posts are categori
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.2.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: aldente
|
||||
|
|
|
@ -12,6 +12,9 @@ Allez is the perfect theme site for sports practitioners or fans who want to blo
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.2 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Allez is the perfect theme site for sports practitioners or fans wh
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4.1
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: allez
|
||||
|
|
|
@ -12,6 +12,9 @@ Alter is a lean theme for bloggers that goes directly to the point, showing text
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Alter is a lean theme for bloggers that goes directly to the point,
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.2.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: alter
|
||||
|
|
|
@ -4,7 +4,7 @@ Theme URI: https://wordpress.com/themes/altofocus/
|
|||
Author: Automattic, Inc
|
||||
Author URI: http://automattic.com
|
||||
Description: AltoFocus is a theme for photographers, artists, and other creative types in search of a simple and easy way to display their work.
|
||||
Version: 1.0.12-wpcom
|
||||
Version: 1.0.13-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: altofocus
|
||||
|
|
|
@ -27,6 +27,9 @@ AltoFocus includes support for Jetpack's Infinite Scroll as well as other featur
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.13 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.12 =
|
||||
* altofocus: Sync changes from D133939 (#7595)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://wordpress.com/themes/altofocus/
|
|||
Author: Automattic, Inc
|
||||
Author URI: http://automattic.com
|
||||
Description: AltoFocus is a theme for photographers, artists, and other creative types in search of a simple and easy way to display their work.
|
||||
Version: 1.0.12-wpcom
|
||||
Version: 1.0.13-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: altofocus
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "alves",
|
||||
"version": "1.5.27",
|
||||
"version": "1.5.28",
|
||||
"description": "Alves",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues"
|
||||
|
|
|
@ -5,7 +5,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Convincing design for your charity or organization’s online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.5.27
|
||||
Version: 1.5.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Convincing design for your charity or organization’s online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.5.27
|
||||
Version: 1.5.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Convincing design for your charity or organization’s online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.5.27
|
||||
Version: 1.5.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -12,6 +12,9 @@ Ames is a minimalist theme, designed for single-page websites. Its single post a
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Ames is a minimalist theme, designed for single-page websites.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ Antonia is a theme for selling products with the help of payments block.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.6 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 0.0.6 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Antonia is a theme for selling products with the help of payments b
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.5
|
||||
Version: 1.0.6
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://wordpress.com/themes/apostrophe-2
|
|||
Author: Automattic
|
||||
Author URI: https://wordpress.com/themes/
|
||||
Description: A clean, no-nonsense magazine theme
|
||||
Version: 2.0.10-wpcom
|
||||
Version: 2.0.11-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: apostrophe-2
|
||||
|
|
|
@ -12,6 +12,9 @@ Appleton is a theme for creative professionals, such as photographers, designers
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.8 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 0.0.8 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Appleton is a theme for creative professionals, such as photographe
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.7
|
||||
Version: 1.0.8
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ Arbutus is a simple blogging theme that supports full-site editing. It comes wit
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.18 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.18 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Arbutus is a simple blogging theme that supports full-site editing.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.17
|
||||
Version: 1.0.18
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ A theme inspired by Mayan history and culture.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.21 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.21 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: A theme inspired by Mayan history and culture
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.20
|
||||
Version: 1.0.21
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: archeo
|
||||
|
|
|
@ -12,6 +12,9 @@ Archivo is a blog and portfolio theme that shows your featured image large.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.6 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.5 =
|
||||
* Archivo: Remove hard-coded link (#7495)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Archivo is a blog and portfolio theme that shows your featured imag
|
|||
Requires at least: 6.3
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.5
|
||||
Version: 1.0.6
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
|
|
|
@ -12,6 +12,9 @@ Artly is a WordPress theme designed for blogs and magazines. Its modern, offset
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.5 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.5 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Artly is a WordPress theme designed for blogs and magazines. Its mo
|
|||
Requires at least: 5.8
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.4
|
||||
Version: 1.0.5
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: artly
|
||||
|
|
|
@ -12,6 +12,10 @@ Assemble something beautiful.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 0.0.12 =
|
||||
* Lossless image optimization (#7671)
|
||||
* Assembler: Lint styles (#7686)
|
||||
|
||||
= 0.0.12 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Assemble something beautiful.
|
|||
Requires at least: 6.4
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 7.0
|
||||
Version: 0.0.11
|
||||
Version: 0.0.12
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: assembler
|
||||
|
|
|
@ -12,6 +12,9 @@ Attar is a minimal, product-oriented theme.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.5 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 0.0.5 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Attar is a minimal, product-oriented theme.
|
|||
Requires at least: 5.9
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.4
|
||||
Version: 1.0.5
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -11,6 +11,9 @@ Awburn is the ideal choice for creating an online presence for your business. As
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.5 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.5 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Awburn is the ideal choice for creating an online presence for your
|
|||
Requires at least: 5.8
|
||||
Tested up to: 6.3
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.4
|
||||
Version: 1.0.5
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: awburn
|
||||
|
|
|
@ -12,6 +12,9 @@ Azur draws its inspiration from the mesmerizing hues of the Azure coast, where t
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Azur draws its inspiration from the mesmerizing hues of the Azure c
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: azur
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "balasana",
|
||||
"version": "1.3.26",
|
||||
"version": "1.3.27",
|
||||
"description": "Balasana",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues"
|
||||
|
|
|
@ -5,7 +5,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Balasana is a clean and minimalist business theme designed with health and wellness-focused sites in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.26
|
||||
Version: 1.3.27
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Balasana is a clean and minimalist business theme designed with health and wellness-focused sites in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.26
|
||||
Version: 1.3.27
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Balasana is a clean and minimalist business theme designed with health and wellness-focused sites in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.26
|
||||
Version: 1.3.27
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -12,6 +12,9 @@ Barnett is a minimalist theme, designed for single-page websites.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Barnett is a minimalist theme, designed for single-page websites.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "barnsbury",
|
||||
"version": "1.3.27",
|
||||
"version": "1.3.28",
|
||||
"description": "Barnsbury",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues"
|
||||
|
|
|
@ -5,7 +5,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Barnsbury is an earthy and friendly theme design with farming and agriculture businesses in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.27
|
||||
Version: 1.3.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Barnsbury is an earthy and friendly theme design with farming and agriculture businesses in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.27
|
||||
Version: 1.3.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Barnsbury is an earthy and friendly theme design with farming and agriculture businesses in mind.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.3.27
|
||||
Version: 1.3.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Template: varia
|
||||
|
|
|
@ -12,6 +12,9 @@ The recently updated Barnsbury is an earthy, friendly theme made with farming an
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: The recently updated Barnsbury is an earthy, friendly theme made wi
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.2.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: barnsbury23
|
||||
|
|
|
@ -12,6 +12,9 @@ Inspired by the iconic worlds of Minecraft and Minetest, Bedrock is a blog theme
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Inspired by the iconic worlds of Minecraft and Minetest, Bedrock is
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: bedrock
|
||||
|
|
|
@ -12,6 +12,9 @@ Inspired by the phrase “code is poetry”, this is a geeky theme designed for
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.2 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Inspired by the phrase “code is poetry”, this is a geeky theme
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: beep
|
||||
|
|
|
@ -12,6 +12,9 @@ Bennett is a minimalist theme, designed for single-page websites.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.4 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.4 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Bennet is a minimalist theme, designed for single-page websites.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.3
|
||||
Version: 1.0.4
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ A simple and fun restaurant theme.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.6 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.6 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: A simple and fun restaurant theme.
|
|||
Requires at least: 6.1
|
||||
Tested up to: 6.1
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.5
|
||||
Version: 1.0.6
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
|
|
|
@ -12,6 +12,9 @@ Bibliophile was designed to provide an impeccable reading experience. Its header
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.2 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Bibliophile was designed to provide an impeccable reading experienc
|
|||
Requires at least: 6.1
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: bibliophile
|
||||
|
|
|
@ -12,6 +12,9 @@ Blank Canvas is a barebones starter theme, stripped off of content templates but
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.11 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 0.0.10 =
|
||||
* Update new theme links to point to WPCOM instead of GitHub (#6969)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description:Blank Canvas is a barebones starter theme, stripped off of content t
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.10
|
||||
Version: 1.0.11
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: blank-canvas
|
||||
|
|
|
@ -12,6 +12,9 @@ Blank Canvas is a minimalist theme, designed for single-page websites. Its singl
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 0.0.9 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 0.0.8 =
|
||||
* Remove tags blog-homepage and auto-loading-homepage (#7322)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Blank Canvas is a minimalist theme, designed for single-page websit
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 0.0.8
|
||||
Version: 0.0.9
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -16,6 +16,9 @@ The theme’s default styles are conservative, relying on simple sans-serif font
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.2.12 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.12 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Blank Canvas is a minimalist theme, designed for single-page websit
|
|||
Requires at least: 4.9.6
|
||||
Tested up to: 5.6
|
||||
Requires PHP: 5.6.2
|
||||
Version: 1.2.11-wpcom
|
||||
Version: 1.2.12-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Status: inactive
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "blockbase",
|
||||
"version": "3.1.16",
|
||||
"version": "3.1.17",
|
||||
"description": "Blank Parent Theme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues/new?label=[Theme]%20Blockbase"
|
||||
|
|
|
@ -19,6 +19,9 @@ Read the release notes at https://blockbasetheme.com/category/release-notes/
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 3.1.17 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 3.1.16 =
|
||||
* Bump postcss from 8.4.25 to 8.4.31 (#7407)
|
||||
* Do not generate a source map via postcss as it isn't included in the theme (#7335)
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Blockbase is a simple theme that supports full-site editing. It com
|
|||
Requires at least: 6.1
|
||||
Tested up to: 6.1
|
||||
Requires PHP: 5.7
|
||||
Version: 3.1.16
|
||||
Version: 3.1.17
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ A beautifully designed blog theme displaying large typography and customizable c
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.2 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.2 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: A beautifully designed blog theme displaying large typography and c
|
|||
Requires at least: 5.8
|
||||
Tested up to: 6.3
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.1
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: blogorama
|
||||
|
|
|
@ -12,6 +12,9 @@ Your new Link-in-Bio site, BoxedBio, offers a simple organization of blocks to d
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Your new Link-in-Bio site, BoxedBio, offers a simple organization o
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.2.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: boxedbio
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "brompton",
|
||||
"version": "1.4.27",
|
||||
"version": "1.4.28",
|
||||
"description": "Brompton",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Automattic/themes/issues"
|
||||
|
|
|
@ -5,7 +5,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Running a business is no small task. But with the right tools and support, creating a website doesn’t have to be another chore on your to-do list: enter Brompton, a simple yet powerful theme for small-business owners and entrepreneurs.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.4.27
|
||||
Version: 1.4.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Status: inactive
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Running a business is no small task. But with the right tools and support, creating a website doesn’t have to be another chore on your to-do list: enter Brompton, a simple yet powerful theme for small-business owners and entrepreneurs.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.4.27
|
||||
Version: 1.4.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Status: inactive
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: Running a business is no small task. But with the right tools and support, creating a website doesn’t have to be another chore on your to-do list: enter Brompton, a simple yet powerful theme for small-business owners and entrepreneurs.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.4.27
|
||||
Version: 1.4.28
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Status: inactive
|
||||
|
|
|
@ -12,6 +12,9 @@ BSoJ (Blue Screen of Joy) is a blog theme inspired by the infamous Blue Screen o
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: BSoJ (Blue Screen of Joy) is a blog theme inspired by the infamous
|
|||
Requires at least: 6.1
|
||||
Tested up to: 6.3
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
|
|
|
@ -12,6 +12,9 @@ Bute is a blog theme that has a full-screen front page
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Bute is a blog theme that has a full-screen front page
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: bute
|
||||
|
|
|
@ -4,7 +4,7 @@ Theme URI: http://wordpress.com/themes/button-2/
|
|||
Author: Automattic
|
||||
Author URI: http://automattic.com
|
||||
Description: A stylish, lighthearted theme for crafters, hobbyists, and creatives.
|
||||
Version: 2.1.7-wpcom
|
||||
Version: 2.1.8-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: button
|
||||
|
|
|
@ -12,6 +12,9 @@ Cakely is a business theme perfect for bakers or cake makers with a vibrant colo
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Cakely is a business theme perfect for bakers or cake makers with a
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: cakely
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calm-business",
|
||||
"version": "1.6.10",
|
||||
"version": "1.6.11",
|
||||
"description": "Style Variation of the Default WP Theme",
|
||||
"devDependencies": {
|
||||
"@wordpress/browserslist-config": "^5.16.0",
|
||||
|
|
|
@ -7,7 +7,7 @@ Author URI: https://wordpress.com
|
|||
Template: twentynineteen
|
||||
Description: Your classy establishment needs an equally classy website to showcase your stylish rooms and quality products! With its bold typography and peaceful color scheme, Calm Business exudes a calm, inviting atmosphere as a bed and breakfast, time share, or brick & mortar store fronts.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.6.10
|
||||
Version: 1.6.11
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: calm-business
|
||||
|
|
|
@ -7,7 +7,7 @@ Author URI: https://wordpress.com
|
|||
Template: twentynineteen
|
||||
Description: Your classy establishment needs an equally classy website to showcase your stylish rooms and quality products! With its bold typography and peaceful color scheme, Calm Business exudes a calm, inviting atmosphere as a bed and breakfast, time share, or brick & mortar store fronts.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.6.10
|
||||
Version: 1.6.11
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: calm-business
|
||||
|
|
|
@ -6,7 +6,7 @@ Author URI: https://wordpress.com
|
|||
Template: twentynineteen
|
||||
Description: Your classy establishment needs an equally classy website to showcase your stylish rooms and quality products! With its bold typography and peaceful color scheme, Calm Business exudes a calm, inviting atmosphere as a bed and breakfast, time share, or brick & mortar store fronts.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.6.10
|
||||
Version: 1.6.11
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: calm-business
|
||||
|
|
|
@ -12,6 +12,9 @@ Calvin is a minimalist theme, designed for single-page websites.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.3 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Calvin is a minimalist theme, designed for single-page websites.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 5.8
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE
|
||||
Template: blockbase
|
||||
|
|
|
@ -12,6 +12,9 @@ Calyx is a simple single-page theme that supports full-site editing.
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.14 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.14 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Calyx is a simple theme that supports full-site editing.
|
|||
Requires at least: 5.7
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.13
|
||||
Version: 1.0.14
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: calyx
|
||||
|
|
|
@ -90,6 +90,9 @@ Social networks that aren't currently supported will be indicated by a generic s
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.18 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.17 =
|
||||
* #6005: Canard: Fix regression in featured content (#6006)
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ Theme URI: https://wordpress.com/themes/canard/
|
|||
Author: Automattic
|
||||
Author URI: https://wordpress.com/themes/
|
||||
Description: A flexible and versatile theme perfect for magazines, news sites, and blogs. It lets you highlight specific articles on the homepage and balances readability with a powerful use of photography — all in a layout that works on any device.
|
||||
Version: 1.0.17-wpcom
|
||||
Version: 1.0.18-wpcom
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: canard
|
||||
|
|
|
@ -12,6 +12,9 @@ Chanson is an homage to Édith Piaf. It is direct and undisguised, echoing a som
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.1 =
|
||||
* Lossless image optimization (#7671)
|
||||
|
||||
= 1.0.1 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Chanson is an homage to Édith Piaf. It is direct and undisguised,
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.4
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.0
|
||||
Version: 1.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: chanson
|
||||
|
|
|
@ -12,6 +12,10 @@ Common\'s style is anything but ordinary and it speaks for itself. The unique co
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.4 =
|
||||
* Lossless image optimization (#7671)
|
||||
* Changes from WordPress Playground (#7703)
|
||||
|
||||
= 1.0.4 =
|
||||
* Optimize images (#7671)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Common\'s style is anything but ordinary and it speaks for itself.
|
|||
Requires at least: 5.8
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.3
|
||||
Version: 1.0.4
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: common
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue