diff --git a/.gitattributes b/.gitattributes index ed52900..072e1de 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,7 +1,7 @@ /.git export-ignore /.github export-ignore -/bin export-ignore /.wordpress-org export-ignore +/bin export-ignore /coverage export-ignore /plugin-build export-ignore /tests export-ignore diff --git a/.github/workflows/wporg-update-assets.yml b/.github/workflows/wporg-update-assets.yml new file mode 100644 index 0000000..0edf1cc --- /dev/null +++ b/.github/workflows/wporg-update-assets.yml @@ -0,0 +1,21 @@ +name: "Deploy assets to WordPress.org" + +on: + push: + branches: + - master + +jobs: + trunk: + name: Push to trunk + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: WordPress.org plugin asset/readme update + uses: 10up/action-wordpress-plugin-asset-update@stable + env: + IGNORE_OTHER_FILES: true + SLUG: custom-login + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} \ No newline at end of file diff --git a/.wordpress-org/banner-1544x500.png b/.wordpress-org/banner-1544x500.png new file mode 100644 index 0000000..7022a7c Binary files /dev/null and b/.wordpress-org/banner-1544x500.png differ diff --git a/.wordpress-org/banner-772x250.png b/.wordpress-org/banner-772x250.png new file mode 100644 index 0000000..a9e61ec Binary files /dev/null and b/.wordpress-org/banner-772x250.png differ diff --git a/.wordpress-org/icon-128x128.png b/.wordpress-org/icon-128x128.png new file mode 100644 index 0000000..8ccffbd Binary files /dev/null and b/.wordpress-org/icon-128x128.png differ diff --git a/.wordpress-org/icon-256x256.png b/.wordpress-org/icon-256x256.png new file mode 100644 index 0000000..bfdfcf9 Binary files /dev/null and b/.wordpress-org/icon-256x256.png differ diff --git a/.wordpress-org/icon.svg b/.wordpress-org/icon.svg new file mode 100644 index 0000000..52792c6 --- /dev/null +++ b/.wordpress-org/icon.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/.wordpress-org/screenshot-1.png b/.wordpress-org/screenshot-1.png new file mode 100644 index 0000000..23032ca Binary files /dev/null and b/.wordpress-org/screenshot-1.png differ diff --git a/.wordpress-org/screenshot-2.png b/.wordpress-org/screenshot-2.png new file mode 100644 index 0000000..319f121 Binary files /dev/null and b/.wordpress-org/screenshot-2.png differ diff --git a/.wordpress-org/screenshot-3.png b/.wordpress-org/screenshot-3.png new file mode 100644 index 0000000..8b59f7c Binary files /dev/null and b/.wordpress-org/screenshot-3.png differ diff --git a/.wordpress-org/screenshot-4.png b/.wordpress-org/screenshot-4.png new file mode 100644 index 0000000..2a12e27 Binary files /dev/null and b/.wordpress-org/screenshot-4.png differ diff --git a/README.md b/README.md index 4364949..8397e47 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,10 @@ Custom Login showcase on the [Flickr group](http://flickr.com/groups/custom-logi ## Upgrade Notice ## +### 4.1.0 ### + +Requires WordPress version >= 6.2 and PHP version >= 8.0. + ### 4.0.1 ### Requires WordPress version >= 5.7 and PHP version >= 7.4. diff --git a/composer.json b/composer.json index d4008de..286cbe3 100644 --- a/composer.json +++ b/composer.json @@ -82,6 +82,7 @@ "archive": { "exclude": [ ".gitignore", + ".wordpress-org", "!node_modules/", "plugin-build/", "!vendor/",