Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b3a4a06
Implement the ability to import CSV files.
mgiannopoulos24 Jan 7, 2026
c23321f
Updated missing translations
mgiannopoulos24 Jan 9, 2026
9e92e6e
Fix pot file.
mgiannopoulos24 Jan 9, 2026
f93c200
Revert pot header
mgiannopoulos24 Jan 9, 2026
f1066a2
Created Tools Page
XjSv Feb 2, 2026
baf09cd
Merge branch 'develop' into pr/120
XjSv Feb 2, 2026
12cd3f4
Built Lang Files and NPM Update
XjSv Feb 2, 2026
d665ec1
Changed the Way Related Recipes Work
XjSv Feb 5, 2026
a2cf6f3
Merge branch 'develop' into pr/120
XjSv Feb 5, 2026
1ddca97
Removed duplicated version
XjSv Feb 5, 2026
a2a050d
Removed duplicated version
XjSv Feb 5, 2026
cfba81d
Minor tweak
XjSv Feb 5, 2026
1c64dc7
Merge branch 'XjSv:main' into feat/csv-import
mgiannopoulos24 Feb 7, 2026
525dc84
Add conditional fields for Cooked Pro
Feb 7, 2026
a35fb71
Fix taxonomy slugs
Feb 8, 2026
0a46b07
Removed extra imports
Feb 8, 2026
87ddc53
Fixed jQuery UI Sortable don't work on mobile #124
XjSv Feb 9, 2026
eb2619a
Added Cooked CLI Commands for Tools
XjSv Feb 9, 2026
4961e61
General CSS Improvements / Bugs #118
XjSv Feb 11, 2026
b25c4cd
General CSS Improvements / Bugs
XjSv Feb 11, 2026
f8a1347
Merge branch 'develop' into pr/120
XjSv Feb 12, 2026
207d76a
Minor bug fix with loading class
XjSv Feb 13, 2026
3999eef
CSV import: add Pro taxonomies and i18n fixes
XjSv Feb 13, 2026
91344cd
Removed strings & unused variables.
XjSv Feb 22, 2026
effabb3
Minor fix
XjSv Feb 22, 2026
d9881b7
Language files
XjSv Feb 22, 2026
d38c8ea
Merge pull request #120 from mgiannopoulos24/feat/csv-import
XjSv Feb 22, 2026
f1d43e2
Fix for #126 Fullscreen not working inside Elementor
XjSv Feb 23, 2026
01a5339
Build Prep
XjSv Feb 23, 2026
17ee77b
Bug Fix
XjSv Feb 24, 2026
716b6d1
Release Notes
XjSv Feb 25, 2026
93fb23e
CSS fix for recipe directions
XjSv Feb 26, 2026
73df11b
Bug fix with cookedSortableTouchHandler
XjSv Feb 26, 2026
c1bc686
wp editor bug fix
XjSv Feb 26, 2026
0e9aa43
Cleaned up WP Editor when field is removed
XjSv Feb 26, 2026
d600e95
Updated release notes
XjSv Feb 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
given-names: Justin
- family-names: Tresova
given-names: Armand
version: 1.12.0
version: 1.13.0
doi: 10.5281/zenodo.1171250
date-released: 2017-05-08
url: "https://github.com/XjSv/cooked"
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Versions that are currently being supported with security updates.

| Version | Supported |
| ----------- | ------------------ |
| 1.12.0 | :white_check_mark: |
| <= 1.11.4 | :x: |
| 1.13.0 | :white_check_mark: |
| <= 1.12.0 | :x: |

## Reporting a Vulnerability

Expand Down
28 changes: 25 additions & 3 deletions assets/admin/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ td.column-featured_image { width:50px; text-align:center; }
body.post-type-cp_recipe #titlediv #title { box-shadow:none; -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; padding:0 12px; font-weight:400; font-size:19px; letter-spacing:0; height:44px; }
body.post-type-cp_recipe #titlediv #title-prompt-text { font-size:15px; color:#888; font-weight:400; letter-spacing:0; padding:12px 15px; }

/* TinyMCE fullscreen above admin menu and Cooked sticky UI */
body.post-type-cp_recipe .mce-fullscreen {
z-index: 100100 !important;
}

#cooked-settings-prewrap { display:flex; justify-content:center; }
#cooked-settings-wrap {
position: relative;
border-radius: 10px;
margin: 40px 40px 40px 20px;
/* max-width:1000px; */
max-width: 1200px;
min-width: 1000px;
background: #fff;
box-shadow:
Expand Down Expand Up @@ -253,6 +258,19 @@ body.post-type-cp_recipe .switchery-small > small,
.cooked-progress.cooked-active, .cooked-progress-text.cooked-active { display:block; }
.cooked-progress .cooked-progress-bar { display:block; position:absolute; background:#0085ba; width:0%; height:6px; top:0; left:0; border-radius:3px; }

#cooked-migration-progress.cooked-progress, #cooked-import-progress.cooked-progress { background:#ccc; margin:25px 0 0 0; border-radius:6px; height:12px; max-width:600px; }
#cooked-migration-progress.cooked-progress .cooked-progress-bar, #cooked-import-progress.cooked-progress .cooked-progress-bar { border-radius:6px; height:12px; }
#cooked-migration-progress-text.cooked-progress-text, #cooked-import-progress-text.cooked-progress-text { font-size:11px; color:#888; max-width:600px; }
#cooked-migration-completed, #cooked-import-completed { display:none; }
#cooked-migration-completed.cooked-active, #cooked-import-completed.cooked-active { display:block; }
#cooked-csv-import-progress.cooked-progress { background:#ccc; margin:25px 0 0 0; border-radius:6px; height:12px; max-width:600px; }
#cooked-csv-import-progress.cooked-progress .cooked-progress-bar { border-radius:6px; height:12px; }
#cooked-csv-import-progress-text.cooked-progress-text { font-size:11px; color:#888; max-width:600px; }
#cooked-csv-import-completed { display:none; }
#cooked-csv-import-completed.cooked-active { display:block; }
#cooked-csv-import-form { max-width:100%; box-sizing:border-box; }
#cooked-csv-import-form input[type="file"] { max-width:100%; box-sizing:border-box; width:100%; }
#cooked-csv-import-errors { max-width:100%; box-sizing:border-box; word-wrap:break-word; }
#cooked-migration-progress.cooked-progress, #cooked-import-progress.cooked-progress, #cooked-related-progress.cooked-progress { background:#ccc; margin:25px 0 0 0; border-radius:6px; height:12px; max-width:600px; }
#cooked-migration-progress.cooked-progress .cooked-progress-bar, #cooked-import-progress.cooked-progress .cooked-progress-bar, #cooked-related-progress.cooked-progress .cooked-progress-bar { border-radius:6px; height:12px; }
#cooked-migration-progress-text.cooked-progress-text, #cooked-import-progress-text.cooked-progress-text, #cooked-related-progress-text.cooked-progress-text { font-size:11px; color:#888; max-width:600px; }
Expand Down Expand Up @@ -294,7 +312,7 @@ body .button.button-cooked-reset:hover { color:#555; }
#cooked-ingredients-builder .cooked-ingredient-block > .cooked-heading-name { width:100%; }
#cooked-ingredients-builder .cooked-ingredient-block > div small.cooked-input-ex { display:block; padding:5px 0 0 2px; }
#cooked-ingredients-builder .cooked-ingredient-block { margin:0; }
#cooked-ingredients-builder .cooked-ingredient-block i.cooked-icon-drag { cursor:move; color:#ccc; font-size:32px; position:absolute; top:5px; left:1px; }
#cooked-ingredients-builder .cooked-ingredient-block i.cooked-icon-drag { cursor:move; color:#ccc; font-size:32px; position:absolute; top:5px; left:1px; touch-action:none; }
#cooked-ingredients-builder .cooked-ingredient-block:hover i.cooked-icon-drag { color:#888; }
#cooked-ingredients-builder .cooked-ingredient-block.ui-sortable-helper { background:#f5f5f5; box-shadow:0 10px 20px rgba(0,0,0,0.15); -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; }
#cooked-ingredients-builder .cooked-ingredient-block.ui-sortable-placeholder { visibility:visible !important; background:#eee; display:block; width:100%; height:43px; border-top:6px solid #fff; border-bottom:6px solid #fff; }
Expand Down Expand Up @@ -327,9 +345,13 @@ body .button.button-cooked-reset:hover { color:#555; }
#cooked-directions-builder .cooked-direction-block > .cooked-direction-image.cooked-has-image img { width:100%; height:auto; display:block; margin:15px 0 0; }
#cooked-directions-builder .cooked-direction-block > .cooked-direction-image.cooked-has-image .cooked-direction-img-placeholder { display:none; }
#cooked-directions-builder .cooked-direction-block > .cooked-direction-content { width:100%; padding-left:120px; }
#cooked-directions-builder .cooked-direction-block .cooked-direction-number { opacity:0.4; position:absolute; display:inline-block; font-weight:800; top:17px; left:35px; font-size:1.25rem; line-height:1; }
#cooked-directions-builder .cooked-direction-block.cooked-direction-has-number > .cooked-direction-image { left: 65px; }
#cooked-directions-builder .cooked-direction-block.cooked-direction-has-number > .cooked-direction-content { padding-left:175px; }
#cooked-directions-builder .cooked-direction-block.cooked-direction-has-number-wide > .cooked-direction-content { padding-left:185px; }
#cooked-directions-builder .cooked-direction-block > .cooked-heading-name { width:100%; }
#cooked-directions-builder .cooked-direction-block { margin:0; }
#cooked-directions-builder .cooked-direction-block i.cooked-icon-drag { cursor:move; color:#ccc; font-size:32px; position:absolute; top:13px; left:1px; }
#cooked-directions-builder .cooked-direction-block i.cooked-icon-drag { cursor:move; color:#ccc; font-size:32px; position:absolute; top:13px; left:1px; touch-action:none; }
#cooked-directions-builder .cooked-direction-block.cooked-direction-heading i.cooked-icon-drag { top:5px; }
#cooked-directions-builder .cooked-direction-block:hover i.cooked-icon-drag { color:#888; }
#cooked-directions-builder .cooked-direction-block.ui-sortable-helper { background:#f5f5f5; box-shadow:0 10px 20px rgba(0,0,0,0.15); -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; }
Expand Down
2 changes: 1 addition & 1 deletion assets/admin/css/style.min.css

Large diffs are not rendered by default.

Loading
Loading