Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 0.1.4 #14

Merged
merged 4 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.github
/.wordpress-org
/node_modules
/vendor
/src

.distignore
Expand Down
19 changes: 12 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
/.git export-ignore
/.github export-ignore
/vendor/ export-ignore -diff
/.wordpress-org export-ignore
/config export-ignore
/src export-ignore
/tests export-ignore
/node_modules export-ignore
/vendor export-ignore

/.distignore export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.nvmrc export-ignore
/.plugin-data export-ignore
/.wp-env.json export-ignore
/CHANGELOG.md export-ignore
/LICENSE.md export-ignore
/composer.json export-ignore
/composer.lock export-ignore -diff
/composer.lock export-ignore
/grumphp.yml export-ignore
/LICENSE.md export-ignore
/package.json export-ignore
/package-lock.json export-ignore -diff
/package-lock.json export-ignore
/phpcs.xml.dist export-ignore
/psalm.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/README.md export-ignore
/webpack.config.js export-ignore
/yarn.lock export-ignore
19 changes: 0 additions & 19 deletions .github/workflows/plugin-assets.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "0.1.3",
"version": "0.1.4",
"slug": "mosne-dark-palette"
}
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ You can change the icons using CSS in your theme or in the customizer.
![screenshot-3](https://github.com/mosne/mosne-dark-palette/blob/main/_wordpress-org/screenshot-3.gif)

## Changelog
### 0.1.4 - 2023-06-24

* First release on WordPress.org

### 0.1.3 - 2023-06-09

* Fix escaping via wp_kses_data and changelogs
Expand Down
2 changes: 1 addition & 1 deletion mosne-dark-palette.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Create and apply your dark palette in an accessibility-friendly manner using the new Interactivity API.
* Requires at least: 6.5
* Requires PHP: 7.4
* Version: 0.1.3
* Version: 0.1.4
* Author: Mosne
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
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": "mosne-dark-palette",
"version": "0.1.3",
"version": "0.1.4",
"description": "Create and apply your dark palette in an a11y friendly way using the new Interactivity API.",
"author": "mosne",
"license": "GPL-2s.0-or-later",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This plugin provides the following features:

= How can I customize my CSS? =

You can change the desired behavior using CSS in your theme or in the customizer.
You can change the desired behavior using CSS in your theme or in the customizer:
`
body[data-theme="dark"] {
/* your CSS here */
Expand Down Expand Up @@ -77,6 +77,10 @@ You can change the icons using CSS in your theme or in the customizer.
3. Edit the dark palette

== Changelog ==
= 0.1.4 - 2023-06-09 =

* First release on WordPress.org

= 0.1.3 - 2023-06-09 =

* Fix escaping via wp_kses_data and changelogs
Expand Down
Loading