Skip to content

Commit 2c94cf5

Browse files
authored
Add git updater support (#48)
* update plugin headers * update readme
1 parent 3d1a759 commit 2c94cf5

File tree

2 files changed

+38
-16
lines changed

2 files changed

+38
-16
lines changed

README.md

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,36 @@
11
# Recipe Box #
2-
**Contributors:** [Chris Reynolds](https://chrisreynolds.io)
3-
**Donate link:** https://paypal.me/jazzsequence
4-
5-
**Requires at least:** 4.4
6-
**Tested up to:** 4.8
7-
**Stable tag:** 0.3.4
8-
**License:** GPLv3
9-
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html
2+
**Contributors:** [Chris Reynolds](https://chrisreynolds.io)
3+
**Donate link:** https://paypal.me/jazzsequence
4+
**Requires at least:** 4.4
5+
**Tested up to:** 6.8
6+
**Stable tag:** 0.3.5
7+
**License:** GPLv3
8+
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html
109

1110
## Description ##
1211

1312
Easily store and publish recipes in WordPress.
1413

15-
## Installation ##
14+
## Installation
15+
### Via Composer
16+
17+
Recipe Box can be installed on Composer-based WordPress sites by using the following command:
18+
19+
`composer require jazzsequence/recipe-box`
20+
21+
### Via Git Updater
1622

17-
### Manual Installation ###
23+
Recipe Box supports Andy Fragen's [Git Updater](https://git-updater.com/) method of managing plugins.
24+
25+
1. Download and install [Git Updater](https://git-updater.com/git-updater/) on your WordPress site.
26+
1. From the Git Updater admin pages, navigate to Install Plugin and use the following values:
27+
28+
**Plugin URI:** `jazzsequence/recipe-box`
29+
**Repository Branch:** `main`
30+
**Remote Repository Host:** GitHub
31+
**GitHub Access Token:** (optional, leave blank)
32+
33+
### Manual
1834

1935
1. Upload the entire `/recipe-box` directory to the `/wp-content/plugins/` directory.
2036
2. Activate Recipe Box through the 'Plugins' menu in WordPress.
@@ -27,6 +43,9 @@ Easily store and publish recipes in WordPress.
2743

2844
## Changelog ##
2945

46+
### 0.3.5 ###
47+
* Add installation support for [Git Updater](https://git-updater.com/).
48+
3049
### 0.3.4 ###
3150
* Added additional units of measure
3251

recipe-box.php

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
<?php
2+
23
/**
34
* Plugin Name: Recipe Box
4-
* Plugin URI: https://jazzsequence.com
5+
* Plugin URI: https://github.com/jazzsequence/recipe-box
56
* Description: Easily store and publish recipes in WordPress.
6-
* Version: 0.3.4
7+
* Version: 0.3.5
78
* Author: Chris Reynolds
89
* Author URI: https://jazzsequence.com
9-
* Donate link: https://jazzsequence.com
10+
* Donate link: https://paypal.me/jazzsequence
1011
* License: GPLv3
1112
* Text Domain: recipe-box
1213
* Domain Path: /languages
14+
* GitHub Plugin URI: jazzsequence/recipe-box
15+
* Primary Branch: main
1316
*
1417
* @link https://jazzsequence.com
1518
*
1619
* @package Recipe Box
17-
* @version 0.3.4
20+
* @version 0.3.5
1821
*/
1922

2023
/**
21-
* Copyright (c) 2019 Chris Reynolds (email : [email protected])
24+
* Copyright (c) 2025 Chris Reynolds (email : [email protected])
2225
*
2326
* This program is free software; you can redistribute it and/or modify
2427
* it under the terms of the GNU General Public License, version 2 or, at
@@ -68,7 +71,7 @@ final class Recipe_Box {
6871
* @var string
6972
* @since 0.1
7073
*/
71-
const VERSION = '0.3.4';
74+
const VERSION = '0.3.5';
7275

7376
/**
7477
* URL of plugin directory

0 commit comments

Comments
 (0)