Skip to content

Commit

Permalink
Merge pull request #13 from happyprime/fix/prep-initial-release
Browse files Browse the repository at this point in the history
Prep 1.0.1 for initial wp.org release
  • Loading branch information
jeremyfelt authored Jun 7, 2023
2 parents c21e521 + 6d192c5 commit 9ae2bea
Show file tree
Hide file tree
Showing 10 changed files with 743 additions and 550 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy-to-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Update readme.txt and assets
on:
push:
branches: [trunk]
jobs:
trunk:
name: Push to trunk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress.org plugin asset/readme update
uses: 10up/action-wordpress-plugin-asset-update@stable
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
16 changes: 16 additions & 0 deletions .github/workflows/deploy-to-wp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Deploy tagged release to WordPress.org
on:
push:
tags:
- '*'
jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@stable
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ Now, an individual site administrator can make changes to a navigation menu whil

## Changelog

### 1.0.1

* Update `@wordpress/scripts` dependency to 26.6.0.
* Add POT file.
* Initial wp.org release.

### 1.0.0

* Consolidate into one block: Network Template Part.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "happyprime/network-template-parts",
"description": "Render block template parts from the main site of a network.",
"version": "1.0.0",
"version": "1.0.1",
"type": "wordpress-plugin",
"license": "GPLv2-or-later",
"config": {
Expand All @@ -14,7 +14,7 @@
"squizlabs/php_codesniffer": "3.*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"sirbrillig/phpcs-variable-analysis": "^2",
"wp-coding-standards/wpcs": "*"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

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

67 changes: 67 additions & 0 deletions languages/network-template-parts.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Copyright (C) 2023 Happy Prime
# This file is distributed under the same license as the Network Template Parts plugin.
msgid ""
msgstr ""
"Project-Id-Version: Network Template Parts 1.0.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/network-template-parts\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-06-07T21:26:38+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.6.0\n"
"X-Domain: network-template-parts\n"

#. Plugin Name of the plugin
msgid "Network Template Parts"
msgstr ""

#. Plugin URI of the plugin
msgid "https://github.com/happyprime/network-template-parts/"
msgstr ""

#. Description of the plugin
msgid "Render template parts in a site or network context."
msgstr ""

#. Author of the plugin
msgid "Happy Prime"
msgstr ""

#. Author URI of the plugin
msgid "https://happyprime.co"
msgstr ""

#: blocks/network-template-part/index.js:35
#: build/network-template-part/index.js:1
msgid "None"
msgstr ""

#: blocks/network-template-part/index.js:48
#: build/network-template-part/index.js:1
msgid "Template part options"
msgstr ""

#: blocks/network-template-part/index.js:54
#: build/network-template-part/index.js:1
msgid "Template part"
msgstr ""

#: blocks/network-template-part/index.js:65
#: build/network-template-part/index.js:1
msgid "Context"
msgstr ""

#: blocks/network-template-part/block.json
#: build/network-template-part/block.json
msgctxt "block title"
msgid "Network Template Part"
msgstr ""

#: blocks/network-template-part/block.json
#: build/network-template-part/block.json
msgctxt "block description"
msgid "Render a template part in the context of a site or network."
msgstr ""
Loading

0 comments on commit 9ae2bea

Please sign in to comment.