5 Commits

Author SHA1 Message Date
Cooper Dalrymple 9353d13e03 Update to version 0.1.3 2026-06-18 10:17:08 -05:00
Cooper Dalrymple 71689acacc Merge branch 'master' of ssh://git.cleverogre.com/cleverogre/ogre-schema 2026-06-18 10:15:59 -05:00
Cooper Dalrymple 539cd7b614 Fix build on Mac 2026-06-18 10:15:27 -05:00
ogrecooper dfbc66a1bf Merge pull request 'Use ISO 8601 format for dates' (#3) from birth_date_format into master
Reviewed-on: #3
2026-06-18 15:14:58 +00:00
Cooper Dalrymple 14c851b83d Use ISO 8601 format for dates 2026-06-18 09:54:50 -05:00
5 changed files with 13 additions and 10 deletions
+6 -6
View File
@@ -13,12 +13,12 @@ dir:
mkdir ./$(PACKAGE) mkdir ./$(PACKAGE)
copy: copy:
cp -RT ./acf-json ./$(PACKAGE)/acf-json cp -R ./acf-json ./$(PACKAGE)/acf-json
cp -RT ./data ./$(PACKAGE)/data cp -R ./data ./$(PACKAGE)/data
cp -RT ./includes ./$(PACKAGE)/includes cp -R ./includes ./$(PACKAGE)/includes
cp -RT ./lang ./$(PACKAGE)/lang || true cp -R ./lang ./$(PACKAGE)/lang || true
cp -RT ./lib ./$(PACKAGE)/lib cp -R ./lib ./$(PACKAGE)/lib
cp -RT ./vendor ./$(PACKAGE)/vendor cp -R ./vendor ./$(PACKAGE)/vendor
cp -f ./* ./$(PACKAGE) || true cp -f ./* ./$(PACKAGE) || true
rm ./$(PACKAGE)/composer.json rm ./$(PACKAGE)/composer.json
+1 -1
View File
@@ -748,7 +748,7 @@
"id": "" "id": ""
}, },
"display_format": "d\/m\/Y", "display_format": "d\/m\/Y",
"return_format": "YY-MM-DD", "return_format": "c",
"first_day": 1 "first_day": 1
} }
] ]
+1 -1
View File
@@ -3,7 +3,7 @@
* Plugin Name: OgreSchema * Plugin Name: OgreSchema
* Plugin URI: https://plugins.cleverogre.com/plugin/ogreschema/ * Plugin URI: https://plugins.cleverogre.com/plugin/ogreschema/
* Description: Output schema site-wide for your website. * Description: Output schema site-wide for your website.
* Version: 0.1.2 * Version: 0.1.3
* Requires at Least: 6.0 * Requires at Least: 6.0
* Requires PHP: 8.0 * Requires PHP: 8.0
* Author: CleverOgre * Author: CleverOgre
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "ogre-schema", "name": "ogre-schema",
"title": "OgreSchema", "title": "OgreSchema",
"version": "0.1.2", "version": "0.1.3",
"author": "CleverOgre", "author": "CleverOgre",
"license": "GPL-3.0+", "license": "GPL-3.0+",
"keywords": [], "keywords": [],
+4 -1
View File
@@ -4,7 +4,7 @@ Donate link: https://cleverogre.com/
Tags: gravityforms, feed, jobs, resume, application Tags: gravityforms, feed, jobs, resume, application
Requires at least: 6.0.0 Requires at least: 6.0.0
Tested up to: 6.4.3 Tested up to: 6.4.3
Stable tag: 0.1.2 Stable tag: 0.1.3
License: GPLv2 or later License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -28,6 +28,9 @@ If you do know what plugin you have downloaded, please contact [CleverOgre](team
== Changelog == == Changelog ==
= 0.1.3 - 2026-06-18 =
* BUG: Use ISO 8601 format for birthDate
= 0.1.2 - 2025-11-05 = = 0.1.2 - 2025-11-05 =
* BUG: Allow theme-included ACF Pro as requirement. * BUG: Allow theme-included ACF Pro as requirement.
* DEV: Fixed minor build issues. * DEV: Fixed minor build issues.