Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
afragen committed Mar 4, 2024
2 parents 847dd5f + da83143 commit f04dfd2
Show file tree
Hide file tree
Showing 44 changed files with 1,303 additions and 533 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@master

- name: Get tag
id: tag
run: echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Build project
run: git archive -o /tmp/git-updater-${{ steps.tag.outputs.tag }}.zip --prefix=git-updater/ ${{ steps.tag.outputs.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wp-phpunit.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
name: PHP ${{ matrix.php-versions }} Test on ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@master

- name: Setup MySQL 8.0 with mysql_native_password
uses: shogo82148/actions-setup-mysql@v1
Expand All @@ -43,7 +43,7 @@ jobs:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: mysql, mysqli
tools: composer, wp-cli, phpunit-polyfills:1.0
tools: composer, wp-cli, phpunit-polyfills:1.1
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
@@ -1,5 +1,12 @@
#### [unreleased]

#### 12.4.0 / 2024-03-04
* update `freemius/wordpress-sdk`
* update `class-parser.php`
* use `is_wp_version_compatible()` and `is_php_version_compatible()` in `GU_Trait::can_update_repo()`
* update `gu-loader.php` with generic loader
* update `Readme_Parser::trim_length`

#### 12.3.1 / 2023-10-19
* update `freemius/wordpress-sdk`
* WPCS 3.0.0 linting
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -34,7 +34,7 @@
"afragen/wordpress-plugin-readme-parser": "dev-master",
"afragen/singleton": "dev-master",
"afragen/wp-dependency-installer": "^4",
"freemius/wordpress-sdk": "^2.5"
"freemius/wordpress-sdk": "^2.6"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0.0"
Expand Down
133 changes: 93 additions & 40 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion git-updater.php
Expand Up @@ -12,7 +12,7 @@
* Plugin Name: Git Updater
* Plugin URI: https://git-updater.com
* Description: A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist.
* Version: 12.3.1
* Version: 12.4.0
* Author: Andy Fragen
* License: MIT
* Domain Path: /languages
Expand Down
18 changes: 9 additions & 9 deletions languages/git-updater.pot
@@ -1,41 +1,41 @@
# Copyright (C) 2023 Andy Fragen
# Copyright (C) 2024 Andy Fragen
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: Git Updater 12.3.1\n"
"Project-Id-Version: Git Updater 12.4.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/git-updater\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-10-19T22:55:12+00:00\n"
"POT-Creation-Date: 2024-03-04T19:03:43+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Generator: WP-CLI 2.10.0\n"
"X-Domain: git-updater\n"

#. Plugin Name of the plugin
#: git-updater.php
#: src/Git_Updater/Settings.php:176
#: src/Git_Updater/Settings.php:309
msgid "Git Updater"
msgstr ""

#. Plugin URI of the plugin
#: git-updater.php
msgid "https://git-updater.com"
msgstr ""

#. Description of the plugin
#: git-updater.php
msgid "A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist."
msgstr ""

#. Author of the plugin
#: git-updater.php
msgid "Andy Fragen"
msgstr ""

#: mu/gu-loader.php:106
msgid "Activated as mu-plugin"
msgstr ""

#: src/Git_Updater/Add_Ons.php:60
msgid "Git Updater - Gist"
msgstr ""
Expand Down Expand Up @@ -280,6 +280,6 @@ msgstr ""
msgid "%1$sAutomatic update is unavailable for this theme.%2$s"
msgstr ""

#: src/Git_Updater/Traits/GU_Trait.php:673
#: src/Git_Updater/Traits/GU_Trait.php:671
msgid "There may be a problem with WP-Cron. A Git Updater WP-Cron event is overdue."
msgstr ""

0 comments on commit f04dfd2

Please sign in to comment.